Skip to content

Commit fad7f22

Browse files
author
MacroFake
committed
test: Remove unused txmempool include from tests
1 parent ba441d4 commit fad7f22

17 files changed

+114
-69
lines changed

build_msvc/test_bitcoin-qt/test_bitcoin-qt.vcxproj

+3
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@
5454
<ProjectReference Include="..\libbitcoin_zmq\libbitcoin_zmq.vcxproj">
5555
<Project>{792d487f-f14c-49fc-a9de-3fc150f31c3f}</Project>
5656
</ProjectReference>
57+
<ProjectReference Include="..\libtest_util\libtest_util.vcxproj">
58+
<Project>{1e065f03-3566-47d0-8fa9-daa72b084e7d}</Project>
59+
</ProjectReference>
5760
<ProjectReference Include="..\libleveldb\libleveldb.vcxproj">
5861
<Project>{18430fef-6b61-4c53-b396-718e02850f1b}</Project>
5962
</ProjectReference>

src/Makefile.test_util.include

+14-12
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,21 @@
55
LIBTEST_UTIL=libtest_util.a
66

77
EXTRA_LIBRARIES += \
8-
$(LIBTEST_UTIL)
8+
$(LIBTEST_UTIL)
99

1010
TEST_UTIL_H = \
11-
test/util/blockfilter.h \
12-
test/util/chainstate.h \
13-
test/util/logging.h \
14-
test/util/mining.h \
15-
test/util/net.h \
16-
test/util/script.h \
17-
test/util/setup_common.h \
18-
test/util/str.h \
19-
test/util/transaction_utils.h \
20-
test/util/validation.h \
21-
test/util/wallet.h
11+
test/util/blockfilter.h \
12+
test/util/chainstate.h \
13+
test/util/logging.h \
14+
test/util/mining.h \
15+
test/util/net.h \
16+
test/util/script.h \
17+
test/util/setup_common.h \
18+
test/util/str.h \
19+
test/util/transaction_utils.h \
20+
test/util/txmempool.h \
21+
test/util/validation.h \
22+
test/util/wallet.h
2223

2324
libtest_util_a_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) $(BOOST_CPPFLAGS)
2425
libtest_util_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
@@ -31,6 +32,7 @@ libtest_util_a_SOURCES = \
3132
test/util/setup_common.cpp \
3233
test/util/str.cpp \
3334
test/util/transaction_utils.cpp \
35+
test/util/txmempool.cpp \
3436
test/util/validation.cpp \
3537
test/util/wallet.cpp \
3638
$(TEST_UTIL_H)

src/test/blockencodings_tests.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
#include <consensus/merkle.h>
88
#include <pow.h>
99
#include <streams.h>
10+
#include <test/util/txmempool.h>
1011

1112
#include <test/util/setup_common.h>
1213

src/test/fuzz/rbf.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include <test/fuzz/util.h>
1212
#include <test/fuzz/util/mempool.h>
1313
#include <test/util/setup_common.h>
14+
#include <test/util/txmempool.h>
1415
#include <txmempool.h>
1516

1617
#include <cstdint>

src/test/fuzz/tx_pool.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#include <test/util/mining.h>
1414
#include <test/util/script.h>
1515
#include <test/util/setup_common.h>
16+
#include <test/util/txmempool.h>
1617
#include <util/rbf.h>
1718
#include <validation.h>
1819
#include <validationinterface.h>

src/test/fuzz/validation_load_mempool.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#include <test/fuzz/util.h>
1313
#include <test/fuzz/util/mempool.h>
1414
#include <test/util/setup_common.h>
15+
#include <test/util/txmempool.h>
1516
#include <txmempool.h>
1617
#include <util/time.h>
1718
#include <validation.h>

src/test/mempool_tests.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
44

55
#include <policy/policy.h>
6+
#include <test/util/txmempool.h>
67
#include <txmempool.h>
78
#include <util/system.h>
89
#include <util/time.h>

src/test/miner_tests.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#include <node/miner.h>
1010
#include <policy/policy.h>
1111
#include <script/standard.h>
12+
#include <test/util/txmempool.h>
1213
#include <timedata.h>
1314
#include <txmempool.h>
1415
#include <uint256.h>

src/test/policyestimator_tests.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
#include <policy/fees.h>
66
#include <policy/policy.h>
7+
#include <test/util/txmempool.h>
78
#include <txmempool.h>
89
#include <uint256.h>
910
#include <util/time.h>

src/test/rbf_tests.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
44
#include <policy/rbf.h>
55
#include <random.h>
6+
#include <test/util/txmempool.h>
67
#include <txmempool.h>
78
#include <util/system.h>
89
#include <util/time.h>

