Bitcoin Core 29.99.0
P2P Digital Currency
group_outputs_tests.cpp
Go to the documentation of this file.
1// Copyright (c) 2022 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or https://www.opensource.org/licenses/mit-license.php.
4
6
8#include <wallet/spend.h>
9#include <wallet/test/util.h>
10#include <wallet/wallet.h>
11
12#include <boost/test/unit_test.hpp>
13
14namespace wallet {
15BOOST_FIXTURE_TEST_SUITE(group_outputs_tests, TestingSetup)
16
17static int nextLockTime = 0;
18
19static std::shared_ptr<CWallet> NewWallet(const node::NodeContext& m_node)
20{
21 std::unique_ptr<CWallet> wallet = std::make_unique<CWallet>(m_node.chain.get(), "", CreateMockableWalletDatabase());
22 wallet->LoadWallet();
23 LOCK(wallet->cs_wallet);
24 wallet->SetWalletFlag(WALLET_FLAG_DESCRIPTORS);
25 wallet->SetupDescriptorScriptPubKeyMans();
26 return wallet;
27}
28
29static void addCoin(CoinsResult& coins,
31 const CTxDestination& dest,
32 const CAmount& nValue,
33 bool is_from_me,
34 CFeeRate fee_rate = CFeeRate(0),
35 int depth = 6)
36{
38 tx.nLockTime = nextLockTime++; // so all transactions get different hashes
39 tx.vout.resize(1);
40 tx.vout[0].nValue = nValue;
41 tx.vout[0].scriptPubKey = GetScriptForDestination(dest);
42
43 const auto txid{tx.GetHash()};
44 LOCK(wallet.cs_wallet);
45 auto ret = wallet.mapWallet.emplace(std::piecewise_construct, std::forward_as_tuple(txid), std::forward_as_tuple(MakeTransactionRef(std::move(tx)), TxStateInactive{}));
46 assert(ret.second);
47 CWalletTx& wtx = (*ret.first).second;
48 const auto& txout = wtx.tx->vout.at(0);
50 {COutPoint(wtx.GetHash(), 0),
51 txout,
52 depth,
53 CalculateMaximumSignedInputSize(txout, &wallet, /*coin_control=*/nullptr),
54 /*solvable=*/ true,
55 /*safe=*/ true,
56 wtx.GetTxTime(),
57 is_from_me,
58 fee_rate});
59}
60
62{
64 rand,
65 /*change_output_size=*/ 0,
66 /*change_spend_size=*/ 0,
67 /*min_change_target=*/ CENT,
68 /*effective_feerate=*/ CFeeRate(0),
69 /*long_term_feerate=*/ CFeeRate(0),
70 /*discard_feerate=*/ CFeeRate(0),
71 /*tx_noinputs_size=*/ 0,
72 /*avoid_partial=*/ avoid_partial_spends,
73 };
74}
75
77{
78public:
79 std::shared_ptr<CWallet> wallet{nullptr};
82
83 void GroupVerify(const OutputType type,
84 const CoinEligibilityFilter& filter,
85 bool avoid_partial_spends,
86 bool positive_only,
87 int expected_size)
88 {
89 OutputGroupTypeMap groups = GroupOutputs(*wallet, coins_pool, makeSelectionParams(rand, avoid_partial_spends), {{filter}})[filter];
90 std::vector<OutputGroup>& groups_out = positive_only ? groups.groups_by_type[type].positive_group :
91 groups.groups_by_type[type].mixed_group;
92 BOOST_CHECK_EQUAL(groups_out.size(), expected_size);
93 }
94
95 void GroupAndVerify(const OutputType type,
96 const CoinEligibilityFilter& filter,
97 int expected_with_partial_spends_size,
98 int expected_without_partial_spends_size,
99 bool positive_only)
100 {
101 // First avoid partial spends
102 GroupVerify(type, filter, /*avoid_partial_spends=*/false, positive_only, expected_with_partial_spends_size);
103 // Second don't avoid partial spends
104 GroupVerify(type, filter, /*avoid_partial_spends=*/true, positive_only, expected_without_partial_spends_size);
105 }
106};
107
108BOOST_AUTO_TEST_CASE(outputs_grouping_tests)
109{
110 const auto& wallet = NewWallet(m_node);
111 GroupVerifier group_verifier;
112 group_verifier.wallet = wallet;
113
114 const CoinEligibilityFilter& BASIC_FILTER{1, 6, 0};
115
116 // #################################################################################
117 // 10 outputs from different txs going to the same script
118 // 1) if partial spends is enabled --> must not be grouped
119 // 2) if partial spends is not enabled --> must be grouped into a single OutputGroup
120 // #################################################################################
121
122 unsigned long GROUP_SIZE = 10;
123 const CTxDestination dest = *Assert(wallet->GetNewDestination(OutputType::BECH32, ""));
124 for (unsigned long i = 0; i < GROUP_SIZE; i++) {
125 addCoin(group_verifier.coins_pool, *wallet, dest, 10 * COIN, /*is_from_me=*/true);
126 }
127
128 group_verifier.GroupAndVerify(OutputType::BECH32,
129 BASIC_FILTER,
130 /*expected_with_partial_spends_size=*/ GROUP_SIZE,
131 /*expected_without_partial_spends_size=*/ 1,
132 /*positive_only=*/ true);
133
134 // ####################################################################################
135 // 3) 10 more UTXO are added with a different script --> must be grouped into a single
136 // group for avoid partial spends and 10 different output groups for partial spends
137 // ####################################################################################
138
139 const CTxDestination dest2 = *Assert(wallet->GetNewDestination(OutputType::BECH32, ""));
140 for (unsigned long i = 0; i < GROUP_SIZE; i++) {
141 addCoin(group_verifier.coins_pool, *wallet, dest2, 5 * COIN, /*is_from_me=*/true);
142 }
143
144 group_verifier.GroupAndVerify(OutputType::BECH32,
145 BASIC_FILTER,
146 /*expected_with_partial_spends_size=*/ GROUP_SIZE * 2,
147 /*expected_without_partial_spends_size=*/ 2,
148 /*positive_only=*/ true);
149
150 // ################################################################################
151 // 4) Now add a negative output --> which will be skipped if "positive_only" is set
152 // ################################################################################
153
154 const CTxDestination dest3 = *Assert(wallet->GetNewDestination(OutputType::BECH32, ""));
155 addCoin(group_verifier.coins_pool, *wallet, dest3, 1, true, CFeeRate(100));
156 BOOST_CHECK(group_verifier.coins_pool.coins[OutputType::BECH32].back().GetEffectiveValue() <= 0);
157
158 // First expect no changes with "positive_only" enabled
159 group_verifier.GroupAndVerify(OutputType::BECH32,
160 BASIC_FILTER,
161 /*expected_with_partial_spends_size=*/ GROUP_SIZE * 2,
162 /*expected_without_partial_spends_size=*/ 2,
163 /*positive_only=*/ true);
164
165 // Then expect changes with "positive_only" disabled
166 group_verifier.GroupAndVerify(OutputType::BECH32,
167 BASIC_FILTER,
168 /*expected_with_partial_spends_size=*/ GROUP_SIZE * 2 + 1,
169 /*expected_without_partial_spends_size=*/ 3,
170 /*positive_only=*/ false);
171
172
173 // ##############################################################################
174 // 5) Try to add a non-eligible UTXO (due not fulfilling the min depth target for
175 // "not mine" UTXOs) --> it must not be added to any group
176 // ##############################################################################
177
178 const CTxDestination dest4 = *Assert(wallet->GetNewDestination(OutputType::BECH32, ""));
179 addCoin(group_verifier.coins_pool, *wallet, dest4, 6 * COIN,
180 /*is_from_me=*/false, CFeeRate(0), /*depth=*/5);
181
182 // Expect no changes from this round and the previous one (point 4)
183 group_verifier.GroupAndVerify(OutputType::BECH32,
184 BASIC_FILTER,
185 /*expected_with_partial_spends_size=*/ GROUP_SIZE * 2 + 1,
186 /*expected_without_partial_spends_size=*/ 3,
187 /*positive_only=*/ false);
188
189
190 // ##############################################################################
191 // 6) Try to add a non-eligible UTXO (due not fulfilling the min depth target for
192 // "mine" UTXOs) --> it must not be added to any group
193 // ##############################################################################
194
195 const CTxDestination dest5 = *Assert(wallet->GetNewDestination(OutputType::BECH32, ""));
196 addCoin(group_verifier.coins_pool, *wallet, dest5, 6 * COIN,
197 /*is_from_me=*/true, CFeeRate(0), /*depth=*/0);
198
199 // Expect no changes from this round and the previous one (point 5)
200 group_verifier.GroupAndVerify(OutputType::BECH32,
201 BASIC_FILTER,
202 /*expected_with_partial_spends_size=*/ GROUP_SIZE * 2 + 1,
203 /*expected_without_partial_spends_size=*/ 3,
204 /*positive_only=*/ false);
205
206 // ###########################################################################################
207 // 7) Surpass the OUTPUT_GROUP_MAX_ENTRIES and verify that a second partial group gets created
208 // ###########################################################################################
209
210 const CTxDestination dest7 = *Assert(wallet->GetNewDestination(OutputType::BECH32, ""));
211 uint16_t NUM_SINGLE_ENTRIES = 101;
212 for (unsigned long i = 0; i < NUM_SINGLE_ENTRIES; i++) { // OUTPUT_GROUP_MAX_ENTRIES{100}
213 addCoin(group_verifier.coins_pool, *wallet, dest7, 9 * COIN, /*is_from_me=*/true);
214 }
215
216 // Exclude partial groups only adds one more group to the previous test case (point 6)
217 int PREVIOUS_ROUND_COUNT = GROUP_SIZE * 2 + 1;
218 group_verifier.GroupAndVerify(OutputType::BECH32,
219 BASIC_FILTER,
220 /*expected_with_partial_spends_size=*/ PREVIOUS_ROUND_COUNT + NUM_SINGLE_ENTRIES,
221 /*expected_without_partial_spends_size=*/ 4,
222 /*positive_only=*/ false);
223
224 // Include partial groups should add one more group inside the "avoid partial spends" count
225 const CoinEligibilityFilter& avoid_partial_groups_filter{1, 6, 0, 0, /*include_partial=*/ true};
226 group_verifier.GroupAndVerify(OutputType::BECH32,
227 avoid_partial_groups_filter,
228 /*expected_with_partial_spends_size=*/ PREVIOUS_ROUND_COUNT + NUM_SINGLE_ENTRIES,
229 /*expected_without_partial_spends_size=*/ 5,
230 /*positive_only=*/ false);
231}
232
234} // end namespace wallet
CScript GetScriptForDestination(const CTxDestination &dest)
Generate a Bitcoin scriptPubKey for the given CTxDestination.
std::variant< CNoDestination, PubKeyDestination, PKHash, ScriptHash, WitnessV0ScriptHash, WitnessV0KeyHash, WitnessV1Taproot, PayToAnchor, WitnessUnknown > CTxDestination
A txout script categorized into standard templates.
Definition: addresstype.h:143
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
int ret
node::NodeContext m_node
Definition: bitcoin-gui.cpp:42
#define Assert(val)
Identity function.
Definition: check.h:106
Fee rate in satoshis per virtualbyte: CAmount / vB the feerate is represented internally as FeeFrac.
Definition: feerate.h:35
An outpoint - a combination of a transaction hash and an index n into its vout.
Definition: transaction.h:29
Fast randomness source.
Definition: random.h:386
A CWallet maintains a set of transactions and balances, and provides the ability to create new transa...
Definition: wallet.h:311
A transaction with a bunch of additional info that only the owner cares about.
Definition: transaction.h:195
const Txid & GetHash() const LIFETIMEBOUND
Definition: transaction.h:364
CTransactionRef tx
Definition: transaction.h:267
int64_t GetTxTime() const
Definition: transaction.cpp:32
void GroupAndVerify(const OutputType type, const CoinEligibilityFilter &filter, int expected_with_partial_spends_size, int expected_without_partial_spends_size, bool positive_only)
void GroupVerify(const OutputType type, const CoinEligibilityFilter &filter, bool avoid_partial_spends, bool positive_only, int expected_size)
std::shared_ptr< CWallet > wallet
BOOST_FIXTURE_TEST_SUITE(cuckoocache_tests, BasicTestingSetup)
Test Suite for CuckooCache.
BOOST_AUTO_TEST_SUITE_END()
Definition: messages.h:20
FilteredOutputGroups GroupOutputs(const CWallet &wallet, const CoinsResult &coins, const CoinSelectionParams &coin_sel_params, const std::vector< SelectionFilter > &filters, std::vector< OutputGroup > &ret_discarded_groups)
Definition: spend.cpp:568
static std::unique_ptr< CWallet > NewWallet(const node::NodeContext &m_node, const std::string &wallet_name="")
std::unique_ptr< WalletDatabase > CreateMockableWalletDatabase(MockableData records)
Definition: util.cpp:186
BOOST_AUTO_TEST_CASE(bnb_test)
CoinSelectionParams makeSelectionParams(FastRandomContext &rand, bool avoid_partial_spends)
@ WALLET_FLAG_DESCRIPTORS
Indicate that this wallet supports DescriptorScriptPubKeyMan.
Definition: walletutil.h:53
static int nextLockTime
int CalculateMaximumSignedInputSize(const CTxOut &txout, const COutPoint outpoint, const SigningProvider *provider, bool can_grind_r, const CCoinControl *coin_control)
Definition: spend.cpp:92
static void addCoin(CoinsResult &coins, CWallet &wallet, const CTxDestination &dest, const CAmount &nValue, bool is_from_me, CFeeRate fee_rate=CFeeRate(0), int depth=6)
#define BOOST_CHECK_EQUAL(v1, v2)
Definition: object.cpp:18
#define BOOST_CHECK(expr)
Definition: object.cpp:17
std::optional< OutputType > OutputTypeFromDestination(const CTxDestination &dest)
Get the OutputType for a CTxDestination.
Definition: outputtype.cpp:80
OutputType
Definition: outputtype.h:17
static CTransactionRef MakeTransactionRef(Tx &&txIn)
Definition: transaction.h:424
static constexpr CAmount CENT
Definition: setup_common.h:47
A mutable version of CTransaction.
Definition: transaction.h:378
std::vector< CTxOut > vout
Definition: transaction.h:380
Txid GetHash() const
Compute the hash of this CMutableTransaction.
Definition: transaction.cpp:69
Testing setup that configures a complete environment.
Definition: setup_common.h:121
std::unique_ptr< interfaces::Chain > chain
Definition: context.h:76
Parameters for filtering which OutputGroups we may use in coin selection.
Parameters for one iteration of Coin Selection.
COutputs available for spending, stored by OutputType.
Definition: spend.h:45
void Add(OutputType type, const COutput &out)
Definition: spend.cpp:240
std::map< OutputType, std::vector< COutput > > coins
Definition: spend.h:46
Stores several 'Groups' whose were mapped by output type.
std::map< OutputType, Groups > groups_by_type
State of transaction not confirmed or conflicting with a known block and not in the mempool.
Definition: transaction.h:59
#define LOCK(cs)
Definition: sync.h:259
assert(!tx.IsCoinBase())