Bitcoin Core 28.99.0
P2P Digital Currency
util.cpp
Go to the documentation of this file.
1// Copyright (c) 2021-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 <wallet/test/util.h>
6
7#include <chain.h>
8#include <key.h>
9#include <key_io.h>
10#include <streams.h>
12#include <validationinterface.h>
13#include <wallet/context.h>
14#include <wallet/wallet.h>
15#include <wallet/walletdb.h>
16
17#include <memory>
18
19namespace wallet {
20std::unique_ptr<CWallet> CreateSyncedWallet(interfaces::Chain& chain, CChain& cchain, const CKey& key)
21{
22 auto wallet = std::make_unique<CWallet>(&chain, "", CreateMockableWalletDatabase());
23 {
24 LOCK2(wallet->cs_wallet, ::cs_main);
25 wallet->SetLastBlockProcessed(cchain.Height(), cchain.Tip()->GetBlockHash());
26 }
27 {
28 LOCK(wallet->cs_wallet);
29 wallet->SetWalletFlag(WALLET_FLAG_DESCRIPTORS);
30 wallet->SetupDescriptorScriptPubKeyMans();
31
32 FlatSigningProvider provider;
33 std::string error;
34 auto descs = Parse("combo(" + EncodeSecret(key) + ")", provider, error, /* require_checksum=*/ false);
35 assert(descs.size() == 1);
36 auto& desc = descs.at(0);
37 WalletDescriptor w_desc(std::move(desc), 0, 0, 1, 1);
38 if (!wallet->AddWalletDescriptor(w_desc, provider, "", false)) assert(false);
39 }
41 reserver.reserve();
42 CWallet::ScanResult result = wallet->ScanForWalletTransactions(cchain.Genesis()->GetBlockHash(), /*start_height=*/0, /*max_height=*/{}, reserver, /*fUpdate=*/false, /*save_progress=*/false);
44 assert(result.last_scanned_block == cchain.Tip()->GetBlockHash());
45 assert(*result.last_scanned_height == cchain.Height());
47 return wallet;
48}
49
50std::shared_ptr<CWallet> TestLoadWallet(std::unique_ptr<WalletDatabase> database, WalletContext& context, uint64_t create_flags)
51{
52 bilingual_str error;
53 std::vector<bilingual_str> warnings;
54 auto wallet = CWallet::Create(context, "", std::move(database), create_flags, error, warnings);
55 NotifyWalletLoaded(context, wallet);
56 if (context.chain) {
57 wallet->postInitProcess();
58 }
59 return wallet;
60}
61
62std::shared_ptr<CWallet> TestLoadWallet(WalletContext& context)
63{
64 DatabaseOptions options;
66 DatabaseStatus status;
67 bilingual_str error;
68 std::vector<bilingual_str> warnings;
69 auto database = MakeWalletDatabase("", options, status, error);
70 return TestLoadWallet(std::move(database), context, options.create_flags);
71}
72
73void TestUnloadWallet(std::shared_ptr<CWallet>&& wallet)
74{
75 // Calls SyncWithValidationInterfaceQueue
76 wallet->chain().waitForNotificationsIfTipChanged({});
77 wallet->m_chain_notifications_handler.reset();
78 WaitForDeleteWallet(std::move(wallet));
79}
80
81std::unique_ptr<WalletDatabase> DuplicateMockDatabase(WalletDatabase& database)
82{
83 return std::make_unique<MockableDatabase>(dynamic_cast<MockableDatabase&>(database).m_records);
84}
85
86std::string getnewaddress(CWallet& w)
87{
88 constexpr auto output_type = OutputType::BECH32;
89 return EncodeDestination(getNewDestination(w, output_type));
90}
91
93{
94 return *Assert(w.GetNewDestination(output_type, ""));
95}
96
98{
99 m_pass = pass;
100 std::tie(m_cursor, m_cursor_end) = records.equal_range(BytePrefix{prefix});
101}
102
104{
105 if (!m_pass) {
106 return Status::FAIL;
107 }
108 if (m_cursor == m_cursor_end) {
109 return Status::DONE;
110 }
111 key.clear();
112 value.clear();
113 const auto& [key_data, value_data] = *m_cursor;
114 key.write(key_data);
115 value.write(value_data);
116 m_cursor++;
117 return Status::MORE;
118}
119
121{
122 if (!m_pass) {
123 return false;
124 }
125 SerializeData key_data{key.begin(), key.end()};
126 const auto& it = m_records.find(key_data);
127 if (it == m_records.end()) {
128 return false;
129 }
130 value.clear();
131 value.write(it->second);
132 return true;
133}
134
135bool MockableBatch::WriteKey(DataStream&& key, DataStream&& value, bool overwrite)
136{
137 if (!m_pass) {
138 return false;
139 }
140 SerializeData key_data{key.begin(), key.end()};
141 SerializeData value_data{value.begin(), value.end()};
142 auto [it, inserted] = m_records.emplace(key_data, value_data);
143 if (!inserted && overwrite) { // Overwrite if requested
144 it->second = value_data;
145 inserted = true;
146 }
147 return inserted;
148}
149
151{
152 if (!m_pass) {
153 return false;
154 }
155 SerializeData key_data{key.begin(), key.end()};
156 m_records.erase(key_data);
157 return true;
158}
159
161{
162 if (!m_pass) {
163 return false;
164 }
165 SerializeData key_data{key.begin(), key.end()};
166 return m_records.count(key_data) > 0;
167}
168
170{
171 if (!m_pass) {
172 return false;
173 }
174 auto it = m_records.begin();
175 while (it != m_records.end()) {
176 auto& key = it->first;
177 if (key.size() < prefix.size() || std::search(key.begin(), key.end(), prefix.begin(), prefix.end()) != key.begin()) {
178 it++;
179 continue;
180 }
181 it = m_records.erase(it);
182 }
183 return true;
184}
185
186std::unique_ptr<WalletDatabase> CreateMockableWalletDatabase(MockableData records)
187{
188 return std::make_unique<MockableDatabase>(records);
189}
190
192{
193 return dynamic_cast<MockableDatabase&>(wallet.GetDatabase());
194}
195} // namespace wallet
std::variant< CNoDestination, PubKeyDestination, PKHash, ScriptHash, WitnessV0ScriptHash, WitnessV0KeyHash, WitnessV1Taproot, PayToAnchor, WitnessUnknown > CTxDestination
A txout script categorized into standard templates.
Definition: addresstype.h:140
#define Assert(val)
Identity function.
Definition: check.h:85
uint256 GetBlockHash() const
Definition: chain.h:243
An in-memory indexed chain of blocks.
Definition: chain.h:417
CBlockIndex * Tip() const
Returns the index entry for the tip of this chain, or nullptr if none.
Definition: chain.h:433
CBlockIndex * Genesis() const
Returns the index entry for the genesis block of this chain, or nullptr if none.
Definition: chain.h:427
int Height() const
Return the maximal height in the chain.
Definition: chain.h:462
An encapsulated private key.
Definition: key.h:35
Double ended buffer combining vector and stream-like interfaces.
Definition: streams.h:147
void write(Span< const value_type > src)
Definition: streams.h:251
void clear()
Definition: streams.h:187
constexpr bool IsNull() const
Definition: uint256.h:48
Interface giving clients (wallet processes, maybe other analysis tools in the future) ability to acce...
Definition: chain.h:129
A CWallet maintains a set of transactions and balances, and provides the ability to create new transa...
Definition: wallet.h:300
static std::shared_ptr< CWallet > Create(WalletContext &context, const std::string &name, std::unique_ptr< WalletDatabase > database, uint64_t wallet_creation_flags, bilingual_str &error, std::vector< bilingual_str > &warnings)
Definition: wallet.cpp:2983
bool ReadKey(DataStream &&key, DataStream &value) override
Definition: util.cpp:120
bool EraseKey(DataStream &&key) override
Definition: util.cpp:150
bool HasKey(DataStream &&key) override
Definition: util.cpp:160
bool ErasePrefix(Span< const std::byte > prefix) override
Definition: util.cpp:169
MockableData & m_records
Definition: util.h:72
bool WriteKey(DataStream &&key, DataStream &&value, bool overwrite=true) override
Definition: util.cpp:135
MockableCursor(const MockableData &records, bool pass)
Definition: util.h:62
MockableData::const_iterator m_cursor_end
Definition: util.h:59
MockableData::const_iterator m_cursor
Definition: util.h:58
Status Next(DataStream &key, DataStream &value) override
Definition: util.cpp:103
A WalletDatabase whose contents and return values can be modified as needed for testing.
Definition: util.h:104
An instance of this class represents one database.
Definition: db.h:131
Descriptor with some wallet metadata.
Definition: walletutil.h:85
RAII object to check and reserve a wallet rescan.
Definition: wallet.h:1080
bool reserve(bool with_passphrase=false)
Definition: wallet.h:1090
static UniValue Parse(std::string_view raw)
Parse string to UniValue or throw runtime_error if string contains invalid JSON.
Definition: client.cpp:327
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
Definition: cs_main.cpp:8
util::Result< CTxDestination > GetNewDestination(const OutputType type, const std::string label)
Definition: wallet.cpp:2566
std::string EncodeSecret(const CKey &key)
Definition: key_io.cpp:231
std::string EncodeDestination(const CTxDestination &dest)
Definition: key_io.cpp:294
std::shared_ptr< CWallet > TestLoadWallet(std::unique_ptr< WalletDatabase > database, WalletContext &context, uint64_t create_flags)
Definition: util.cpp:50
std::unique_ptr< CWallet > CreateSyncedWallet(interfaces::Chain &chain, CChain &cchain, const CKey &key)
Definition: util.cpp:20
void TestUnloadWallet(std::shared_ptr< CWallet > &&wallet)
Definition: util.cpp:73
std::unique_ptr< WalletDatabase > MakeWalletDatabase(const std::string &name, const DatabaseOptions &options, DatabaseStatus &status, bilingual_str &error_string)
Definition: wallet.cpp:2972
MockableDatabase & GetMockableDatabase(CWallet &wallet)
Definition: util.cpp:191
void NotifyWalletLoaded(WalletContext &context, const std::shared_ptr< CWallet > &wallet)
Definition: wallet.cpp:220
std::unique_ptr< WalletDatabase > CreateMockableWalletDatabase(MockableData records)
Definition: util.cpp:186
std::unique_ptr< WalletDatabase > DuplicateMockDatabase(WalletDatabase &database)
Definition: util.cpp:81
@ WALLET_FLAG_DESCRIPTORS
Indicate that this wallet supports DescriptorScriptPubKeyMan.
Definition: walletutil.h:74
void WaitForDeleteWallet(std::shared_ptr< CWallet > &&wallet)
Explicitly delete the wallet.
Definition: wallet.cpp:252
RPCHelpMan getnewaddress()
Definition: addresses.cpp:21
std::map< SerializeData, SerializeData, std::less<> > MockableData
Definition: util.h:53
CTxDestination getNewDestination(CWallet &w, OutputType output_type)
Returns a new destination, of an specific type, from the wallet.
Definition: util.cpp:92
DatabaseStatus
Definition: db.h:205
OutputType
Definition: outputtype.h:17
const char * prefix
Definition: rest.cpp:1009
Bilingual messages:
Definition: translation.h:21
std::optional< int > last_scanned_height
Definition: wallet.h:625
enum wallet::CWallet::ScanResult::@19 status
uint256 last_scanned_block
Hash and height of most recent block that was successfully scanned.
Definition: wallet.h:624
uint256 last_failed_block
Height of the most recent block that could not be scanned due to read errors or pruning.
Definition: wallet.h:631
uint64_t create_flags
Definition: db.h:195
WalletContext struct containing references to state shared between CWallet instances,...
Definition: context.h:36
interfaces::Chain * chain
Definition: context.h:37
#define LOCK2(cs1, cs2)
Definition: sync.h:258
#define LOCK(cs)
Definition: sync.h:257
assert(!tx.IsCoinBase())
std::vector< std::byte, zero_after_free_allocator< std::byte > > SerializeData
Byte-vector that clears its contents before deletion.
Definition: zeroafterfree.h:49