mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-15 14:22:37 -03:00
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
// 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 <addrdb.h>
|
|
#include <test/fuzz/FuzzedDataProvider.h>
|
|
#include <test/fuzz/fuzz.h>
|
|
#include <test/fuzz/util.h>
|
|
|
|
#include <cassert>
|
|
#include <cstdint>
|
|
#include <optional>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
FUZZ_TARGET(addrdb)
|
|
{
|
|
FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
|
|
|
|
// The point of this code is to exercise all CBanEntry constructors.
|
|
const CBanEntry ban_entry = [&] {
|
|
switch (fuzzed_data_provider.ConsumeIntegralInRange<int>(0, 2)) {
|
|
case 0:
|
|
return CBanEntry{fuzzed_data_provider.ConsumeIntegral<int64_t>()};
|
|
break;
|
|
case 1: {
|
|
const std::optional<CBanEntry> ban_entry = ConsumeDeserializable<CBanEntry>(fuzzed_data_provider);
|
|
if (ban_entry) {
|
|
return *ban_entry;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
return CBanEntry{};
|
|
}();
|
|
(void)ban_entry; // currently unused
|
|
}
|