5#include <boost/test/unit_test.hpp>
7#include <chainparams.h>
31 std::shared_ptr<CBlock>
FinalizeBlock(std::shared_ptr<CBlock> pblock);
53 m_expected_tip = block->GetHash();
61 m_expected_tip = block->hashPrevBlock;
65std::shared_ptr<CBlock> MinerTestingSetup::Block(
const uint256& prev_hash)
70 BlockAssembler::Options options;
72 options.include_dummy_extranonce =
true;
74 auto pblock = std::make_shared<CBlock>(
ptemplate->block);
75 pblock->hashPrevBlock = prev_hash;
76 pblock->nTime = ++time;
96std::shared_ptr<CBlock> MinerTestingSetup::FinalizeBlock(std::shared_ptr<CBlock> pblock)
116std::shared_ptr<const CBlock> MinerTestingSetup::GoodBlock(
const uint256& prev_hash)
118 return FinalizeBlock(Block(prev_hash));
122std::shared_ptr<const CBlock> MinerTestingSetup::BadBlock(
const uint256& prev_hash)
124 auto pblock = Block(prev_hash);
131 pblock->vtx.push_back(tx);
133 auto ret = FinalizeBlock(pblock);
138void MinerTestingSetup::BuildChain(
const uint256& root,
int height,
const unsigned int invalid_rate,
const unsigned int branch_rate,
const unsigned int max_size, std::vector<std::shared_ptr<const CBlock>>&
blocks)
140 if (height <= 0 ||
blocks.size() >= max_size)
return;
145 const std::shared_ptr<const CBlock> pblock =
gen_invalid ? BadBlock(root) : GoodBlock(root);
152 blocks.push_back(GoodBlock(root));
160 std::vector<std::shared_ptr<const CBlock>>
blocks;
161 while (
blocks.size() < 50) {
163 BuildChain(
Params().GenesisBlock().GetHash(), 100, 15, 10, 500,
blocks);
177 auto sub = std::make_shared<TestSubscriber>(
initial_tip->GetBlockHash());
183 std::vector<std::thread>
threads;
185 for (
int i = 0; i < 10; i++) {
189 for (
int i = 0; i < 1000; i++) {
195 for (
const auto& block :
blocks) {
196 if (block->vtx.size() == 1) {
235 auto ProcessBlock = [&](std::shared_ptr<const CBlock> block) ->
bool {
253 std::vector<CTransactionRef>
txs;
259 mtx.vout[0].nValue -= 1000;
275 std::vector<std::shared_ptr<const CBlock>>
reorg;
286 for (
const auto& tx :
txs) {
323 for (
const auto& b :
reorg) {
339 BlockAssembler::Options options;
340 options.coinbase_output_script =
pubKey;
341 options.include_dummy_extranonce =
true;
const CChainParams & Params()
Return the currently selected parameters.
#define Assert(val)
Identity function.
std::vector< CTransactionRef > vtx
The block chain is a tree shaped structure starting with the genesis block at the root,...
CBlockIndex * pprev
pointer to the index of the predecessor of this block
uint256 GetBlockHash() const
const CBlock & GenesisBlock() const
An outpoint - a combination of a transaction hash and an index n into its vout.
Serialized script, used inside transaction inputs and outputs.
An output of a transaction.
Implement this to subscribe to events generated in validation and mempool.
Generate a new block, without valid proof-of-work.
void resize(size_type new_size)
uint256 BlockMerkleRoot(const CBlock &block, bool *mutated)
static constexpr size_t MINIMUM_WITNESS_COMMITMENT
Minimum size of a witness commitment structure.
int GetWitnessCommitmentIndex(const CBlock &block)
Compute at which vout of the block's coinbase transaction the witness commitment occurs,...
static const int COINBASE_MATURITY
Coinbase transaction outputs can only be spent after this number of new blocks (network rule)
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
BOOST_FIXTURE_TEST_SUITE(cuckoocache_tests, BasicTestingSetup)
Test Suite for CuckooCache.
BOOST_AUTO_TEST_SUITE_END()
#define BOOST_CHECK_EQUAL(v1, v2)
#define BOOST_CHECK(expr)
bool CheckProofOfWork(uint256 hash, unsigned int nBits, const Consensus::Params ¶ms)
Check whether a block hash satisfies the proof-of-work requirement specified by nBits.
static CTransactionRef MakeTransactionRef(Tx &&txIn)
std::shared_ptr< const CTransaction > CTransactionRef
A mutable version of CTransaction.
Validation result for a transaction evaluated by MemPoolAccept (single or package).
const ResultType m_result_type
Result type.
Identical to TestingSetup, but chain set to regtest.
void BlockDisconnected(const std::shared_ptr< const CBlock > &block, const CBlockIndex *pindex) override
Notifies listeners of a block being disconnected Provides the block that was disconnected.
TestSubscriber(uint256 tip)
void BlockConnected(const ChainstateRole &role, const std::shared_ptr< const CBlock > &block, const CBlockIndex *pindex) override
Notifies listeners of a block being connected.
void UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload) override
Notifies listeners when the block chain tip advances.
Information about chainstate that notifications are sent from.
std::unique_ptr< ValidationSignals > validation_signals
Issues calls about blocks and transactions.
std::unique_ptr< CTxMemPool > mempool
std::unique_ptr< ChainstateManager > chainman
std::shared_ptr< const CBlock > BadBlock(const uint256 &prev_hash)
std::shared_ptr< CBlock > Block(const uint256 &prev_hash)
void BuildChain(const uint256 &root, int height, unsigned int invalid_rate, unsigned int branch_rate, unsigned int max_size, std::vector< std::shared_ptr< const CBlock > > &blocks)
std::shared_ptr< const CBlock > GoodBlock(const uint256 &prev_hash)
std::shared_ptr< CBlock > FinalizeBlock(std::shared_ptr< CBlock > pblock)
#define WITH_LOCK(cs, code)
Run code while locking a mutex.
COutPoint ProcessBlock(const NodeContext &node, const std::shared_ptr< CBlock > &block)
Returns the generated coin (or Null if the block was invalid).
static const std::vector< uint8_t > WITNESS_STACK_ELEM_OP_TRUE
static const CScript P2WSH_OP_TRUE
constexpr auto Ticks(Dur2 d)
Helper to count the seconds of a duration/time_point.
BOOST_AUTO_TEST_CASE(processnewblock_signals_ordering)