Bitcoin Core  31.0.0
P2P Digital Currency
txindex_tests.cpp
Go to the documentation of this file.
1 // Copyright (c) 2017-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 <addresstype.h>
6 #include <chainparams.h>
7 #include <index/txindex.h>
8 #include <interfaces/chain.h>
10 #include <validation.h>
11 
12 #include <boost/test/unit_test.hpp>
13 
14 BOOST_AUTO_TEST_SUITE(txindex_tests)
15 
17 {
18  TxIndex txindex(interfaces::MakeChain(m_node), 1 << 20, true);
19  BOOST_REQUIRE(txindex.Init());
20 
21  CTransactionRef tx_disk;
22  uint256 block_hash;
23 
24  // Transaction should not be found in the index before it is started.
25  for (const auto& txn : m_coinbase_txns) {
26  BOOST_CHECK(!txindex.FindTx(txn->GetHash(), block_hash, tx_disk));
27  }
28 
29  // BlockUntilSyncedToCurrentChain should return false before txindex is started.
30  BOOST_CHECK(!txindex.BlockUntilSyncedToCurrentChain());
31 
32  txindex.Sync();
33 
34  // Check that txindex excludes genesis block transactions.
35  const CBlock& genesis_block = Params().GenesisBlock();
36  for (const auto& txn : genesis_block.vtx) {
37  BOOST_CHECK(!txindex.FindTx(txn->GetHash(), block_hash, tx_disk));
38  }
39 
40  // Check that txindex has all txs that were in the chain before it started.
41  for (const auto& txn : m_coinbase_txns) {
42  if (!txindex.FindTx(txn->GetHash(), block_hash, tx_disk)) {
43  BOOST_ERROR("FindTx failed");
44  } else if (tx_disk->GetHash() != txn->GetHash()) {
45  BOOST_ERROR("Read incorrect tx");
46  }
47  }
48 
49  // Check that new transactions in new blocks make it into the index.
50  for (int i = 0; i < 10; i++) {
51  CScript coinbase_script_pub_key = GetScriptForDestination(PKHash(coinbaseKey.GetPubKey()));
52  std::vector<CMutableTransaction> no_txns;
53  const CBlock& block = CreateAndProcessBlock(no_txns, coinbase_script_pub_key);
54  const CTransaction& txn = *block.vtx[0];
55 
56  BOOST_CHECK(txindex.BlockUntilSyncedToCurrentChain());
57  if (!txindex.FindTx(txn.GetHash(), block_hash, tx_disk)) {
58  BOOST_ERROR("FindTx failed");
59  } else if (tx_disk->GetHash() != txn.GetHash()) {
60  BOOST_ERROR("Read incorrect tx");
61  }
62  }
63 
64  // shutdown sequence (c.f. Shutdown() in init.cpp)
65  txindex.Stop();
66 }
67 
std::shared_ptr< const CTransaction > CTransactionRef
Definition: transaction.h:403
bool Init()
Initializes the sync state and registers the instance to the validation interface so that it stays in...
Definition: base.cpp:104
Definition: block.h:73
node::NodeContext m_node
Definition: bitcoin-gui.cpp:43
const CBlock & GenesisBlock() const
Definition: chainparams.h:94
BOOST_FIXTURE_TEST_CASE(txindex_initial_sync, TestChain100Setup)
void Stop()
Stops the instance from staying in sync with blockchain updates.
Definition: base.cpp:461
BOOST_AUTO_TEST_SUITE_END()
void Sync()
Sync the index with the block index starting from the current best block.
Definition: base.cpp:201
Testing fixture that pre-creates a 100-block REGTEST-mode block chain.
Definition: setup_common.h:146
CScript GetScriptForDestination(const CTxDestination &dest)
Generate a Bitcoin scriptPubKey for the given CTxDestination.
256-bit opaque blob.
Definition: uint256.h:195
std::vector< CTransactionRef > vtx
Definition: block.h:77
std::unique_ptr< Chain > MakeChain(node::NodeContext &node)
Return implementation of Chain interface.
bool FindTx(const Txid &tx_hash, uint256 &block_hash, CTransactionRef &tx) const
Look up a transaction by hash.
Definition: txindex.cpp:94
const CChainParams & Params()
Return the currently selected parameters.
Serialized script, used inside transaction inputs and outputs.
Definition: script.h:404
The basic transaction that is broadcasted on the network and contained in blocks. ...
Definition: transaction.h:280
TxIndex is used to look up transactions included in the blockchain by hash.
Definition: txindex.h:26
const Txid & GetHash() const LIFETIMEBOUND
Definition: transaction.h:328
#define BOOST_CHECK(expr)
Definition: object.cpp:16