Make transactions with extra data in their scriptSig's non-standard.
[novacoin.git] / src / test / transaction_tests.cpp
1 #include <boost/test/unit_test.hpp>
2
3 #include "main.h"
4 #include "wallet.h"
5
6 using namespace std;
7
8 BOOST_AUTO_TEST_SUITE(transaction_tests)
9
10 BOOST_AUTO_TEST_CASE(basic_transaction_tests)
11 {
12     // Random real transaction (e2769b09e784f32f62ef849763d4f45b98e07ba658647343b915ff832b110436)
13     unsigned char ch[] = {0x01, 0x00, 0x00, 0x00, 0x01, 0x6b, 0xff, 0x7f, 0xcd, 0x4f, 0x85, 0x65, 0xef, 0x40, 0x6d, 0xd5, 0xd6, 0x3d, 0x4f, 0xf9, 0x4f, 0x31, 0x8f, 0xe8, 0x20, 0x27, 0xfd, 0x4d, 0xc4, 0x51, 0xb0, 0x44, 0x74, 0x01, 0x9f, 0x74, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x49, 0x30, 0x46, 0x02, 0x21, 0x00, 0xda, 0x0d, 0xc6, 0xae, 0xce, 0xfe, 0x1e, 0x06, 0xef, 0xdf, 0x05, 0x77, 0x37, 0x57, 0xde, 0xb1, 0x68, 0x82, 0x09, 0x30, 0xe3, 0xb0, 0xd0, 0x3f, 0x46, 0xf5, 0xfc, 0xf1, 0x50, 0xbf, 0x99, 0x0c, 0x02, 0x21, 0x00, 0xd2, 0x5b, 0x5c, 0x87, 0x04, 0x00, 0x76, 0xe4, 0xf2, 0x53, 0xf8, 0x26, 0x2e, 0x76, 0x3e, 0x2d, 0xd5, 0x1e, 0x7f, 0xf0, 0xbe, 0x15, 0x77, 0x27, 0xc4, 0xbc, 0x42, 0x80, 0x7f, 0x17, 0xbd, 0x39, 0x01, 0x41, 0x04, 0xe6, 0xc2, 0x6e, 0xf6, 0x7d, 0xc6, 0x10, 0xd2, 0xcd, 0x19, 0x24, 0x84, 0x78, 0x9a, 0x6c, 0xf9, 0xae, 0xa9, 0x93, 0x0b, 0x94, 0x4b, 0x7e, 0x2d, 0xb5, 0x34, 0x2b, 0x9d, 0x9e, 0x5b, 0x9f, 0xf7, 0x9a, 0xff, 0x9a, 0x2e, 0xe1, 0x97, 0x8d, 0xd7, 0xfd, 0x01, 0xdf, 0xc5, 0x22, 0xee, 0x02, 0x28, 0x3d, 0x3b, 0x06, 0xa9, 0xd0, 0x3a, 0xcf, 0x80, 0x96, 0x96, 0x8d, 0x7d, 0xbb, 0x0f, 0x91, 0x78, 0xff, 0xff, 0xff, 0xff, 0x02, 0x8b, 0xa7, 0x94, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x19, 0x76, 0xa9, 0x14, 0xba, 0xde, 0xec, 0xfd, 0xef, 0x05, 0x07, 0x24, 0x7f, 0xc8, 0xf7, 0x42, 0x41, 0xd7, 0x3b, 0xc0, 0x39, 0x97, 0x2d, 0x7b, 0x88, 0xac, 0x40, 0x94, 0xa8, 0x02, 0x00, 0x00, 0x00, 0x00, 0x19, 0x76, 0xa9, 0x14, 0xc1, 0x09, 0x32, 0x48, 0x3f, 0xec, 0x93, 0xed, 0x51, 0xf5, 0xfe, 0x95, 0xe7, 0x25, 0x59, 0xf2, 0xcc, 0x70, 0x43, 0xf9, 0x88, 0xac, 0x00, 0x00, 0x00, 0x00, 0x00};
14     vector<unsigned char> vch(ch, ch + sizeof(ch) -1);
15     CDataStream stream(vch);
16     CTransaction tx;
17     stream >> tx;
18     BOOST_CHECK_MESSAGE(tx.CheckTransaction(), "Simple deserialized transaction should be valid.");
19
20     // Check that duplicate txins fail
21     tx.vin.push_back(tx.vin[0]);
22     BOOST_CHECK_MESSAGE(!tx.CheckTransaction(), "Transaction with duplicate txins should be invalid.");
23 }
24
25 //
26 // Helper: create two dummy transactions, each with
27 // two outputs.  The first has 11 and 50 CENT outputs
28 // paid to a TX_PUBKEY, the second 21 and 22 CENT outputs
29 // paid to a TX_PUBKEYHASH.
30 //
31 static std::vector<CTransaction>
32 SetupDummyInputs(CBasicKeyStore& keystoreRet, MapPrevTx& inputsRet)
33 {
34     std::vector<CTransaction> dummyTransactions;
35     dummyTransactions.resize(2);
36
37     // Add some keys to the keystore:
38     CKey key[4];
39     for (int i = 0; i < 4; i++)
40     {
41         key[i].MakeNewKey();
42         keystoreRet.AddKey(key[i]);
43     }
44
45     // Create some dummy input transactions
46     dummyTransactions[0].vout.resize(2);
47     dummyTransactions[0].vout[0].nValue = 11*CENT;
48     dummyTransactions[0].vout[0].scriptPubKey << key[0].GetPubKey() << OP_CHECKSIG;
49     dummyTransactions[0].vout[1].nValue = 50*CENT;
50     dummyTransactions[0].vout[1].scriptPubKey << key[1].GetPubKey() << OP_CHECKSIG;
51     inputsRet[dummyTransactions[0].GetHash()] = make_pair(CTxIndex(), dummyTransactions[0]);
52
53     dummyTransactions[1].vout.resize(2);
54     dummyTransactions[1].vout[0].nValue = 21*CENT;
55     dummyTransactions[1].vout[0].scriptPubKey.SetBitcoinAddress(key[2].GetPubKey());
56     dummyTransactions[1].vout[1].nValue = 22*CENT;
57     dummyTransactions[1].vout[1].scriptPubKey.SetBitcoinAddress(key[3].GetPubKey());
58     inputsRet[dummyTransactions[1].GetHash()] = make_pair(CTxIndex(), dummyTransactions[1]);
59
60     return dummyTransactions;
61 }
62
63 BOOST_AUTO_TEST_CASE(test_Get)
64 {
65     CBasicKeyStore keystore;
66     MapPrevTx dummyInputs;
67     std::vector<CTransaction> dummyTransactions = SetupDummyInputs(keystore, dummyInputs);
68
69     CTransaction t1;
70     t1.vin.resize(3);
71     t1.vin[0].prevout.hash = dummyTransactions[0].GetHash();
72     t1.vin[0].prevout.n = 1;
73     t1.vin[0].scriptSig << std::vector<unsigned char>(65, 0);
74     t1.vin[1].prevout.hash = dummyTransactions[1].GetHash();
75     t1.vin[1].prevout.n = 0;
76     t1.vin[1].scriptSig << std::vector<unsigned char>(65, 0) << std::vector<unsigned char>(33, 4);
77     t1.vin[2].prevout.hash = dummyTransactions[1].GetHash();
78     t1.vin[2].prevout.n = 1;
79     t1.vin[2].scriptSig << std::vector<unsigned char>(65, 0) << std::vector<unsigned char>(33, 4);
80     t1.vout.resize(2);
81     t1.vout[0].nValue = 90*CENT;
82     t1.vout[0].scriptPubKey << OP_1;
83
84     BOOST_CHECK(t1.AreInputsStandard(dummyInputs));
85     BOOST_CHECK_EQUAL(t1.GetSigOpCount(dummyInputs), 3);
86     BOOST_CHECK_EQUAL(t1.GetValueIn(dummyInputs), (50+21+22)*CENT);
87
88     // Adding extra junk to the scriptSig should make it non-standard:
89     t1.vin[0].scriptSig << OP_11;
90     BOOST_CHECK(!t1.AreInputsStandard(dummyInputs));
91
92     // ... as should not having enough:
93     t1.vin[0].scriptSig = CScript();
94     BOOST_CHECK(!t1.AreInputsStandard(dummyInputs));
95 }
96
97 BOOST_AUTO_TEST_CASE(test_GetThrow)
98 {
99     CBasicKeyStore keystore;
100     MapPrevTx dummyInputs;
101     std::vector<CTransaction> dummyTransactions = SetupDummyInputs(keystore, dummyInputs);
102
103     MapPrevTx missingInputs;
104
105     CTransaction t1;
106     t1.vin.resize(3);
107     t1.vin[0].prevout.hash = dummyTransactions[0].GetHash();
108     t1.vin[0].prevout.n = 0;
109     t1.vin[1].prevout.hash = dummyTransactions[1].GetHash();;
110     t1.vin[1].prevout.n = 0;
111     t1.vin[2].prevout.hash = dummyTransactions[1].GetHash();;
112     t1.vin[2].prevout.n = 1;
113     t1.vout.resize(2);
114     t1.vout[0].nValue = 90*CENT;
115     t1.vout[0].scriptPubKey << OP_1;
116
117     BOOST_CHECK_THROW(t1.AreInputsStandard(missingInputs), runtime_error);
118     BOOST_CHECK_THROW(t1.GetSigOpCount(missingInputs), runtime_error);
119     BOOST_CHECK_THROW(t1.GetValueIn(missingInputs), runtime_error);
120 }
121
122 BOOST_AUTO_TEST_SUITE_END()