blob: b27f095eab8cd9f5b08921792033d2c09e03f52d [file] [log] [blame]
// Copyright 2023 Google LLC
// SPDX-License-Identifier: BSD-2-Clause
// Decodes an arbitrary sequence of bytes.
#include <algorithm>
#include <cstdint>
#include "avif/avif.h"
#include "avif_fuzztest_helpers.h"
#include "aviftest_helpers.h"
#include "fuzztest/fuzztest.h"
#include "gtest/gtest.h"
using ::fuzztest::Arbitrary;
namespace avif {
namespace testutil {
namespace {
//------------------------------------------------------------------------------
void Decode(const std::string& arbitrary_bytes, bool is_persistent,
DecoderPtr decoder) {
ASSERT_FALSE(GetSeedDataDirs().empty()); // Make sure seeds are available.
ImagePtr decoded(avifImageCreateEmpty());
ASSERT_NE(decoded, nullptr);
const uint8_t* data =
reinterpret_cast<const uint8_t*>(arbitrary_bytes.data());
avifIO* const io = avifIOCreateMemoryReader(data, arbitrary_bytes.size());
if (io == nullptr) return;
// The Chrome's avifIO object is not persistent.
io->persistent = is_persistent;
avifDecoderSetIO(decoder.get(), io);
if (avifDecoderParse(decoder.get()) != AVIF_RESULT_OK) return;
for (size_t i = 0; i < decoder->image->numProperties; ++i) {
const avifRWData& box_payload = decoder->image->properties[i].boxPayload;
// Each custom property should be found as is in the input bitstream.
EXPECT_NE(std::search(data, data + arbitrary_bytes.size(), box_payload.data,
box_payload.data + box_payload.size),
data + arbitrary_bytes.size());
}
while (avifDecoderNextImage(decoder.get()) == AVIF_RESULT_OK) {
EXPECT_GT(decoder->image->width, 0u);
EXPECT_GT(decoder->image->height, 0u);
}
// Loop once.
if (avifDecoderReset(decoder.get()) != AVIF_RESULT_OK) return;
while (avifDecoderNextImage(decoder.get()) == AVIF_RESULT_OK) {
}
}
FUZZ_TEST(DecodeAvifTest, Decode)
.WithDomains(ArbitraryImageWithSeeds({AVIF_APP_FILE_FORMAT_AVIF}),
Arbitrary<bool>(), ArbitraryAvifDecoder());
//------------------------------------------------------------------------------
} // namespace
} // namespace testutil
} // namespace avif