2012-01-05 03:40:52 +01:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2012-01-05 03:40:52 +01:00
|
|
|
#include "key.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
#include "script.h"
|
|
|
|
#include "uint256.h"
|
|
|
|
|
|
|
|
#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)
|
|
|
|
{
|
|
|
|
std::vector<unsigned char> sSerialized(s);
|
|
|
|
return sSerialized;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE(sigopcount_tests)
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
uint160 dummy;
|
|
|
|
s1 << OP_1 << dummy << 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
|
|
|
|
|
|
|
CScript p2sh;
|
2012-05-14 23:44:52 +02:00
|
|
|
p2sh.SetDestination(s1.GetID());
|
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
|
|
|
}
|
|
|
|
CScript s2;
|
|
|
|
s2.SetMultisig(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
|
|
|
|
2012-05-14 23:44:52 +02:00
|
|
|
p2sh.SetDestination(s2.GetID());
|
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;
|
|
|
|
scriptSig2 << OP_1 << dummy << 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()
|