2020-03-14 21:40:03 -03:00
|
|
|
// Copyright (c) 2020 The Bitcoin Core developers
|
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#include <primitives/block.h>
|
|
|
|
#include <test/fuzz/FuzzedDataProvider.h>
|
|
|
|
#include <test/fuzz/fuzz.h>
|
|
|
|
#include <test/fuzz/util.h>
|
|
|
|
#include <uint256.h>
|
|
|
|
|
|
|
|
#include <cassert>
|
|
|
|
#include <cstdint>
|
2020-05-10 14:35:55 -04:00
|
|
|
#include <optional>
|
2020-03-14 21:40:03 -03:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2020-12-03 12:42:49 -03:00
|
|
|
FUZZ_TARGET(block_header)
|
2020-03-14 21:40:03 -03:00
|
|
|
{
|
|
|
|
FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
|
2020-05-10 14:35:55 -04:00
|
|
|
const std::optional<CBlockHeader> block_header = ConsumeDeserializable<CBlockHeader>(fuzzed_data_provider);
|
2020-03-14 21:40:03 -03:00
|
|
|
if (!block_header) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
const uint256 hash = block_header->GetHash();
|
|
|
|
static const uint256 u256_max(uint256S("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"));
|
|
|
|
assert(hash != u256_max);
|
|
|
|
assert(block_header->GetBlockTime() == block_header->nTime);
|
|
|
|
assert(block_header->IsNull() == (block_header->nBits == 0));
|
|
|
|
}
|
|
|
|
{
|
|
|
|
CBlockHeader mut_block_header = *block_header;
|
|
|
|
mut_block_header.SetNull();
|
|
|
|
assert(mut_block_header.IsNull());
|
|
|
|
CBlock block{*block_header};
|
|
|
|
assert(block.GetBlockHeader().GetHash() == block_header->GetHash());
|
|
|
|
(void)block.ToString();
|
|
|
|
block.SetNull();
|
|
|
|
assert(block.GetBlockHeader().GetHash() == mut_block_header.GetHash());
|
|
|
|
}
|
2020-05-09 17:26:00 -04:00
|
|
|
{
|
|
|
|
std::optional<CBlockLocator> block_locator = ConsumeDeserializable<CBlockLocator>(fuzzed_data_provider);
|
|
|
|
if (block_locator) {
|
|
|
|
(void)block_locator->IsNull();
|
|
|
|
block_locator->SetNull();
|
|
|
|
assert(block_locator->IsNull());
|
|
|
|
}
|
|
|
|
}
|
2020-03-14 21:40:03 -03:00
|
|
|
}
|