2014-03-18 10:11:00 +01:00
|
|
|
// Copyright (c) 2012-2013 The Bitcoin Core developers
|
2014-12-13 05:09:33 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-03-18 10:11:00 +01:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2014-10-28 22:47:18 +01:00
|
|
|
#include "pubkey.h"
|
2012-01-05 03:40:52 +01:00
|
|
|
#include "key.h"
|
2014-08-20 17:37:40 +02:00
|
|
|
#include "script/script.h"
|
2014-09-11 19:15:29 +02:00
|
|
|
#include "script/standard.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "uint256.h"
|
2015-03-12 09:34:42 +01:00
|
|
|
#include "test/test_bitcoin.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
#include <boost/test/unit_test.hpp>
|
2012-01-05 03:40:52 +01:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
// Helpers:
|
|
|
|
static std::vector<unsigned char>
|
|
|
|
Serialize(const CScript& s)
|
|
|
|
{
|
2015-10-29 07:11:24 +01:00
|
|
|
std::vector<unsigned char> sSerialized(s.begin(), s.end());
|
2012-01-05 03:40:52 +01:00
|
|
|
return sSerialized;
|
|
|
|
}
|
|
|
|
|
2015-03-12 09:34:42 +01:00
|
|
|
BOOST_FIXTURE_TEST_SUITE(sigopcount_tests, BasicTestingSetup)
|
2012-01-05 03:40:52 +01:00
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(GetSigOpCount)
|
|
|
|
{
|
|
|
|
// Test CScript::GetSigOpCount()
|
|
|
|
CScript s1;
|
2013-03-07 18:38:25 +01:00
|
|
|
BOOST_CHECK_EQUAL(s1.GetSigOpCount(false), 0U);
|
|
|
|
BOOST_CHECK_EQUAL(s1.GetSigOpCount(true), 0U);
|
2012-01-05 03:40:52 +01:00
|
|
|
|
2014-12-15 09:11:16 +01:00
|
|
|
uint160 dummy;
|
2014-09-25 04:54:08 +02:00
|
|
|
s1 << OP_1 << ToByteVector(dummy) << ToByteVector(dummy) << OP_2 << OP_CHECKMULTISIG;
|
2013-03-07 18:38:25 +01:00
|
|
|
BOOST_CHECK_EQUAL(s1.GetSigOpCount(true), 2U);
|
2012-01-05 03:40:52 +01:00
|
|
|
s1 << OP_IF << OP_CHECKSIG << OP_ENDIF;
|
2013-03-07 18:38:25 +01:00
|
|
|
BOOST_CHECK_EQUAL(s1.GetSigOpCount(true), 3U);
|
|
|
|
BOOST_CHECK_EQUAL(s1.GetSigOpCount(false), 21U);
|
2012-01-05 03:40:52 +01:00
|
|
|
|
2014-09-25 04:24:46 +02:00
|
|
|
CScript p2sh = GetScriptForDestination(CScriptID(s1));
|
2012-01-05 03:40:52 +01:00
|
|
|
CScript scriptSig;
|
|
|
|
scriptSig << OP_0 << Serialize(s1);
|
2013-03-07 18:38:25 +01:00
|
|
|
BOOST_CHECK_EQUAL(p2sh.GetSigOpCount(scriptSig), 3U);
|
2012-01-05 03:40:52 +01:00
|
|
|
|
2013-05-01 06:52:05 +02:00
|
|
|
std::vector<CPubKey> keys;
|
2012-01-05 03:40:52 +01:00
|
|
|
for (int i = 0; i < 3; i++)
|
|
|
|
{
|
|
|
|
CKey k;
|
2012-02-20 18:32:33 +01:00
|
|
|
k.MakeNewKey(true);
|
2013-05-01 06:52:05 +02:00
|
|
|
keys.push_back(k.GetPubKey());
|
2012-01-05 03:40:52 +01:00
|
|
|
}
|
2014-09-11 19:15:29 +02:00
|
|
|
CScript s2 = GetScriptForMultisig(1, keys);
|
2013-03-07 18:38:25 +01:00
|
|
|
BOOST_CHECK_EQUAL(s2.GetSigOpCount(true), 3U);
|
|
|
|
BOOST_CHECK_EQUAL(s2.GetSigOpCount(false), 20U);
|
2012-01-05 03:40:52 +01:00
|
|
|
|
2014-09-25 04:24:46 +02:00
|
|
|
p2sh = GetScriptForDestination(CScriptID(s2));
|
2013-03-07 18:38:25 +01:00
|
|
|
BOOST_CHECK_EQUAL(p2sh.GetSigOpCount(true), 0U);
|
|
|
|
BOOST_CHECK_EQUAL(p2sh.GetSigOpCount(false), 0U);
|
2012-01-05 03:40:52 +01:00
|
|
|
CScript scriptSig2;
|
2014-09-25 04:54:08 +02:00
|
|
|
scriptSig2 << OP_1 << ToByteVector(dummy) << ToByteVector(dummy) << Serialize(s2);
|
2013-03-07 18:38:25 +01:00
|
|
|
BOOST_CHECK_EQUAL(p2sh.GetSigOpCount(scriptSig2), 3U);
|
2012-01-05 03:40:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE_END()
|