mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-19 06:43:45 +01:00
Deletes LegacyScriptPubKeyMan and related tests Best reviewed with `git diff --patience` or `git diff --histogram`
287 lines
10 KiB
C++
287 lines
10 KiB
C++
// Copyright (c) 2017-2022 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <key.h>
|
|
#include <key_io.h>
|
|
#include <node/context.h>
|
|
#include <script/script.h>
|
|
#include <script/solver.h>
|
|
#include <script/signingprovider.h>
|
|
#include <test/util/setup_common.h>
|
|
#include <wallet/types.h>
|
|
#include <wallet/wallet.h>
|
|
#include <wallet/test/util.h>
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
using namespace util::hex_literals;
|
|
|
|
namespace wallet {
|
|
BOOST_FIXTURE_TEST_SUITE(ismine_tests, BasicTestingSetup)
|
|
|
|
BOOST_AUTO_TEST_CASE(ismine_standard)
|
|
{
|
|
CKey keys[2];
|
|
CPubKey pubkeys[2];
|
|
for (int i = 0; i < 2; i++) {
|
|
keys[i].MakeNewKey(true);
|
|
pubkeys[i] = keys[i].GetPubKey();
|
|
}
|
|
|
|
CKey uncompressedKey = GenerateRandomKey(/*compressed=*/false);
|
|
CPubKey uncompressedPubkey = uncompressedKey.GetPubKey();
|
|
std::unique_ptr<interfaces::Chain>& chain = m_node.chain;
|
|
|
|
CScript scriptPubKey;
|
|
isminetype result;
|
|
|
|
// P2PK compressed - Descriptor
|
|
{
|
|
CWallet keystore(chain.get(), "", CreateMockableWalletDatabase());
|
|
std::string desc_str = "pk(" + EncodeSecret(keys[0]) + ")";
|
|
|
|
auto spk_manager = CreateDescriptor(keystore, desc_str, true);
|
|
|
|
scriptPubKey = GetScriptForRawPubKey(pubkeys[0]);
|
|
result = spk_manager->IsMine(scriptPubKey);
|
|
BOOST_CHECK_EQUAL(result, ISMINE_SPENDABLE);
|
|
}
|
|
|
|
// P2PK uncompressed - Descriptor
|
|
{
|
|
CWallet keystore(chain.get(), "", CreateMockableWalletDatabase());
|
|
std::string desc_str = "pk(" + EncodeSecret(uncompressedKey) + ")";
|
|
|
|
auto spk_manager = CreateDescriptor(keystore, desc_str, true);
|
|
|
|
scriptPubKey = GetScriptForRawPubKey(uncompressedPubkey);
|
|
result = spk_manager->IsMine(scriptPubKey);
|
|
BOOST_CHECK_EQUAL(result, ISMINE_SPENDABLE);
|
|
}
|
|
|
|
// P2PKH compressed - Descriptor
|
|
{
|
|
CWallet keystore(chain.get(), "", CreateMockableWalletDatabase());
|
|
std::string desc_str = "pkh(" + EncodeSecret(keys[0]) + ")";
|
|
|
|
auto spk_manager = CreateDescriptor(keystore, desc_str, true);
|
|
|
|
scriptPubKey = GetScriptForDestination(PKHash(pubkeys[0]));
|
|
result = spk_manager->IsMine(scriptPubKey);
|
|
BOOST_CHECK_EQUAL(result, ISMINE_SPENDABLE);
|
|
}
|
|
|
|
// P2PKH uncompressed - Descriptor
|
|
{
|
|
CWallet keystore(chain.get(), "", CreateMockableWalletDatabase());
|
|
std::string desc_str = "pkh(" + EncodeSecret(uncompressedKey) + ")";
|
|
|
|
auto spk_manager = CreateDescriptor(keystore, desc_str, true);
|
|
|
|
scriptPubKey = GetScriptForDestination(PKHash(uncompressedPubkey));
|
|
result = spk_manager->IsMine(scriptPubKey);
|
|
BOOST_CHECK_EQUAL(result, ISMINE_SPENDABLE);
|
|
}
|
|
|
|
// P2SH - Descriptor
|
|
{
|
|
CWallet keystore(chain.get(), "", CreateMockableWalletDatabase());
|
|
std::string desc_str = "sh(pkh(" + EncodeSecret(keys[0]) + "))";
|
|
|
|
auto spk_manager = CreateDescriptor(keystore, desc_str, true);
|
|
|
|
CScript redeemScript = GetScriptForDestination(PKHash(pubkeys[0]));
|
|
scriptPubKey = GetScriptForDestination(ScriptHash(redeemScript));
|
|
result = spk_manager->IsMine(scriptPubKey);
|
|
BOOST_CHECK_EQUAL(result, ISMINE_SPENDABLE);
|
|
}
|
|
|
|
// (P2PKH inside) P2SH inside P2SH (invalid) - Descriptor
|
|
{
|
|
CWallet keystore(chain.get(), "", CreateMockableWalletDatabase());
|
|
std::string desc_str = "sh(sh(" + EncodeSecret(keys[0]) + "))";
|
|
|
|
auto spk_manager = CreateDescriptor(keystore, desc_str, false);
|
|
BOOST_CHECK_EQUAL(spk_manager, nullptr);
|
|
}
|
|
|
|
// (P2PKH inside) P2SH inside P2WSH (invalid) - Descriptor
|
|
{
|
|
CWallet keystore(chain.get(), "", CreateMockableWalletDatabase());
|
|
std::string desc_str = "wsh(sh(" + EncodeSecret(keys[0]) + "))";
|
|
|
|
auto spk_manager = CreateDescriptor(keystore, desc_str, false);
|
|
BOOST_CHECK_EQUAL(spk_manager, nullptr);
|
|
}
|
|
|
|
// P2WPKH inside P2WSH (invalid) - Descriptor
|
|
{
|
|
CWallet keystore(chain.get(), "", CreateMockableWalletDatabase());
|
|
std::string desc_str = "wsh(wpkh(" + EncodeSecret(keys[0]) + "))";
|
|
|
|
auto spk_manager = CreateDescriptor(keystore, desc_str, false);
|
|
BOOST_CHECK_EQUAL(spk_manager, nullptr);
|
|
}
|
|
|
|
// (P2PKH inside) P2WSH inside P2WSH (invalid) - Descriptor
|
|
{
|
|
CWallet keystore(chain.get(), "", CreateMockableWalletDatabase());
|
|
std::string desc_str = "wsh(wsh(" + EncodeSecret(keys[0]) + "))";
|
|
|
|
auto spk_manager = CreateDescriptor(keystore, desc_str, false);
|
|
BOOST_CHECK_EQUAL(spk_manager, nullptr);
|
|
}
|
|
|
|
// P2WPKH compressed - Descriptor
|
|
{
|
|
CWallet keystore(chain.get(), "", CreateMockableWalletDatabase());
|
|
std::string desc_str = "wpkh(" + EncodeSecret(keys[0]) + ")";
|
|
|
|
auto spk_manager = CreateDescriptor(keystore, desc_str, true);
|
|
|
|
scriptPubKey = GetScriptForDestination(WitnessV0KeyHash(pubkeys[0]));
|
|
result = spk_manager->IsMine(scriptPubKey);
|
|
BOOST_CHECK_EQUAL(result, ISMINE_SPENDABLE);
|
|
}
|
|
|
|
// P2WPKH uncompressed (invalid) - Descriptor
|
|
{
|
|
CWallet keystore(chain.get(), "", CreateMockableWalletDatabase());
|
|
std::string desc_str = "wpkh(" + EncodeSecret(uncompressedKey) + ")";
|
|
|
|
auto spk_manager = CreateDescriptor(keystore, desc_str, false);
|
|
BOOST_CHECK_EQUAL(spk_manager, nullptr);
|
|
}
|
|
|
|
// scriptPubKey multisig - Descriptor
|
|
{
|
|
CWallet keystore(chain.get(), "", CreateMockableWalletDatabase());
|
|
std::string desc_str = "multi(2," + EncodeSecret(uncompressedKey) + "," + EncodeSecret(keys[1]) + ")";
|
|
|
|
auto spk_manager = CreateDescriptor(keystore, desc_str, true);
|
|
|
|
scriptPubKey = GetScriptForMultisig(2, {uncompressedPubkey, pubkeys[1]});
|
|
result = spk_manager->IsMine(scriptPubKey);
|
|
BOOST_CHECK_EQUAL(result, ISMINE_SPENDABLE);
|
|
}
|
|
|
|
// P2SH multisig - Descriptor
|
|
{
|
|
CWallet keystore(chain.get(), "", CreateMockableWalletDatabase());
|
|
|
|
std::string desc_str = "sh(multi(2," + EncodeSecret(uncompressedKey) + "," + EncodeSecret(keys[1]) + "))";
|
|
|
|
auto spk_manager = CreateDescriptor(keystore, desc_str, true);
|
|
|
|
CScript redeemScript = GetScriptForMultisig(2, {uncompressedPubkey, pubkeys[1]});
|
|
scriptPubKey = GetScriptForDestination(ScriptHash(redeemScript));
|
|
result = spk_manager->IsMine(scriptPubKey);
|
|
BOOST_CHECK_EQUAL(result, ISMINE_SPENDABLE);
|
|
}
|
|
|
|
// P2WSH multisig with compressed keys - Descriptor
|
|
{
|
|
CWallet keystore(chain.get(), "", CreateMockableWalletDatabase());
|
|
|
|
std::string desc_str = "wsh(multi(2," + EncodeSecret(keys[0]) + "," + EncodeSecret(keys[1]) + "))";
|
|
|
|
auto spk_manager = CreateDescriptor(keystore, desc_str, true);
|
|
|
|
CScript redeemScript = GetScriptForMultisig(2, {pubkeys[0], pubkeys[1]});
|
|
scriptPubKey = GetScriptForDestination(WitnessV0ScriptHash(redeemScript));
|
|
result = spk_manager->IsMine(scriptPubKey);
|
|
BOOST_CHECK_EQUAL(result, ISMINE_SPENDABLE);
|
|
}
|
|
|
|
// P2WSH multisig with uncompressed key (invalid) - Descriptor
|
|
{
|
|
CWallet keystore(chain.get(), "", CreateMockableWalletDatabase());
|
|
|
|
std::string desc_str = "wsh(multi(2," + EncodeSecret(uncompressedKey) + "," + EncodeSecret(keys[1]) + "))";
|
|
|
|
auto spk_manager = CreateDescriptor(keystore, desc_str, false);
|
|
BOOST_CHECK_EQUAL(spk_manager, nullptr);
|
|
}
|
|
|
|
// P2WSH multisig wrapped in P2SH - Descriptor
|
|
{
|
|
CWallet keystore(chain.get(), "", CreateMockableWalletDatabase());
|
|
|
|
std::string desc_str = "sh(wsh(multi(2," + EncodeSecret(keys[0]) + "," + EncodeSecret(keys[1]) + ")))";
|
|
|
|
auto spk_manager = CreateDescriptor(keystore, desc_str, true);
|
|
|
|
CScript witnessScript = GetScriptForMultisig(2, {pubkeys[0], pubkeys[1]});
|
|
CScript redeemScript = GetScriptForDestination(WitnessV0ScriptHash(witnessScript));
|
|
scriptPubKey = GetScriptForDestination(ScriptHash(redeemScript));
|
|
result = spk_manager->IsMine(scriptPubKey);
|
|
BOOST_CHECK_EQUAL(result, ISMINE_SPENDABLE);
|
|
}
|
|
|
|
// Combo - Descriptor
|
|
{
|
|
CWallet keystore(chain.get(), "", CreateMockableWalletDatabase());
|
|
|
|
std::string desc_str = "combo(" + EncodeSecret(keys[0]) + ")";
|
|
|
|
auto spk_manager = CreateDescriptor(keystore, desc_str, true);
|
|
|
|
// Test P2PK
|
|
result = spk_manager->IsMine(GetScriptForRawPubKey(pubkeys[0]));
|
|
BOOST_CHECK_EQUAL(result, ISMINE_SPENDABLE);
|
|
|
|
// Test P2PKH
|
|
result = spk_manager->IsMine(GetScriptForDestination(PKHash(pubkeys[0])));
|
|
BOOST_CHECK_EQUAL(result, ISMINE_SPENDABLE);
|
|
|
|
// Test P2SH (combo descriptor does not describe P2SH)
|
|
CScript redeemScript = GetScriptForDestination(PKHash(pubkeys[0]));
|
|
scriptPubKey = GetScriptForDestination(ScriptHash(redeemScript));
|
|
result = spk_manager->IsMine(scriptPubKey);
|
|
BOOST_CHECK_EQUAL(result, ISMINE_NO);
|
|
|
|
// Test P2WPKH
|
|
scriptPubKey = GetScriptForDestination(WitnessV0KeyHash(pubkeys[0]));
|
|
result = spk_manager->IsMine(scriptPubKey);
|
|
BOOST_CHECK_EQUAL(result, ISMINE_SPENDABLE);
|
|
|
|
// P2SH-P2WPKH output
|
|
redeemScript = GetScriptForDestination(WitnessV0KeyHash(pubkeys[0]));
|
|
scriptPubKey = GetScriptForDestination(ScriptHash(redeemScript));
|
|
result = spk_manager->IsMine(scriptPubKey);
|
|
BOOST_CHECK_EQUAL(result, ISMINE_SPENDABLE);
|
|
|
|
// Test P2TR (combo descriptor does not describe P2TR)
|
|
XOnlyPubKey xpk(pubkeys[0]);
|
|
Assert(xpk.IsFullyValid());
|
|
TaprootBuilder builder;
|
|
builder.Finalize(xpk);
|
|
WitnessV1Taproot output = builder.GetOutput();
|
|
scriptPubKey = GetScriptForDestination(output);
|
|
result = spk_manager->IsMine(scriptPubKey);
|
|
BOOST_CHECK_EQUAL(result, ISMINE_NO);
|
|
}
|
|
|
|
// Taproot - Descriptor
|
|
{
|
|
CWallet keystore(chain.get(), "", CreateMockableWalletDatabase());
|
|
|
|
std::string desc_str = "tr(" + EncodeSecret(keys[0]) + ")";
|
|
|
|
auto spk_manager = CreateDescriptor(keystore, desc_str, true);
|
|
|
|
XOnlyPubKey xpk(pubkeys[0]);
|
|
Assert(xpk.IsFullyValid());
|
|
TaprootBuilder builder;
|
|
builder.Finalize(xpk);
|
|
WitnessV1Taproot output = builder.GetOutput();
|
|
scriptPubKey = GetScriptForDestination(output);
|
|
result = spk_manager->IsMine(scriptPubKey);
|
|
BOOST_CHECK_EQUAL(result, ISMINE_SPENDABLE);
|
|
}
|
|
}
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|
|
} // namespace wallet
|