Bitcoin Core  27.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>
11 #include <test/util/setup_common.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 
19 namespace wallet {
20 std::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  std::unique_ptr<Descriptor> desc = Parse("combo(" + EncodeSecret(key) + ")", provider, error, /* require_checksum=*/ false);
35  assert(desc);
36  WalletDescriptor w_desc(std::move(desc), 0, 0, 1, 1);
37  if (!wallet->AddWalletDescriptor(w_desc, provider, "", false)) assert(false);
38  }
39  WalletRescanReserver reserver(*wallet);
40  reserver.reserve();
41  CWallet::ScanResult result = wallet->ScanForWalletTransactions(cchain.Genesis()->GetBlockHash(), /*start_height=*/0, /*max_height=*/{}, reserver, /*fUpdate=*/false, /*save_progress=*/false);
43  assert(result.last_scanned_block == cchain.Tip()->GetBlockHash());
44  assert(*result.last_scanned_height == cchain.Height());
46  return wallet;
47 }
48 
49 std::shared_ptr<CWallet> TestLoadWallet(std::unique_ptr<WalletDatabase> database, WalletContext& context, uint64_t create_flags)
50 {
51  bilingual_str error;
52  std::vector<bilingual_str> warnings;
53  auto wallet = CWallet::Create(context, "", std::move(database), create_flags, error, warnings);
54  NotifyWalletLoaded(context, wallet);
55  if (context.chain) {
56  wallet->postInitProcess();
57  }
58  return wallet;
59 }
60 
61 std::shared_ptr<CWallet> TestLoadWallet(WalletContext& context)
62 {
63  DatabaseOptions options;
65  DatabaseStatus status;
66  bilingual_str error;
67  std::vector<bilingual_str> warnings;
68  auto database = MakeWalletDatabase("", options, status, error);
69  return TestLoadWallet(std::move(database), context, options.create_flags);
70 }
71 
72 void TestUnloadWallet(std::shared_ptr<CWallet>&& wallet)
73 {
74  // Calls SyncWithValidationInterfaceQueue
75  wallet->chain().waitForNotificationsIfTipChanged({});
76  wallet->m_chain_notifications_handler.reset();
77  UnloadWallet(std::move(wallet));
78 }
79 
80 std::unique_ptr<WalletDatabase> DuplicateMockDatabase(WalletDatabase& database)
81 {
82  return std::make_unique<MockableDatabase>(dynamic_cast<MockableDatabase&>(database).m_records);
83 }
84 
85 std::string getnewaddress(CWallet& w)
86 {
87  constexpr auto output_type = OutputType::BECH32;
88  return EncodeDestination(getNewDestination(w, output_type));
89 }
90 
92 {
93  return *Assert(w.GetNewDestination(output_type, ""));
94 }
95 
97 {
98  m_pass = pass;
99  std::tie(m_cursor, m_cursor_end) = records.equal_range(BytePrefix{prefix});
100 }
101 
103 {
104  if (!m_pass) {
105  return Status::FAIL;
106  }
107  if (m_cursor == m_cursor_end) {
108  return Status::DONE;
109  }
110  key.clear();
111  value.clear();
112  const auto& [key_data, value_data] = *m_cursor;
113  key.write(key_data);
114  value.write(value_data);
115  m_cursor++;
116  return Status::MORE;
117 }
118 
120 {
121  if (!m_pass) {
122  return false;
123  }
124  SerializeData key_data{key.begin(), key.end()};
125  const auto& it = m_records.find(key_data);
126  if (it == m_records.end()) {
127  return false;
128  }
129  value.clear();
130  value.write(it->second);
131  return true;
132 }
133 
134 bool MockableBatch::WriteKey(DataStream&& key, DataStream&& value, bool overwrite)
135 {
136  if (!m_pass) {
137  return false;
138  }
139  SerializeData key_data{key.begin(), key.end()};
140  SerializeData value_data{value.begin(), value.end()};
141  auto [it, inserted] = m_records.emplace(key_data, value_data);
142  if (!inserted && overwrite) { // Overwrite if requested
143  it->second = value_data;
144  inserted = true;
145  }
146  return inserted;
147 }
148 
150 {
151  if (!m_pass) {
152  return false;
153  }
154  SerializeData key_data{key.begin(), key.end()};
155  m_records.erase(key_data);
156  return true;
157 }
158 
160 {
161  if (!m_pass) {
162  return false;
163  }
164  SerializeData key_data{key.begin(), key.end()};
165  return m_records.count(key_data) > 0;
166 }
167 
169 {
170  if (!m_pass) {
171  return false;
172  }
173  auto it = m_records.begin();
174  while (it != m_records.end()) {
175  auto& key = it->first;
176  if (key.size() < prefix.size() || std::search(key.begin(), key.end(), prefix.begin(), prefix.end()) != key.begin()) {
177  it++;
178  continue;
179  }
180  it = m_records.erase(it);
181  }
182  return true;
183 }
184 
185 std::unique_ptr<WalletDatabase> CreateMockableWalletDatabase(MockableData records)
186 {
187  return std::make_unique<MockableDatabase>(records);
188 }
189 
191 {
192  return dynamic_cast<MockableDatabase&>(wallet.GetDatabase());
193 }
194 } // namespace wallet
std::variant< CNoDestination, PubKeyDestination, PKHash, ScriptHash, WitnessV0ScriptHash, WitnessV0KeyHash, WitnessV1Taproot, WitnessUnknown > CTxDestination
A txout script categorized into standard templates.
Definition: addresstype.h:131
#define Assert(val)
Identity function.
Definition: check.h:77
uint256 GetBlockHash() const
Definition: chain.h:244
An in-memory indexed chain of blocks.
Definition: chain.h:418
CBlockIndex * Genesis() const
Returns the index entry for the genesis block of this chain, or nullptr if none.
Definition: chain.h:428
CBlockIndex * Tip() const
Returns the index entry for the tip of this chain, or nullptr if none.
Definition: chain.h:434
int Height() const
Return the maximal height in the chain.
Definition: chain.h:463
An encapsulated private key.
Definition: key.h:33
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:44
Interface giving clients (wallet processes, maybe other analysis tools in the future) ability to acce...
Definition: chain.h:124
A CWallet maintains a set of transactions and balances, and provides the ability to create new transa...
Definition: wallet.h:303
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:2965
bool ReadKey(DataStream &&key, DataStream &value) override
Definition: util.cpp:119
bool EraseKey(DataStream &&key) override
Definition: util.cpp:149
bool HasKey(DataStream &&key) override
Definition: util.cpp:159
bool ErasePrefix(Span< const std::byte > prefix) override
Definition: util.cpp:168
MockableData & m_records
Definition: util.h:72
bool WriteKey(DataStream &&key, DataStream &&value, bool overwrite=true) override
Definition: util.cpp:134
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:102
A WalletDatabase whose contents and return values can be modified as needed for testing.
Definition: util.h:103
An instance of this class represents one database.
Definition: db.h:130
Descriptor with some wallet metadata.
Definition: walletutil.h:85
RAII object to check and reserve a wallet rescan.
Definition: wallet.h:1076
bool reserve(bool with_passphrase=false)
Definition: wallet.h:1086
static UniValue Parse(std::string_view raw)
Parse string to UniValue or throw runtime_error if string contains invalid JSON.
Definition: client.cpp:321
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:2548
std::string EncodeSecret(const CKey &key)
Definition: key_io.cpp:227
std::string EncodeDestination(const CTxDestination &dest)
Definition: key_io.cpp:287
void UnloadWallet(std::shared_ptr< CWallet > &&wallet)
Explicitly unload and delete the wallet.
Definition: wallet.cpp:243
std::shared_ptr< CWallet > TestLoadWallet(std::unique_ptr< WalletDatabase > database, WalletContext &context, uint64_t create_flags)
Definition: util.cpp:49
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:72
std::unique_ptr< WalletDatabase > MakeWalletDatabase(const std::string &name, const DatabaseOptions &options, DatabaseStatus &status, bilingual_str &error_string)
Definition: wallet.cpp:2954
MockableDatabase & GetMockableDatabase(CWallet &wallet)
Definition: util.cpp:190
void NotifyWalletLoaded(WalletContext &context, const std::shared_ptr< CWallet > &wallet)
Definition: wallet.cpp:211
std::unique_ptr< WalletDatabase > CreateMockableWalletDatabase(MockableData records)
Definition: util.cpp:185
std::unique_ptr< WalletDatabase > DuplicateMockDatabase(WalletDatabase &database)
Definition: util.cpp:80
@ WALLET_FLAG_DESCRIPTORS
Indicate that this wallet supports DescriptorScriptPubKeyMan.
Definition: walletutil.h:74
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:91
DatabaseStatus
Definition: db.h:204
std::shared_ptr< CWallet > wallet
OutputType
Definition: outputtype.h:17
const char * prefix
Definition: rest.cpp:1007
Bilingual messages:
Definition: translation.h:18
std::optional< int > last_scanned_height
Definition: wallet.h:625
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
enum wallet::CWallet::ScanResult::@18 status
uint64_t create_flags
Definition: db.h:194
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