2020-03-26 16:37:55 -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 <protocol.h>
|
|
|
|
#include <test/fuzz/FuzzedDataProvider.h>
|
|
|
|
#include <test/fuzz/fuzz.h>
|
|
|
|
#include <test/fuzz/util.h>
|
|
|
|
|
|
|
|
#include <cstdint>
|
2020-05-10 14:35:55 -04:00
|
|
|
#include <optional>
|
2020-03-26 16:37:55 -03:00
|
|
|
#include <stdexcept>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
void test_one_input(const std::vector<uint8_t>& buffer)
|
|
|
|
{
|
|
|
|
FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
|
2020-05-10 14:35:55 -04:00
|
|
|
const std::optional<CInv> inv = ConsumeDeserializable<CInv>(fuzzed_data_provider);
|
2020-03-26 16:37:55 -03:00
|
|
|
if (!inv) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
(void)inv->GetCommand();
|
|
|
|
} catch (const std::out_of_range&) {
|
|
|
|
}
|
|
|
|
(void)inv->ToString();
|
2020-05-10 14:35:55 -04:00
|
|
|
const std::optional<CInv> another_inv = ConsumeDeserializable<CInv>(fuzzed_data_provider);
|
2020-03-26 16:37:55 -03:00
|
|
|
if (!another_inv) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
(void)(*inv < *another_inv);
|
|
|
|
}
|