2019-04-11 09:53:04 -04:00
|
|
|
// Copyright (c) 2017-2019 The Bitcoin Core developers
|
2017-08-18 18:40:29 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2017-11-09 21:57:53 -03:00
|
|
|
#include <key.h>
|
|
|
|
#include <script/script.h>
|
2019-06-06 16:52:24 -04:00
|
|
|
#include <script/signingprovider.h>
|
2017-11-09 21:57:53 -03:00
|
|
|
#include <script/standard.h>
|
2019-11-05 17:18:59 -03:00
|
|
|
#include <test/util/setup_common.h>
|
2017-08-18 18:40:29 -03:00
|
|
|
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
|
|
|
|
|
|
|
BOOST_FIXTURE_TEST_SUITE(script_standard_tests, BasicTestingSetup)
|
|
|
|
|
2020-05-02 13:59:53 -04:00
|
|
|
BOOST_AUTO_TEST_CASE(dest_default_is_no_dest)
|
|
|
|
{
|
|
|
|
CTxDestination dest;
|
|
|
|
BOOST_CHECK(!IsValidDestination(dest));
|
|
|
|
}
|
|
|
|
|
2017-08-18 18:40:29 -03:00
|
|
|
BOOST_AUTO_TEST_CASE(script_standard_Solver_success)
|
|
|
|
{
|
|
|
|
CKey keys[3];
|
|
|
|
CPubKey pubkeys[3];
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
keys[i].MakeNewKey(true);
|
|
|
|
pubkeys[i] = keys[i].GetPubKey();
|
|
|
|
}
|
|
|
|
|
|
|
|
CScript s;
|
|
|
|
std::vector<std::vector<unsigned char> > solutions;
|
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::PUBKEY
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << ToByteVector(pubkeys[0]) << OP_CHECKSIG;
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(Solver(s, solutions), TxoutType::PUBKEY);
|
2018-04-09 04:50:19 -03:00
|
|
|
BOOST_CHECK_EQUAL(solutions.size(), 1U);
|
2017-08-18 18:40:29 -03:00
|
|
|
BOOST_CHECK(solutions[0] == ToByteVector(pubkeys[0]));
|
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::PUBKEYHASH
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << OP_DUP << OP_HASH160 << ToByteVector(pubkeys[0].GetID()) << OP_EQUALVERIFY << OP_CHECKSIG;
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(Solver(s, solutions), TxoutType::PUBKEYHASH);
|
2018-04-09 04:50:19 -03:00
|
|
|
BOOST_CHECK_EQUAL(solutions.size(), 1U);
|
2017-08-18 18:40:29 -03:00
|
|
|
BOOST_CHECK(solutions[0] == ToByteVector(pubkeys[0].GetID()));
|
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::SCRIPTHASH
|
2017-08-18 18:40:29 -03:00
|
|
|
CScript redeemScript(s); // initialize with leftover P2PKH script
|
|
|
|
s.clear();
|
|
|
|
s << OP_HASH160 << ToByteVector(CScriptID(redeemScript)) << OP_EQUAL;
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(Solver(s, solutions), TxoutType::SCRIPTHASH);
|
2018-04-09 04:50:19 -03:00
|
|
|
BOOST_CHECK_EQUAL(solutions.size(), 1U);
|
2017-08-18 18:40:29 -03:00
|
|
|
BOOST_CHECK(solutions[0] == ToByteVector(CScriptID(redeemScript)));
|
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::MULTISIG
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << OP_1 <<
|
|
|
|
ToByteVector(pubkeys[0]) <<
|
|
|
|
ToByteVector(pubkeys[1]) <<
|
|
|
|
OP_2 << OP_CHECKMULTISIG;
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(Solver(s, solutions), TxoutType::MULTISIG);
|
2018-04-09 04:50:19 -03:00
|
|
|
BOOST_CHECK_EQUAL(solutions.size(), 4U);
|
2017-08-18 18:40:29 -03:00
|
|
|
BOOST_CHECK(solutions[0] == std::vector<unsigned char>({1}));
|
|
|
|
BOOST_CHECK(solutions[1] == ToByteVector(pubkeys[0]));
|
|
|
|
BOOST_CHECK(solutions[2] == ToByteVector(pubkeys[1]));
|
|
|
|
BOOST_CHECK(solutions[3] == std::vector<unsigned char>({2}));
|
|
|
|
|
|
|
|
s.clear();
|
|
|
|
s << OP_2 <<
|
|
|
|
ToByteVector(pubkeys[0]) <<
|
|
|
|
ToByteVector(pubkeys[1]) <<
|
|
|
|
ToByteVector(pubkeys[2]) <<
|
|
|
|
OP_3 << OP_CHECKMULTISIG;
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(Solver(s, solutions), TxoutType::MULTISIG);
|
2018-04-09 04:50:19 -03:00
|
|
|
BOOST_CHECK_EQUAL(solutions.size(), 5U);
|
2017-08-18 18:40:29 -03:00
|
|
|
BOOST_CHECK(solutions[0] == std::vector<unsigned char>({2}));
|
|
|
|
BOOST_CHECK(solutions[1] == ToByteVector(pubkeys[0]));
|
|
|
|
BOOST_CHECK(solutions[2] == ToByteVector(pubkeys[1]));
|
|
|
|
BOOST_CHECK(solutions[3] == ToByteVector(pubkeys[2]));
|
|
|
|
BOOST_CHECK(solutions[4] == std::vector<unsigned char>({3}));
|
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::NULL_DATA
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << OP_RETURN <<
|
|
|
|
std::vector<unsigned char>({0}) <<
|
|
|
|
std::vector<unsigned char>({75}) <<
|
|
|
|
std::vector<unsigned char>({255});
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(Solver(s, solutions), TxoutType::NULL_DATA);
|
2018-04-09 04:50:19 -03:00
|
|
|
BOOST_CHECK_EQUAL(solutions.size(), 0U);
|
2017-08-18 18:40:29 -03:00
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::WITNESS_V0_KEYHASH
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << OP_0 << ToByteVector(pubkeys[0].GetID());
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(Solver(s, solutions), TxoutType::WITNESS_V0_KEYHASH);
|
2018-04-09 04:50:19 -03:00
|
|
|
BOOST_CHECK_EQUAL(solutions.size(), 1U);
|
2017-08-18 18:40:29 -03:00
|
|
|
BOOST_CHECK(solutions[0] == ToByteVector(pubkeys[0].GetID()));
|
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::WITNESS_V0_SCRIPTHASH
|
2017-08-18 18:40:29 -03:00
|
|
|
uint256 scriptHash;
|
2017-08-22 21:47:59 -03:00
|
|
|
CSHA256().Write(&redeemScript[0], redeemScript.size())
|
|
|
|
.Finalize(scriptHash.begin());
|
2017-08-18 18:40:29 -03:00
|
|
|
|
|
|
|
s.clear();
|
|
|
|
s << OP_0 << ToByteVector(scriptHash);
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(Solver(s, solutions), TxoutType::WITNESS_V0_SCRIPTHASH);
|
2018-04-09 04:50:19 -03:00
|
|
|
BOOST_CHECK_EQUAL(solutions.size(), 1U);
|
2017-08-18 18:40:29 -03:00
|
|
|
BOOST_CHECK(solutions[0] == ToByteVector(scriptHash));
|
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::NONSTANDARD
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << OP_9 << OP_ADD << OP_11 << OP_EQUAL;
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(Solver(s, solutions), TxoutType::NONSTANDARD);
|
2017-08-18 18:40:29 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(script_standard_Solver_failure)
|
|
|
|
{
|
|
|
|
CKey key;
|
|
|
|
CPubKey pubkey;
|
|
|
|
key.MakeNewKey(true);
|
|
|
|
pubkey = key.GetPubKey();
|
|
|
|
|
|
|
|
CScript s;
|
|
|
|
std::vector<std::vector<unsigned char> > solutions;
|
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::PUBKEY with incorrectly sized pubkey
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << std::vector<unsigned char>(30, 0x01) << OP_CHECKSIG;
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(Solver(s, solutions), TxoutType::NONSTANDARD);
|
2017-08-18 18:40:29 -03:00
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::PUBKEYHASH with incorrectly sized key hash
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << OP_DUP << OP_HASH160 << ToByteVector(pubkey) << OP_EQUALVERIFY << OP_CHECKSIG;
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(Solver(s, solutions), TxoutType::NONSTANDARD);
|
2017-08-18 18:40:29 -03:00
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::SCRIPTHASH with incorrectly sized script hash
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << OP_HASH160 << std::vector<unsigned char>(21, 0x01) << OP_EQUAL;
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(Solver(s, solutions), TxoutType::NONSTANDARD);
|
2017-08-18 18:40:29 -03:00
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::MULTISIG 0/2
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << OP_0 << ToByteVector(pubkey) << OP_1 << OP_CHECKMULTISIG;
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(Solver(s, solutions), TxoutType::NONSTANDARD);
|
2017-08-18 18:40:29 -03:00
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::MULTISIG 2/1
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << OP_2 << ToByteVector(pubkey) << OP_1 << OP_CHECKMULTISIG;
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(Solver(s, solutions), TxoutType::NONSTANDARD);
|
2017-08-18 18:40:29 -03:00
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::MULTISIG n = 2 with 1 pubkey
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << OP_1 << ToByteVector(pubkey) << OP_2 << OP_CHECKMULTISIG;
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(Solver(s, solutions), TxoutType::NONSTANDARD);
|
2017-08-18 18:40:29 -03:00
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::MULTISIG n = 1 with 0 pubkeys
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << OP_1 << OP_1 << OP_CHECKMULTISIG;
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(Solver(s, solutions), TxoutType::NONSTANDARD);
|
2017-08-18 18:40:29 -03:00
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::NULL_DATA with other opcodes
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << OP_RETURN << std::vector<unsigned char>({75}) << OP_ADD;
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(Solver(s, solutions), TxoutType::NONSTANDARD);
|
2017-08-18 18:40:29 -03:00
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::WITNESS_UNKNOWN with incorrect program size
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << OP_0 << std::vector<unsigned char>(19, 0x01);
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(Solver(s, solutions), TxoutType::NONSTANDARD);
|
2017-08-18 18:40:29 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(script_standard_ExtractDestination)
|
|
|
|
{
|
|
|
|
CKey key;
|
|
|
|
CPubKey pubkey;
|
|
|
|
key.MakeNewKey(true);
|
|
|
|
pubkey = key.GetPubKey();
|
|
|
|
|
|
|
|
CScript s;
|
|
|
|
CTxDestination address;
|
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::PUBKEY
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << ToByteVector(pubkey) << OP_CHECKSIG;
|
|
|
|
BOOST_CHECK(ExtractDestination(s, address));
|
2019-02-19 19:00:45 -03:00
|
|
|
BOOST_CHECK(boost::get<PKHash>(&address) &&
|
|
|
|
*boost::get<PKHash>(&address) == PKHash(pubkey));
|
2017-08-18 18:40:29 -03:00
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::PUBKEYHASH
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << OP_DUP << OP_HASH160 << ToByteVector(pubkey.GetID()) << OP_EQUALVERIFY << OP_CHECKSIG;
|
|
|
|
BOOST_CHECK(ExtractDestination(s, address));
|
2019-02-19 19:00:45 -03:00
|
|
|
BOOST_CHECK(boost::get<PKHash>(&address) &&
|
|
|
|
*boost::get<PKHash>(&address) == PKHash(pubkey));
|
2017-08-18 18:40:29 -03:00
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::SCRIPTHASH
|
2017-08-18 18:40:29 -03:00
|
|
|
CScript redeemScript(s); // initialize with leftover P2PKH script
|
|
|
|
s.clear();
|
|
|
|
s << OP_HASH160 << ToByteVector(CScriptID(redeemScript)) << OP_EQUAL;
|
|
|
|
BOOST_CHECK(ExtractDestination(s, address));
|
2019-02-19 19:00:45 -03:00
|
|
|
BOOST_CHECK(boost::get<ScriptHash>(&address) &&
|
|
|
|
*boost::get<ScriptHash>(&address) == ScriptHash(redeemScript));
|
2017-08-18 18:40:29 -03:00
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::MULTISIG
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << OP_1 << ToByteVector(pubkey) << OP_1 << OP_CHECKMULTISIG;
|
|
|
|
BOOST_CHECK(!ExtractDestination(s, address));
|
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::NULL_DATA
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << OP_RETURN << std::vector<unsigned char>({75});
|
|
|
|
BOOST_CHECK(!ExtractDestination(s, address));
|
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::WITNESS_V0_KEYHASH
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
2017-08-25 23:55:52 -03:00
|
|
|
s << OP_0 << ToByteVector(pubkey.GetID());
|
|
|
|
BOOST_CHECK(ExtractDestination(s, address));
|
|
|
|
WitnessV0KeyHash keyhash;
|
2020-06-18 20:19:46 -04:00
|
|
|
CHash160().Write(pubkey).Finalize(keyhash);
|
2017-08-25 23:55:52 -03:00
|
|
|
BOOST_CHECK(boost::get<WitnessV0KeyHash>(&address) && *boost::get<WitnessV0KeyHash>(&address) == keyhash);
|
2017-08-18 18:40:29 -03:00
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::WITNESS_V0_SCRIPTHASH
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
2017-08-25 23:55:52 -03:00
|
|
|
WitnessV0ScriptHash scripthash;
|
|
|
|
CSHA256().Write(redeemScript.data(), redeemScript.size()).Finalize(scripthash.begin());
|
|
|
|
s << OP_0 << ToByteVector(scripthash);
|
|
|
|
BOOST_CHECK(ExtractDestination(s, address));
|
|
|
|
BOOST_CHECK(boost::get<WitnessV0ScriptHash>(&address) && *boost::get<WitnessV0ScriptHash>(&address) == scripthash);
|
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::WITNESS_UNKNOWN with unknown version
|
2017-08-25 23:55:52 -03:00
|
|
|
s.clear();
|
|
|
|
s << OP_1 << ToByteVector(pubkey);
|
|
|
|
BOOST_CHECK(ExtractDestination(s, address));
|
|
|
|
WitnessUnknown unk;
|
|
|
|
unk.length = 33;
|
|
|
|
unk.version = 1;
|
|
|
|
std::copy(pubkey.begin(), pubkey.end(), unk.program);
|
|
|
|
BOOST_CHECK(boost::get<WitnessUnknown>(&address) && *boost::get<WitnessUnknown>(&address) == unk);
|
2017-08-18 18:40:29 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(script_standard_ExtractDestinations)
|
|
|
|
{
|
|
|
|
CKey keys[3];
|
|
|
|
CPubKey pubkeys[3];
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
keys[i].MakeNewKey(true);
|
|
|
|
pubkeys[i] = keys[i].GetPubKey();
|
|
|
|
}
|
|
|
|
|
|
|
|
CScript s;
|
2020-05-30 09:16:05 -04:00
|
|
|
TxoutType whichType;
|
2017-08-18 18:40:29 -03:00
|
|
|
std::vector<CTxDestination> addresses;
|
|
|
|
int nRequired;
|
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::PUBKEY
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << ToByteVector(pubkeys[0]) << OP_CHECKSIG;
|
|
|
|
BOOST_CHECK(ExtractDestinations(s, whichType, addresses, nRequired));
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(whichType, TxoutType::PUBKEY);
|
2018-04-09 04:50:19 -03:00
|
|
|
BOOST_CHECK_EQUAL(addresses.size(), 1U);
|
2017-08-18 18:40:29 -03:00
|
|
|
BOOST_CHECK_EQUAL(nRequired, 1);
|
2019-02-19 19:00:45 -03:00
|
|
|
BOOST_CHECK(boost::get<PKHash>(&addresses[0]) &&
|
|
|
|
*boost::get<PKHash>(&addresses[0]) == PKHash(pubkeys[0]));
|
2017-08-18 18:40:29 -03:00
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::PUBKEYHASH
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << OP_DUP << OP_HASH160 << ToByteVector(pubkeys[0].GetID()) << OP_EQUALVERIFY << OP_CHECKSIG;
|
|
|
|
BOOST_CHECK(ExtractDestinations(s, whichType, addresses, nRequired));
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(whichType, TxoutType::PUBKEYHASH);
|
2018-04-09 04:50:19 -03:00
|
|
|
BOOST_CHECK_EQUAL(addresses.size(), 1U);
|
2017-08-18 18:40:29 -03:00
|
|
|
BOOST_CHECK_EQUAL(nRequired, 1);
|
2019-02-19 19:00:45 -03:00
|
|
|
BOOST_CHECK(boost::get<PKHash>(&addresses[0]) &&
|
|
|
|
*boost::get<PKHash>(&addresses[0]) == PKHash(pubkeys[0]));
|
2017-08-18 18:40:29 -03:00
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::SCRIPTHASH
|
2017-08-18 18:40:29 -03:00
|
|
|
CScript redeemScript(s); // initialize with leftover P2PKH script
|
|
|
|
s.clear();
|
|
|
|
s << OP_HASH160 << ToByteVector(CScriptID(redeemScript)) << OP_EQUAL;
|
|
|
|
BOOST_CHECK(ExtractDestinations(s, whichType, addresses, nRequired));
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(whichType, TxoutType::SCRIPTHASH);
|
2018-04-09 04:50:19 -03:00
|
|
|
BOOST_CHECK_EQUAL(addresses.size(), 1U);
|
2017-08-18 18:40:29 -03:00
|
|
|
BOOST_CHECK_EQUAL(nRequired, 1);
|
2019-02-19 19:00:45 -03:00
|
|
|
BOOST_CHECK(boost::get<ScriptHash>(&addresses[0]) &&
|
|
|
|
*boost::get<ScriptHash>(&addresses[0]) == ScriptHash(redeemScript));
|
2017-08-18 18:40:29 -03:00
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::MULTISIG
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << OP_2 <<
|
|
|
|
ToByteVector(pubkeys[0]) <<
|
|
|
|
ToByteVector(pubkeys[1]) <<
|
|
|
|
OP_2 << OP_CHECKMULTISIG;
|
|
|
|
BOOST_CHECK(ExtractDestinations(s, whichType, addresses, nRequired));
|
2020-05-30 09:16:05 -04:00
|
|
|
BOOST_CHECK_EQUAL(whichType, TxoutType::MULTISIG);
|
2018-04-09 04:50:19 -03:00
|
|
|
BOOST_CHECK_EQUAL(addresses.size(), 2U);
|
2017-08-18 18:40:29 -03:00
|
|
|
BOOST_CHECK_EQUAL(nRequired, 2);
|
2019-02-19 19:00:45 -03:00
|
|
|
BOOST_CHECK(boost::get<PKHash>(&addresses[0]) &&
|
|
|
|
*boost::get<PKHash>(&addresses[0]) == PKHash(pubkeys[0]));
|
|
|
|
BOOST_CHECK(boost::get<PKHash>(&addresses[1]) &&
|
|
|
|
*boost::get<PKHash>(&addresses[1]) == PKHash(pubkeys[1]));
|
2017-08-18 18:40:29 -03:00
|
|
|
|
2020-05-30 09:16:05 -04:00
|
|
|
// TxoutType::NULL_DATA
|
2017-08-18 18:40:29 -03:00
|
|
|
s.clear();
|
|
|
|
s << OP_RETURN << std::vector<unsigned char>({75});
|
|
|
|
BOOST_CHECK(!ExtractDestinations(s, whichType, addresses, nRequired));
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(script_standard_GetScriptFor_)
|
|
|
|
{
|
|
|
|
CKey keys[3];
|
|
|
|
CPubKey pubkeys[3];
|
|
|
|
for (int i = 0; i < 3; i++) {
|
|
|
|
keys[i].MakeNewKey(true);
|
|
|
|
pubkeys[i] = keys[i].GetPubKey();
|
|
|
|
}
|
|
|
|
|
|
|
|
CScript expected, result;
|
|
|
|
|
2019-02-19 19:00:45 -03:00
|
|
|
// PKHash
|
2017-08-18 18:40:29 -03:00
|
|
|
expected.clear();
|
|
|
|
expected << OP_DUP << OP_HASH160 << ToByteVector(pubkeys[0].GetID()) << OP_EQUALVERIFY << OP_CHECKSIG;
|
2019-02-19 19:00:45 -03:00
|
|
|
result = GetScriptForDestination(PKHash(pubkeys[0]));
|
2017-08-18 18:40:29 -03:00
|
|
|
BOOST_CHECK(result == expected);
|
|
|
|
|
|
|
|
// CScriptID
|
|
|
|
CScript redeemScript(result);
|
|
|
|
expected.clear();
|
|
|
|
expected << OP_HASH160 << ToByteVector(CScriptID(redeemScript)) << OP_EQUAL;
|
2019-02-19 19:00:45 -03:00
|
|
|
result = GetScriptForDestination(ScriptHash(redeemScript));
|
2017-08-18 18:40:29 -03:00
|
|
|
BOOST_CHECK(result == expected);
|
|
|
|
|
|
|
|
// CNoDestination
|
|
|
|
expected.clear();
|
|
|
|
result = GetScriptForDestination(CNoDestination());
|
|
|
|
BOOST_CHECK(result == expected);
|
|
|
|
|
|
|
|
// GetScriptForRawPubKey
|
|
|
|
expected.clear();
|
|
|
|
expected << ToByteVector(pubkeys[0]) << OP_CHECKSIG;
|
|
|
|
result = GetScriptForRawPubKey(pubkeys[0]);
|
|
|
|
BOOST_CHECK(result == expected);
|
|
|
|
|
|
|
|
// GetScriptForMultisig
|
|
|
|
expected.clear();
|
|
|
|
expected << OP_2 <<
|
|
|
|
ToByteVector(pubkeys[0]) <<
|
|
|
|
ToByteVector(pubkeys[1]) <<
|
|
|
|
ToByteVector(pubkeys[2]) <<
|
|
|
|
OP_3 << OP_CHECKMULTISIG;
|
|
|
|
result = GetScriptForMultisig(2, std::vector<CPubKey>(pubkeys, pubkeys + 3));
|
|
|
|
BOOST_CHECK(result == expected);
|
|
|
|
|
2019-09-09 20:27:50 -03:00
|
|
|
// WitnessV0KeyHash
|
2017-08-18 18:40:29 -03:00
|
|
|
expected.clear();
|
|
|
|
expected << OP_0 << ToByteVector(pubkeys[0].GetID());
|
2019-09-09 20:27:50 -03:00
|
|
|
result = GetScriptForDestination(WitnessV0KeyHash(Hash160(ToByteVector(pubkeys[0]))));
|
2017-08-18 18:40:29 -03:00
|
|
|
BOOST_CHECK(result == expected);
|
2019-09-09 20:27:50 -03:00
|
|
|
result = GetScriptForDestination(WitnessV0KeyHash(pubkeys[0].GetID()));
|
2017-08-18 18:40:29 -03:00
|
|
|
BOOST_CHECK(result == expected);
|
|
|
|
|
2019-09-09 20:27:50 -03:00
|
|
|
// WitnessV0ScriptHash (multisig)
|
|
|
|
CScript witnessScript;
|
2017-08-18 18:40:29 -03:00
|
|
|
witnessScript << OP_1 << ToByteVector(pubkeys[0]) << OP_1 << OP_CHECKMULTISIG;
|
|
|
|
|
|
|
|
uint256 scriptHash;
|
2017-08-22 21:47:59 -03:00
|
|
|
CSHA256().Write(&witnessScript[0], witnessScript.size())
|
|
|
|
.Finalize(scriptHash.begin());
|
2017-08-18 18:40:29 -03:00
|
|
|
|
|
|
|
expected.clear();
|
|
|
|
expected << OP_0 << ToByteVector(scriptHash);
|
2019-09-09 20:27:50 -03:00
|
|
|
result = GetScriptForDestination(WitnessV0ScriptHash(witnessScript));
|
2017-08-18 18:40:29 -03:00
|
|
|
BOOST_CHECK(result == expected);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|