Bitcoin Core 31.99.0
P2P Digital Currency
coinstatsindex_tests.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
5#include <chain.h>
6#include <chainparams.h>
7#include <coins.h>
10#include <interfaces/chain.h>
11#include <kernel/coinstats.h>
12#include <kernel/types.h>
13#include <key.h>
14#include <primitives/block.h>
16#include <script/script.h>
17#include <sync.h>
20#include <util/check.h>
21#include <validation.h>
22
23#include <boost/test/unit_test.hpp>
24
25#include <memory>
26#include <optional>
27#include <span>
28#include <vector>
29
31
32BOOST_AUTO_TEST_SUITE(coinstatsindex_tests)
33
34BOOST_FIXTURE_TEST_CASE(coinstatsindex_initial_sync, TestChain100Setup)
35{
36 CoinStatsIndex coin_stats_index{interfaces::MakeChain(m_node), 1_MiB, true};
37 BOOST_REQUIRE(coin_stats_index.Init());
38
39 const CBlockIndex* block_index;
40 {
42 block_index = m_node.chainman->ActiveChain().Tip();
43 }
44
45 // CoinStatsIndex should not be found before it is started.
46 BOOST_CHECK(!coin_stats_index.LookUpStats(*block_index));
47
48 // BlockUntilSyncedToCurrentChain should return false before CoinStatsIndex
49 // is started.
50 BOOST_CHECK(!coin_stats_index.BlockUntilSyncedToCurrentChain());
51
52 coin_stats_index.Sync();
53
54 // Check that CoinStatsIndex works for genesis block.
55 const CBlockIndex* genesis_block_index;
56 {
58 genesis_block_index = m_node.chainman->ActiveChain().Genesis();
59 }
60 BOOST_CHECK(coin_stats_index.LookUpStats(*genesis_block_index));
61
62 // Check that CoinStatsIndex updates with new blocks.
63 BOOST_CHECK(coin_stats_index.LookUpStats(*block_index));
64
65 const CScript script_pub_key{CScript() << ToByteVector(coinbaseKey.GetPubKey()) << OP_CHECKSIG};
66 std::vector<CMutableTransaction> noTxns;
67 CreateAndProcessBlock(noTxns, script_pub_key);
68
69 // Let the CoinStatsIndex to catch up again.
70 BOOST_CHECK(coin_stats_index.BlockUntilSyncedToCurrentChain());
71
72 const CBlockIndex* new_block_index;
73 {
75 new_block_index = m_node.chainman->ActiveChain().Tip();
76 }
77 BOOST_CHECK(coin_stats_index.LookUpStats(*new_block_index));
78
79 BOOST_CHECK(block_index != new_block_index);
80
81 // Shutdown sequence (c.f. Shutdown() in init.cpp)
82 coin_stats_index.Stop();
83}
84
85// Test shutdown between BlockConnected and ChainStateFlushed notifications,
86// make sure index is not corrupted and is able to reload.
87BOOST_FIXTURE_TEST_CASE(coinstatsindex_unclean_shutdown, TestChain100Setup)
88{
89 Chainstate& chainstate = Assert(m_node.chainman)->ActiveChainstate();
90 const CChainParams& params = Params();
91 {
93 BOOST_REQUIRE(index.Init());
94 index.Sync();
95 std::shared_ptr<const CBlock> new_block;
96 CBlockIndex* new_block_index = nullptr;
97 {
98 const CScript script_pub_key{CScript() << ToByteVector(coinbaseKey.GetPubKey()) << OP_CHECKSIG};
99 const CBlock block = this->CreateBlock({}, script_pub_key);
100
101 new_block = std::make_shared<CBlock>(block);
102
103 LOCK(cs_main);
105 BOOST_CHECK(CheckBlock(block, state, params.GetConsensus()));
106 BOOST_CHECK(m_node.chainman->AcceptBlock(new_block, state, &new_block_index, true, nullptr, nullptr, true));
107 CCoinsViewCache view(&chainstate.CoinsTip());
108 BOOST_CHECK(chainstate.ConnectBlock(block, state, new_block_index, view));
109 }
110 // Send block connected notification, then stop the index without
111 // sending a chainstate flushed notification. Prior to #24138, this
112 // would cause the index to be corrupted and fail to reload.
113 ValidationInterfaceTest::BlockConnected(ChainstateRole{}, index, new_block, new_block_index);
114 index.Stop();
115 }
116
117 {
119 BOOST_REQUIRE(index.Init());
120 // Make sure the index can be loaded.
121 BOOST_REQUIRE(index.StartBackgroundSync());
122 index.Stop();
123 }
124}
125
node::NodeContext m_node
Definition: bitcoin-gui.cpp:47
const CChainParams & Params()
Return the currently selected parameters.
#define Assert(val)
Identity function.
Definition: check.h:116
Definition: block.h:74
The block chain is a tree shaped structure starting with the genesis block at the root,...
Definition: chain.h:94
CChainParams defines various tweakable parameters of a given instance of the Bitcoin system.
Definition: chainparams.h:77
const Consensus::Params & GetConsensus() const
Definition: chainparams.h:89
CCoinsView that adds a memory cache for transactions to another CCoinsView.
Definition: coins.h:394
Serialized script, used inside transaction inputs and outputs.
Definition: script.h:406
Chainstate stores and provides an API to update our local knowledge of the current best chain.
Definition: validation.h:551
CCoinsViewCache & CoinsTip() EXCLUSIVE_LOCKS_REQUIRED(
Definition: validation.h:686
bool ActivateBestChain(BlockValidationState &state, std::shared_ptr< const CBlock > pblock=nullptr) LOCKS_EXCLUDED(DisconnectResult DisconnectBlock(const CBlock &block, const CBlockIndex *pindex, CCoinsViewCache &view) EXCLUSIVE_LOCKS_REQUIRED(boo ConnectBlock)(const CBlock &block, BlockValidationState &state, CBlockIndex *pindex, CCoinsViewCache &view, bool fJustCheck=false) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
Find the best known block, and make it the tip of the block chain.
Definition: validation.h:781
CoinStatsIndex maintains statistics on the UTXO set.
static void BlockConnected(const kernel::ChainstateRole &role, CValidationInterface &obj, const std::shared_ptr< const CBlock > &block, const CBlockIndex *pindex)
Definition: validation.cpp:46
BOOST_FIXTURE_TEST_CASE(coinstatsindex_initial_sync, TestChain100Setup)
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
Definition: cs_main.cpp:8
BOOST_AUTO_TEST_SUITE_END()
is a home for simple enum and struct type definitions that can be used internally by functions in the...
std::unique_ptr< Chain > MakeChain(node::NodeContext &node)
Return implementation of Chain interface.
#define BOOST_CHECK(expr)
Definition: object.cpp:16
@ OP_CHECKSIG
Definition: script.h:191
std::vector< unsigned char > ToByteVector(const T &in)
Definition: script.h:68
Testing fixture that pre-creates a 100-block REGTEST-mode block chain.
Definition: setup_common.h:137
Information about chainstate that notifications are sent from.
Definition: types.h:18
std::unique_ptr< ChainstateManager > chainman
Definition: context.h:76
#define LOCK(cs)
Definition: sync.h:268
bool CheckBlock(const CBlock &block, BlockValidationState &state, const Consensus::Params &consensusParams, bool fCheckPOW, bool fCheckMerkleRoot)
Functions for validating blocks and updating the block tree.