Coverage Report

Created: 2025-09-19 18:31

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/root/bitcoin/src/test/fuzz/load_external_block_file.cpp
Line
Count
Source
1
// Copyright (c) 2020-2021 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
5
#include <chainparams.h>
6
#include <clientversion.h>
7
#include <flatfile.h>
8
#include <test/fuzz/FuzzedDataProvider.h>
9
#include <test/fuzz/fuzz.h>
10
#include <test/fuzz/util.h>
11
#include <test/util/setup_common.h>
12
#include <util/time.h>
13
#include <validation.h>
14
15
#include <cstdint>
16
#include <vector>
17
18
namespace {
19
const TestingSetup* g_setup;
20
} // namespace
21
22
void initialize_load_external_block_file()
23
0
{
24
0
    static const auto testing_setup = MakeNoLogFileContext<const TestingSetup>();
25
0
    g_setup = testing_setup.get();
26
0
}
27
28
FUZZ_TARGET(load_external_block_file, .init = initialize_load_external_block_file)
29
0
{
30
0
    FuzzedDataProvider fuzzed_data_provider{buffer.data(), buffer.size()};
31
0
    SetMockTime(ConsumeTime(fuzzed_data_provider));
32
0
    FuzzedFileProvider fuzzed_file_provider{fuzzed_data_provider};
33
0
    AutoFile fuzzed_block_file{fuzzed_file_provider.open()};
34
0
    if (fuzzed_block_file.IsNull()) {
35
0
        return;
36
0
    }
37
0
    if (fuzzed_data_provider.ConsumeBool()) {
38
        // Corresponds to the -reindex case (track orphan blocks across files).
39
0
        FlatFilePos flat_file_pos;
40
0
        std::multimap<uint256, FlatFilePos> blocks_with_unknown_parent;
41
0
        g_setup->m_node.chainman->LoadExternalBlockFile(fuzzed_block_file, &flat_file_pos, &blocks_with_unknown_parent);
42
0
    } else {
43
        // Corresponds to the -loadblock= case (orphan blocks aren't tracked across files).
44
0
        g_setup->m_node.chainman->LoadExternalBlockFile(fuzzed_block_file);
45
0
    }
46
0
}