Bitcoin Core 31.99.0
P2P Digital Currency
setup_common.h
Go to the documentation of this file.
1// Copyright (c) 2015-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#ifndef BITCOIN_TEST_UTIL_SETUP_COMMON_H
6#define BITCOIN_TEST_UTIL_SETUP_COMMON_H
7
8#include <common/args.h> // IWYU pragma: export
9#include <consensus/amount.h>
10#include <kernel/caches.h>
11#include <key.h>
12#include <node/caches.h>
13#include <node/context.h> // IWYU pragma: export
15#include <random.h>
16#include <test/util/net.h>
17#include <test/util/random.h>
18#include <test/util/time.h>
19#include <util/chaintype.h> // IWYU pragma: export
20#include <util/fs.h>
22#include <util/vector.h>
23
24#include <cstddef>
25#include <cstdint>
26#include <functional>
27#include <memory>
28#include <optional>
29#include <string>
30#include <utility>
31#include <vector>
32
33class CFeeRate;
34
36extern const std::function<std::vector<const char*>()> G_TEST_COMMAND_LINE_ARGUMENTS;
37
39extern const std::function<std::string()> G_TEST_GET_FULL_NAME;
40
41static constexpr CAmount CENT{1000000};
42
44void SetupCommonTestArgs(ArgsManager& argsman);
45
46struct TestOpts {
47 std::vector<const char*> extra_args{};
50 bool setup_net{true};
52 bool min_validation_cache{false}; // Equivalent of -maxsigcachebytes=0
53};
54
60 node::NodeContext m_node; // keep as first member to be destructed last
61
65 {
68 }
69
70 explicit BasicTestingSetup(ChainType chainType = ChainType::MAIN, TestOpts = {});
72
73 fs::path m_path_root;
74 fs::path m_path_lock;
94};
95
104 std::function<void()> m_make_chainman{};
105
106 explicit ChainTestingSetup(ChainType chainType = ChainType::MAIN, TestOpts = {});
108
109 // Supplies a chainstate, if one is needed
111};
112
116 explicit TestingSetup(
117 ChainType chainType = ChainType::MAIN,
118 TestOpts = {});
119};
120
125};
126
131};
132
133class CBlock;
134class CScript;
135
141 ChainType chain_type = ChainType::REGTEST,
142 TestOpts = {});
143
148 CBlock CreateAndProcessBlock(const std::vector<CMutableTransaction>& txns,
149 const CScript& scriptPubKey);
150
156 const std::vector<CMutableTransaction>& txns,
157 const CScript& scriptPubKey);
158
160 void mineBlocks(int num_blocks);
161
175 std::pair<CMutableTransaction, CAmount> CreateValidTransaction(const std::vector<CTransactionRef>& input_transactions,
176 const std::vector<COutPoint>& inputs,
177 int input_height,
178 const std::vector<CKey>& input_signing_keys,
179 const std::vector<CTxOut>& outputs,
180 const std::optional<CFeeRate>& feerate,
181 const std::optional<uint32_t>& fee_output);
192 CMutableTransaction CreateValidMempoolTransaction(const std::vector<CTransactionRef>& input_transactions,
193 const std::vector<COutPoint>& inputs,
194 int input_height,
195 const std::vector<CKey>& input_signing_keys,
196 const std::vector<CTxOut>& outputs,
197 bool submit = true);
198
211 uint32_t input_vout,
212 int input_height,
213 CKey input_signing_key,
214 CScript output_destination,
215 CAmount output_amount = CAmount(1 * COIN),
216 bool submit = true);
217
229 std::vector<CTransactionRef> PopulateMempool(FastRandomContext& det_rand, size_t num_transactions, bool submit);
230
231 FakeNodeClock m_clock{std::chrono::seconds{1598887952}}; // 2020-08-31, arbitrary
232 std::vector<CTransactionRef> m_coinbase_txns; // For convenience, coinbase transactions
233 CKey coinbaseKey; // private/public key needed to spend coinbase transactions
234};
235
240template <class T = const BasicTestingSetup>
241std::unique_ptr<T> MakeNoLogFileContext(const ChainType chain_type = ChainType::REGTEST, TestOpts opts = {})
242{
243 opts.extra_args = Cat(
244 {
245 "-nodebuglogfile",
246 "-nodebug",
247 },
248 opts.extra_args);
249
250 return std::make_unique<T>(chain_type, opts);
251}
252
254{
255public:
256 explicit SocketTestingSetup();
258
263 std::shared_ptr<DynSock::Pipes> ConnectClient(std::span<const std::byte> data);
264
265private:
268
271};
272
274
275#endif // BITCOIN_TEST_UTIL_SETUP_COMMON_H
int64_t CAmount
Amount in satoshis (Can be negative)
Definition: amount.h:12
static constexpr CAmount COIN
The amount of satoshis in one BTC.
Definition: amount.h:15
ChainType
Definition: chaintype.h:12
Definition: block.h:74
Fee rate in satoshis per virtualbyte: CAmount / vB the feerate is represented internally as FeeFrac.
Definition: feerate.h:32
An encapsulated private key.
Definition: key.h:37
Serialized script, used inside transaction inputs and outputs.
Definition: script.h:406
A basic thread-safe queue, used for queuing sockets to be returned by Accept().
Definition: net.h:303
Helper to initialize the global NodeClock, let a duration elapse, and reset it after use in a test.
Definition: time.h:54
Fast randomness source.
Definition: random.h:386
void Reseed(const uint256 &seed) noexcept
Reseed with explicit seed (only for testing).
Definition: random.cpp:634
decltype(CreateSock) m_create_sock_orig
Save the original value of CreateSock here and restore it when the test ends.
Definition: setup_common.h:267
std::shared_ptr< DynSock::Pipes > ConnectClient(std::span< const std::byte > data)
Connect to the socket with a mock client (a DynSock) and send pre-loaded data.
DynSock::Queue m_accepted_sockets
Queue of connected sockets returned by listening socket (represents network interface)
Definition: setup_common.h:270
Helper class that manages an interrupt flag, and allows a thread or signal to interrupt another threa...
CacheSizes CalculateCacheSizes(const ArgsManager &args, size_t n_indexes)
Definition: caches.cpp:57
std::function< std::unique_ptr< Sock >(int, int, int)> CreateSock
Socket factory.
Definition: netbase.cpp:577
std::shared_ptr< const CTransaction > CTransactionRef
Definition: transaction.h:403
uint256 GetRandHash() noexcept
Generate a random uint256.
Definition: random.h:463
static constexpr CAmount CENT
Definition: setup_common.h:41
void SetupCommonTestArgs(ArgsManager &argsman)
Register common test args.
const std::function< std::vector< const char * >()> G_TEST_COMMAND_LINE_ARGUMENTS
Retrieve the command line arguments.
Definition: bench.cpp:28
CBlock getBlock13b8a()
std::unique_ptr< T > MakeNoLogFileContext(const ChainType chain_type=ChainType::REGTEST, TestOpts opts={})
Make a test setup that has disk access to the debug.log file disabled.
Definition: setup_common.h:241
const std::function< std::string()> G_TEST_GET_FULL_NAME
Retrieve the unit test name.
Definition: bench.cpp:39
Basic testing setup.
Definition: setup_common.h:58
fs::path m_path_lock
Definition: setup_common.h:74
ArgsManager m_args
Test-specific arguments and settings.
Definition: setup_common.h:93
BasicTestingSetup(ChainType chainType=ChainType::MAIN, TestOpts={})
void SeedRandomForTest(SeedRand seed)
Seed the global RNG state and m_rng for testing and log the seed value.
Definition: setup_common.h:64
FastRandomContext m_rng
Definition: setup_common.h:62
util::SignalInterrupt m_interrupt
Definition: setup_common.h:59
fs::path m_path_root
Definition: setup_common.h:73
node::NodeContext m_node
Definition: setup_common.h:60
A mutable version of CTransaction.
Definition: transaction.h:358
Testing setup that performs all steps up until right before ChainstateManager gets initialized.
Definition: setup_common.h:100
ChainTestingSetup(ChainType chainType=ChainType::MAIN, TestOpts={})
kernel::CacheSizes m_kernel_cache_sizes
Definition: setup_common.h:101
bool m_block_tree_db_in_memory
Definition: setup_common.h:103
std::function< void()> m_make_chainman
Definition: setup_common.h:104
void LoadVerifyActivateChainstate()
Identical to TestingSetup, but chain set to regtest.
Definition: setup_common.h:122
Testing fixture that pre-creates a 100-block REGTEST-mode block chain.
Definition: setup_common.h:139
void mineBlocks(int num_blocks)
Mine a series of new blocks on the active chain.
std::vector< CTransactionRef > m_coinbase_txns
Definition: setup_common.h:232
CMutableTransaction CreateValidMempoolTransaction(const std::vector< CTransactionRef > &input_transactions, const std::vector< COutPoint > &inputs, int input_height, const std::vector< CKey > &input_signing_keys, const std::vector< CTxOut > &outputs, bool submit=true)
Create a transaction and, optionally, submit to the mempool.
std::pair< CMutableTransaction, CAmount > CreateValidTransaction(const std::vector< CTransactionRef > &input_transactions, const std::vector< COutPoint > &inputs, int input_height, const std::vector< CKey > &input_signing_keys, const std::vector< CTxOut > &outputs, const std::optional< CFeeRate > &feerate, const std::optional< uint32_t > &fee_output)
Create a transaction, optionally setting the fee based on the feerate.
CBlock CreateAndProcessBlock(const std::vector< CMutableTransaction > &txns, const CScript &scriptPubKey)
Create a new block with just given transactions, coinbase paying to scriptPubKey, and try to add it t...
TestChain100Setup(ChainType chain_type=ChainType::REGTEST, TestOpts={})
std::vector< CTransactionRef > PopulateMempool(FastRandomContext &det_rand, size_t num_transactions, bool submit)
Create transactions spending from m_coinbase_txns.
CBlock CreateBlock(const std::vector< CMutableTransaction > &txns, const CScript &scriptPubKey)
Create a new block with just given transactions, coinbase paying to scriptPubKey.
FakeNodeClock m_clock
Definition: setup_common.h:231
bool coins_db_in_memory
Definition: setup_common.h:48
bool min_validation_cache
Definition: setup_common.h:52
bool block_tree_db_in_memory
Definition: setup_common.h:49
std::vector< const char * > extra_args
Definition: setup_common.h:47
bool setup_validation_interface
Definition: setup_common.h:51
bool setup_net
Definition: setup_common.h:50
Testing setup that configures a complete environment.
Definition: setup_common.h:115
TestingSetup(ChainType chainType=ChainType::MAIN, TestOpts={})
Identical to TestingSetup, but chain set to testnet4.
Definition: setup_common.h:128
kernel::CacheSizes kernel
Definition: caches.h:29
NodeContext struct containing references to chain state and connection state.
Definition: context.h:59
SeedRandomStateForTest(SeedRand::ZEROS)
SeedRand
Definition: random.h:15
V Cat(V v1, V &&v2)
Concatenate two vectors, moving elements.
Definition: vector.h:34