src/test/sigopcount_tests.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Distributed under the MIT software license, see the accompanying
33
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
44

5+
#include <coins.h>
56
#include <consensus/consensus.h>
67
#include <consensus/tx_verify.h>
78
#include <key.h>

src/test/util/setup_common.cpp

+1-25
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
#include <shutdown.h>
3737
#include <streams.h>
3838
#include <test/util/net.h>
39+
#include <test/util/txmempool.h>
3940
#include <timedata.h>
4041
#include <txdb.h>
4142
#include <txmempool.h>
@@ -60,7 +61,6 @@ using node::ApplyArgsManOptions;
6061
using node::BlockAssembler;
6162
using node::CalculateCacheSizes;
6263
using node::LoadChainstate;
63-
using node::NodeContext;
6464
using node::RegenerateCommitments;
6565
using node::VerifyLoadedChainstate;
6666

@@ -162,19 +162,6 @@ BasicTestingSetup::~BasicTestingSetup()
162162
gArgs.ClearArgs();
163163
}
164164

165-
CTxMemPool::Options MemPoolOptionsForTest(const NodeContext& node)
166-
{
167-
CTxMemPool::Options mempool_opts{
168-
.estimator = node.fee_estimator.get(),
169-
// Default to always checking mempool regardless of
170-
// chainparams.DefaultConsistencyChecks for tests
171-
.check_ratio = 1,
172-
};
173-
const auto err{ApplyArgsManOptions(*node.args, ::Params(), mempool_opts)};
174-
Assert(!err);
175-
return mempool_opts;
176-
}
177-
178165
ChainTestingSetup::ChainTestingSetup(const std::string& chainName, const std::vector<const char*>& extra_args)
179166
: BasicTestingSetup(chainName, extra_args)
180167
{
@@ -438,17 +425,6 @@ std::vector<CTransactionRef> TestChain100Setup::PopulateMempool(FastRandomContex
438425
return mempool_transactions;
439426
}
440427

441-
CTxMemPoolEntry TestMemPoolEntryHelper::FromTx(const CMutableTransaction& tx) const
442-
{
443-
return FromTx(MakeTransactionRef(tx));
444-
}
445-
446-
CTxMemPoolEntry TestMemPoolEntryHelper::FromTx(const CTransactionRef& tx) const
447-
{
448-
return CTxMemPoolEntry(tx, nFee, nTime, nHeight,
449-
spendsCoinbase, sigOpCost, lp);
450-
}
451-
452428
/**
453429
* @returns a real block (0000000000013b8ab2cd513b0261a14096412195a72a0c4827d229dcc7e0f7af)
454430
* with 9 txs.

src/test/util/setup_common.h

+4-32
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,23 @@
88
#include <chainparamsbase.h>
99
#include <fs.h>
1010
#include <key.h>
11-
#include <util/system.h>
1211
#include <node/caches.h>
1312
#include <node/context.h>
13+
#include <primitives/transaction.h>
1414
#include <pubkey.h>
1515
#include <random.h>
1616
#include <stdexcept>
17-
#include <txmempool.h>
1817
#include <util/check.h>
1918
#include <util/string.h>
19+
#include <util/system.h>
2020
#include <util/vector.h>
2121

2222
#include <functional>
2323
#include <type_traits>
2424
#include <vector>
2525

26+
class Chainstate;
27+
2628
/** This is connected to the logger. Can be used to redirect logs to any other log */
2729
extern const std::function<void(const std::string&)> G_TEST_LOG_FUN;
2830

@@ -90,9 +92,6 @@ struct BasicTestingSetup {
9092
ArgsManager m_args;
9193
};
9294

93-
94-
CTxMemPool::Options MemPoolOptionsForTest(const node::NodeContext& node);
95-
9695
/** Testing setup that performs all steps up until right before
9796
* ChainstateManager gets initialized. Meant for testing ChainstateManager
9897
* initialization behaviour.
@@ -213,33 +212,6 @@ std::unique_ptr<T> MakeNoLogFileContext(const std::string& chain_name = CBaseCha
213212
return std::make_unique<T>(chain_name, arguments);
214213
}
215214

216-
class CTxMemPoolEntry;
217-
218-
struct TestMemPoolEntryHelper
219-
{
220-
// Default values
221-
CAmount nFee;
222-
int64_t nTime;
223-
unsigned int nHeight;
224-
bool spendsCoinbase;
225-
unsigned int sigOpCost;
226-
LockPoints lp;
227-
228-
TestMemPoolEntryHelper() :
229-
nFee(0), nTime(0), nHeight(1),
230-
spendsCoinbase(false), sigOpCost(4) { }
231-
232-
CTxMemPoolEntry FromTx(const CMutableTransaction& tx) const;
233-
CTxMemPoolEntry FromTx(const CTransactionRef& tx) const;
234-
235-
// Change the default value
236-
TestMemPoolEntryHelper &Fee(CAmount _fee) { nFee = _fee; return *this; }
237-
TestMemPoolEntryHelper &Time(int64_t _time) { nTime = _time; return *this; }
238-
TestMemPoolEntryHelper &Height(unsigned int _height) { nHeight = _height; return *this; }
239-
TestMemPoolEntryHelper &SpendsCoinbase(bool _flag) { spendsCoinbase = _flag; return *this; }
240-
TestMemPoolEntryHelper &SigOpsCost(unsigned int _sigopsCost) { sigOpCost = _sigopsCost; return *this; }
241-
};
242-
243215
CBlock getBlock13b8a();
244216

245217
// define an implicit conversion here so that uint256 may be used directly in BOOST_CHECK_*

src/test/util/txmempool.cpp

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
// Copyright (c) 2022 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 <test/util/txmempool.h>
6+
7+
#include <chainparams.h>
8+
#include <node/context.h>
9+
#include <node/mempool_args.h>
10+
#include <txmempool.h>
11+
#include <util/check.h>
12+
#include <util/time.h>
13+
#include <util/translation.h>
14+
15+
using node::NodeContext;
16+
17+
CTxMemPool::Options MemPoolOptionsForTest(const NodeContext& node)
18+
{
19+
CTxMemPool::Options mempool_opts{
20+
.estimator = node.fee_estimator.get(),
21+
// Default to always checking mempool regardless of
22+
// chainparams.DefaultConsistencyChecks for tests
23+
.check_ratio = 1,
24+
};
25+
const auto err{ApplyArgsManOptions(*node.args, ::Params(), mempool_opts)};
26+
Assert(!err);
27+
return mempool_opts;
28+
}
29+
30+
CTxMemPoolEntry TestMemPoolEntryHelper::FromTx(const CMutableTransaction& tx) const
31+
{
32+
return FromTx(MakeTransactionRef(tx));
33+
}
34+
35+
CTxMemPoolEntry TestMemPoolEntryHelper::FromTx(const CTransactionRef& tx) const
36+
{
37+
return CTxMemPoolEntry(tx, nFee, nTime, nHeight,
38+
spendsCoinbase, sigOpCost, lp);
39+
}

src/test/util/txmempool.h

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
// Copyright (c) 2022 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_TXMEMPOOL_H
6+
#define BITCOIN_TEST_UTIL_TXMEMPOOL_H
7+
8+
#include <txmempool.h>
9+
10+
namespace node {
11+
struct NodeContext;
12+
}
13+
14+
CTxMemPool::Options MemPoolOptionsForTest(const node::NodeContext& node);
15+
16+
struct TestMemPoolEntryHelper
17+
{
18+
// Default values
19+
CAmount nFee;
20+
int64_t nTime;
21+
unsigned int nHeight;
22+
bool spendsCoinbase;
23+
unsigned int sigOpCost;
24+
LockPoints lp;
25+
26+
TestMemPoolEntryHelper() :
27+
nFee(0), nTime(0), nHeight(1),
28+
spendsCoinbase(false), sigOpCost(4) { }
29+
30+
CTxMemPoolEntry FromTx(const CMutableTransaction& tx) const;
31+
CTxMemPoolEntry FromTx(const CTransactionRef& tx) const;
32+
33+
// Change the default value
34+
TestMemPoolEntryHelper &Fee(CAmount _fee) { nFee = _fee; return *this; }
35+
TestMemPoolEntryHelper &Time(int64_t _time) { nTime = _time; return *this; }
36+
TestMemPoolEntryHelper &Height(unsigned int _height) { nHeight = _height; return *this; }
37+
TestMemPoolEntryHelper &SpendsCoinbase(bool _flag) { spendsCoinbase = _flag; return *this; }
38+
TestMemPoolEntryHelper &SigOpsCost(unsigned int _sigopsCost) { sigOpCost = _sigopsCost; return *this; }
39+
};
40+
41+
#endif // BITCOIN_TEST_UTIL_TXMEMPOOL_H

src/test/util_tests.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#include <util/bitdeque.h>
2727

2828
#include <array>
29+
#include <cmath>
2930
#include <fstream>
3031
#include <limits>
3132
#include <map>

src/wallet/test/feebumper_tests.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// Distributed under the MIT software license, see the accompanying
33
// file COPYING or https://www.opensource.org/licenses/mit-license.php.
44

5+
#include <consensus/validation.h>
6+
#include <policy/policy.h>
57
#include <primitives/transaction.h>
68
#include <script/script.h>
79
#include <util/strencodings.h>

0 commit comments

Comments
 (0)