Bitcoin Core 31.99.0
P2P Digital Currency
validation_load_mempool.cpp
Go to the documentation of this file.
1// Copyright (c) 2020-present The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
6#include <test/util/time.h>
7
8#include <node/mempool_args.h>
11#include <test/fuzz/fuzz.h>
12#include <test/fuzz/util.h>
15#include <test/util/txmempool.h>
16#include <txmempool.h>
17#include <util/check.h>
18#include <util/time.h>
19#include <util/translation.h>
20#include <validation.h>
21
22#include <cstdint>
23#include <vector>
24
27
29
30namespace {
32} // namespace
33
35{
36 static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>();
37 g_setup = testing_setup.get();
38}
39
41{
43 FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()};
45 FuzzedFileProvider fuzzed_file_provider{fuzzed_data_provider};
46
47 bilingual_str error;
49 Assert(error.empty());
50
51 auto& chainstate{static_cast<DummyChainState&>(g_setup->m_node.chainman->ActiveChainstate())};
52 chainstate.SetMempool(&pool);
53
54 auto fuzzed_fopen = [&](const fs::path&, const char*) {
55 return fuzzed_file_provider.open();
56 };
57 (void)LoadMempool(pool, MempoolPath(g_setup->m_args), chainstate,
58 {
59 .mockable_fopen_function = fuzzed_fopen,
60 });
61 pool.SetLoadTried(true);
62 (void)DumpMempool(pool, MempoolPath(g_setup->m_args), fuzzed_fopen, true);
63}
const TestingSetup * g_setup
#define Assert(val)
Identity function.
Definition: check.h:113
CTxMemPool stores valid-according-to-the-current-best-chain transactions that may be included in the ...
Definition: txmempool.h:187
void SetMempool(CTxMemPool *mempool)
Definition: mempool.h:18
Helper to initialize the global NodeClock, let a duration elapse, and reset it after use in a test.
Definition: time.h:40
fs::path MempoolPath(const ArgsManager &argsman)
bool LoadMempool(CTxMemPool &pool, const fs::path &load_path, Chainstate &active_chainstate, ImportMempoolOptions &&opts)
Import the file and attempt to add its contents to the mempool.
bool DumpMempool(const CTxMemPool &pool, const fs::path &dump_path, FopenFn mockable_fopen_function, bool skip_file_commit)
ArgsManager m_args
Test-specific arguments and settings.
Definition: setup_common.h:99
node::NodeContext m_node
Definition: setup_common.h:66
Testing setup that configures a complete environment.
Definition: setup_common.h:121
Bilingual messages:
Definition: translation.h:24
bool empty() const
Definition: translation.h:35
std::unique_ptr< ChainstateManager > chainman
Definition: context.h:72
NodeSeconds ConsumeTime(FuzzedDataProvider &fuzzed_data_provider, const std::optional< int64_t > &min, const std::optional< int64_t > &max) noexcept
Definition: util.cpp:34
void SeedRandomStateForTest(SeedRand seedtype)
Seed the global RNG state for testing and log the seed value.
Definition: random.cpp:19
@ ZEROS
Seed with a compile time constant of zeros.
CTxMemPool::Options MemPoolOptionsForTest(const NodeContext &node)
Definition: txmempool.cpp:21
FUZZ_TARGET(validation_load_mempool,.init=initialize_validation_load_mempool)
void initialize_validation_load_mempool()
FuzzedDataProvider & fuzzed_data_provider
Definition: fees.cpp:39