11 #include <boost/test/unit_test.hpp> 15 BOOST_AUTO_TEST_SUITE(walletload_tests)
24 std::string
ToString(
bool compat_format)
const override {
return desc; }
27 bool IsRange()
const override {
return false; }
36 std::optional<int64_t>
ScriptSize()
const override {
return {}; }
39 void GetPubKeys(std::set<CPubKey>& pubkeys, std::set<CExtPubKey>& ext_pubs)
const override {}
40 std::vector<std::string>
Warnings()
const override {
return {}; }
48 std::vector<bilingual_str> _warnings;
53 std::string unknown_desc =
"trx(tpubD6NzVbkrYhZ4Y4S7m6Y5s9GD8FqEMBy56AGphZXuagajudVZEnYyBahZMgHNCTJc2at82YX6s8JiL1Lohu5A3v1Ur76qguNH4QVQ7qYrBQx/86'/1'/0'/0/*)#8pn8tzdt";
54 WalletDescriptor wallet_descriptor(std::make_shared<DummyDescriptor>(unknown_desc), 0, 0, 0, 0);
72 DebugLogHelper logHelper(
"The descriptor ID calculated by the wallet differs from the one in DB", [&](
const std::string*
s) {
80 std::string desc =
"wpkh([d34db33f/84h/0h/0h]xpub6DJ2dNUysrn5Vt36jH2KLBT2i1auw1tTSSomg8PhqNiUtx8QX2SvC9nrHu81fT41fvDUnhMjEzQgXnQjKEu3oaqMSzhSrHMxyyoEAmUHQbY/0/*)#cjjspncu";
81 WalletDescriptor wallet_descriptor(std::make_shared<DummyDescriptor>(desc), 0, 0, 0, 0);
bool Expand(int pos, const SigningProvider &provider, std::vector< CScript > &output_scripts, FlatSigningProvider &out, DescriptorCache *write_cache=nullptr) const override
Expand a descriptor at a specified position.
std::unique_ptr< interfaces::Chain > chain
bool ToNormalizedString(const SigningProvider &provider, std::string &out, const DescriptorCache *cache=nullptr) const override
Convert the descriptor to a normalized string.
bool IsSolvable() const override
Whether this descriptor has all information about signing ignoring lack of private keys...
std::string ToString(bool compat_format) const override
Convert the descriptor back to a string, undoing parsing.
std::optional< int64_t > MaxSatisfactionWeight(bool) const override
Get the maximum size of a satisfaction for this descriptor, in weight units.
Access to the wallet database.
bool WriteDescriptor(const uint256 &desc_id, const WalletDescriptor &descriptor)
void GetPubKeys(std::set< CPubKey > &pubkeys, std::set< CExtPubKey > &ext_pubs) const override
Return all (extended) public keys for this descriptor, including any from subdescriptors.
std::optional< int64_t > MaxSatisfactionElems() const override
Get the maximum size number of stack elements for satisfying this descriptor.
size_t GetKeyCount() const override
Get the number of key expressions in this descriptor.
bool ExpandFromCache(int pos, const DescriptorCache &read_cache, std::vector< CScript > &output_scripts, FlatSigningProvider &out) const override
Expand a descriptor at a specified position using cached expansion data.
bool WriteActiveScriptPubKeyMan(uint8_t type, const uint256 &id, bool internal)
BOOST_AUTO_TEST_SUITE_END()
A CWallet maintains a set of transactions and balances, and provides the ability to create new transa...
std::optional< int64_t > ScriptSize() const override
Get the size of the scriptPubKey for this descriptor.
uint32_t GetMaxKeyExpr() const override
Get the maximum key expression index.
bool IsSingleType() const override
Whether this descriptor will return one scriptPubKey or multiple (aka is or is not combo) ...
Descriptor with some wallet metadata.
BOOST_FIXTURE_TEST_CASE(wallet_coinsresult_test, BasicTestingSetup)
std::unique_ptr< WalletDatabase > CreateMockableWalletDatabase(MockableData records)
An interface to be implemented by keystores that support signing.
#define BOOST_CHECK_EQUAL(v1, v2)
Cache for single descriptor's derived extended pubkeys.
DummyDescriptor(const std::string &descriptor)
bool IsRange() const override
Whether the expansion of this descriptor depends on the position.
bool ToPrivateString(const SigningProvider &provider, std::string &out) const override
Convert the descriptor to a private string.
std::optional< OutputType > GetOutputType() const override
bool HavePrivateKeys(const SigningProvider &) const override
Whether the given provider has all private keys required by this descriptor.
std::vector< std::string > Warnings() const override
Semantic/safety warnings (includes subdescriptors).
void ExpandPrivate(int pos, const SigningProvider &provider, FlatSigningProvider &out) const override
Expand the private key for a descriptor at a specified position, if possible.
Testing setup that configures a complete environment.
Interface for parsed descriptor objects.
#define BOOST_CHECK(expr)