2021-01-25 08:23:45 -03:00
|
|
|
// Copyright (c) 2020-2021 The Bitcoin Core developers
|
2020-06-02 15:06:07 -04:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#include <policy/fees.h>
|
|
|
|
#include <test/fuzz/FuzzedDataProvider.h>
|
|
|
|
#include <test/fuzz/fuzz.h>
|
|
|
|
#include <test/fuzz/util.h>
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
#include <vector>
|
|
|
|
|
2020-12-03 12:42:49 -03:00
|
|
|
void initialize_policy_estimator_io()
|
2020-06-02 15:06:07 -04:00
|
|
|
{
|
2021-01-25 08:23:45 -03:00
|
|
|
static const auto testing_setup = MakeNoLogFileContext<>();
|
2020-06-02 15:06:07 -04:00
|
|
|
}
|
|
|
|
|
2020-12-03 12:42:49 -03:00
|
|
|
FUZZ_TARGET_INIT(policy_estimator_io, initialize_policy_estimator_io)
|
2020-06-02 15:06:07 -04:00
|
|
|
{
|
|
|
|
FuzzedDataProvider fuzzed_data_provider(buffer.data(), buffer.size());
|
|
|
|
FuzzedAutoFileProvider fuzzed_auto_file_provider = ConsumeAutoFile(fuzzed_data_provider);
|
|
|
|
CAutoFile fuzzed_auto_file = fuzzed_auto_file_provider.open();
|
|
|
|
// Re-using block_policy_estimator across runs to avoid costly creation of CBlockPolicyEstimator object.
|
|
|
|
static CBlockPolicyEstimator block_policy_estimator;
|
|
|
|
if (block_policy_estimator.Read(fuzzed_auto_file)) {
|
|
|
|
block_policy_estimator.Write(fuzzed_auto_file);
|
|
|
|
}
|
|
|
|
}
|