Feathercoin  0.5.0
P2P Digital Currency
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
miner_tests.cpp
Go to the documentation of this file.
1 #include <boost/test/unit_test.hpp>
2 
3 #include "init.h"
4 #include "main.h"
5 #include "uint256.h"
6 #include "util.h"
7 #include "wallet.h"
8 
9 extern void SHA256Transform(void* pstate, void* pinput, const void* pinit);
10 
11 BOOST_AUTO_TEST_SUITE(miner_tests)
12 
13 static
14 struct {
15  unsigned char extranonce;
16  unsigned int nonce;
17 } blockinfo[] = {
18  {4, 0xa4ad9f65}, {2, 0x15cf2b27}, {1, 0x037620ac}, {1, 0x700d9c54},
19  {2, 0xce79f74f}, {2, 0x52d9c194}, {1, 0x77bc3efc}, {2, 0xbb62c5e8},
20  {2, 0x83ff997a}, {1, 0x48b984ee}, {1, 0xef925da0}, {2, 0x680d2979},
21  {2, 0x08953af7}, {1, 0x087dd553}, {2, 0x210e2818}, {2, 0xdfffcdef},
22  {1, 0xeea1b209}, {2, 0xba4a8943}, {1, 0xa7333e77}, {1, 0x344f3e2a},
23  {3, 0xd651f08e}, {2, 0xeca3957f}, {2, 0xca35aa49}, {1, 0x6bb2065d},
24  {2, 0x0170ee44}, {1, 0x6e12f4aa}, {2, 0x43f4f4db}, {2, 0x279c1c44},
25  {2, 0xb5a50f10}, {2, 0xb3902841}, {2, 0xd198647e}, {2, 0x6bc40d88},
26  {1, 0x633a9a1c}, {2, 0x9a722ed8}, {2, 0x55580d10}, {1, 0xd65022a1},
27  {2, 0xa12ffcc8}, {1, 0x75a6a9c7}, {2, 0xfb7c80b7}, {1, 0xe8403e6c},
28  {1, 0xe34017a0}, {3, 0x659e177b}, {2, 0xba5c40bf}, {5, 0x022f11ef},
29  {1, 0xa9ab516a}, {5, 0xd0999ed4}, {1, 0x37277cb3}, {1, 0x830f735f},
30  {1, 0xc6e3d947}, {2, 0x824a0c1b}, {1, 0x99962416}, {1, 0x75336f63},
31  {1, 0xaacf0fea}, {1, 0xd6531aec}, {5, 0x7afcf541}, {5, 0x9d6fac0d},
32  {1, 0x4cf5c4df}, {1, 0xabe0f2a0}, {6, 0x4a3dac18}, {2, 0xf265febe},
33  {2, 0x1bc9f23f}, {1, 0xad49ab71}, {1, 0x9f2d8923}, {1, 0x15acb65d},
34  {2, 0xd1cecb52}, {2, 0xf856808b}, {1, 0x0fa96e29}, {1, 0xe063ecbc},
35  {1, 0x78d926c6}, {5, 0x3e38ad35}, {5, 0x73901915}, {1, 0x63424be0},
36  {1, 0x6d6b0a1d}, {2, 0x888ba681}, {2, 0xe96b0714}, {1, 0xb7fcaa55},
37  {2, 0x19c106eb}, {1, 0x5aa13484}, {2, 0x5bf4c2f3}, {2, 0x94d401dd},
38  {1, 0xa9bc23d9}, {1, 0x3a69c375}, {1, 0x56ed2006}, {5, 0x85ba6dbd},
39  {1, 0xfd9b2000}, {1, 0x2b2be19a}, {1, 0xba724468}, {1, 0x717eb6e5},
40  {1, 0x70de86d9}, {1, 0x74e23a42}, {1, 0x49e92832}, {2, 0x6926dbb9},
41  {0, 0x64452497}, {1, 0x54306d6f}, {2, 0x97ebf052}, {2, 0x55198b70},
42  {2, 0x03fe61f0}, {1, 0x98f9e67f}, {1, 0xc0842a09}, {1, 0xdfed39c5},
43  {1, 0x3144223e}, {1, 0xb3d12f84}, {1, 0x7366ceb7}, {5, 0x6240691b},
44  {2, 0xd3529b57}, {1, 0xf4cae3b1}, {1, 0x5b1df222}, {1, 0xa16a5c70},
45  {2, 0xbbccedc6}, {2, 0xfe38d0ef},
46 };
47 
48 // NOTE: These tests rely on CreateNewBlock doing its own self-validation!
49 BOOST_AUTO_TEST_CASE(CreateNewBlock_validity)
50 {
51  CReserveKey reservekey(pwalletMain);
52  CBlockTemplate *pblocktemplate;
53  CTransaction tx;
54  CScript script;
55  uint256 hash;
56 
57  // Simple block creation, nothing special yet:
58  BOOST_CHECK(pblocktemplate = CreateNewBlockWithKey(reservekey));
59 
60  // We can't make transactions until we have inputs
61  // Therefore, load 100 blocks :)
62  std::vector<CTransaction*>txFirst;
63  for (unsigned int i = 0; i < sizeof(blockinfo)/sizeof(*blockinfo); ++i)
64  {
65  CBlock *pblock = &pblocktemplate->block; // pointer for convenience
66  pblock->nVersion = 1;
67  pblock->nTime = pindexBest->GetMedianTimePast()+1;
68  pblock->vtx[0].vin[0].scriptSig = CScript();
69  pblock->vtx[0].vin[0].scriptSig.push_back(blockinfo[i].extranonce);
70  pblock->vtx[0].vin[0].scriptSig.push_back(pindexBest->nHeight);
71  pblock->vtx[0].vout[0].scriptPubKey = CScript();
72  if (txFirst.size() < 2)
73  txFirst.push_back(new CTransaction(pblock->vtx[0]));
74  pblock->hashMerkleRoot = pblock->BuildMerkleTree();
75  pblock->nNonce = blockinfo[i].nonce;
77  BOOST_CHECK(ProcessBlock(state, NULL, pblock));
78  BOOST_CHECK(state.IsValid());
79  pblock->hashPrevBlock = pblock->GetHash();
80  }
81  delete pblocktemplate;
82 
83  // Just to make sure we can still make simple blocks
84  BOOST_CHECK(pblocktemplate = CreateNewBlockWithKey(reservekey));
85 
86  // block sigops > limit: 1000 CHECKMULTISIG + 1
87  tx.vin.resize(1);
88  // NOTE: OP_NOP is used to force 20 SigOps for the CHECKMULTISIG
89  tx.vin[0].scriptSig = CScript() << OP_0 << OP_0 << OP_0 << OP_NOP << OP_CHECKMULTISIG << OP_1;
90  tx.vin[0].prevout.hash = txFirst[0]->GetHash();
91  tx.vin[0].prevout.n = 0;
92  tx.vout.resize(1);
93  tx.vout[0].nValue = 5000000000LL;
94  for (unsigned int i = 0; i < 1001; ++i)
95  {
96  tx.vout[0].nValue -= 1000000;
97  hash = tx.GetHash();
98  mempool.addUnchecked(hash, tx);
99  tx.vin[0].prevout.hash = hash;
100  }
101  BOOST_CHECK(pblocktemplate = CreateNewBlockWithKey(reservekey));
102  delete pblocktemplate;
103  mempool.clear();
104 
105  // block size > limit
106  tx.vin[0].scriptSig = CScript();
107  // 18 * (520char + DROP) + OP_1 = 9433 bytes
108  std::vector<unsigned char> vchData(520);
109  for (unsigned int i = 0; i < 18; ++i)
110  tx.vin[0].scriptSig << vchData << OP_DROP;
111  tx.vin[0].scriptSig << OP_1;
112  tx.vin[0].prevout.hash = txFirst[0]->GetHash();
113  tx.vout[0].nValue = 5000000000LL;
114  for (unsigned int i = 0; i < 128; ++i)
115  {
116  tx.vout[0].nValue -= 10000000;
117  hash = tx.GetHash();
118  mempool.addUnchecked(hash, tx);
119  tx.vin[0].prevout.hash = hash;
120  }
121  BOOST_CHECK(pblocktemplate = CreateNewBlockWithKey(reservekey));
122  delete pblocktemplate;
123  mempool.clear();
124 
125  // orphan in mempool
126  hash = tx.GetHash();
127  mempool.addUnchecked(hash, tx);
128  BOOST_CHECK(pblocktemplate = CreateNewBlockWithKey(reservekey));
129  delete pblocktemplate;
130  mempool.clear();
131 
132  // child with higher priority than parent
133  tx.vin[0].scriptSig = CScript() << OP_1;
134  tx.vin[0].prevout.hash = txFirst[1]->GetHash();
135  tx.vout[0].nValue = 4900000000LL;
136  hash = tx.GetHash();
137  mempool.addUnchecked(hash, tx);
138  tx.vin[0].prevout.hash = hash;
139  tx.vin.resize(2);
140  tx.vin[1].scriptSig = CScript() << OP_1;
141  tx.vin[1].prevout.hash = txFirst[0]->GetHash();
142  tx.vin[1].prevout.n = 0;
143  tx.vout[0].nValue = 5900000000LL;
144  hash = tx.GetHash();
145  mempool.addUnchecked(hash, tx);
146  BOOST_CHECK(pblocktemplate = CreateNewBlockWithKey(reservekey));
147  delete pblocktemplate;
148  mempool.clear();
149 
150  // coinbase in mempool
151  tx.vin.resize(1);
152  tx.vin[0].prevout.SetNull();
153  tx.vin[0].scriptSig = CScript() << OP_0 << OP_1;
154  tx.vout[0].nValue = 0;
155  hash = tx.GetHash();
156  mempool.addUnchecked(hash, tx);
157  BOOST_CHECK(pblocktemplate = CreateNewBlockWithKey(reservekey));
158  delete pblocktemplate;
159  mempool.clear();
160 
161  // invalid (pre-p2sh) txn in mempool
162  tx.vin[0].prevout.hash = txFirst[0]->GetHash();
163  tx.vin[0].prevout.n = 0;
164  tx.vin[0].scriptSig = CScript() << OP_1;
165  tx.vout[0].nValue = 4900000000LL;
166  script = CScript() << OP_0;
167  tx.vout[0].scriptPubKey.SetDestination(script.GetID());
168  hash = tx.GetHash();
169  mempool.addUnchecked(hash, tx);
170  tx.vin[0].prevout.hash = hash;
171  tx.vin[0].scriptSig = CScript() << (std::vector<unsigned char>)script;
172  tx.vout[0].nValue -= 1000000;
173  hash = tx.GetHash();
174  mempool.addUnchecked(hash,tx);
175  BOOST_CHECK(pblocktemplate = CreateNewBlockWithKey(reservekey));
176  delete pblocktemplate;
177  mempool.clear();
178 
179  // double spend txn pair in mempool
180  tx.vin[0].prevout.hash = txFirst[0]->GetHash();
181  tx.vin[0].scriptSig = CScript() << OP_1;
182  tx.vout[0].nValue = 4900000000LL;
183  tx.vout[0].scriptPubKey = CScript() << OP_1;
184  hash = tx.GetHash();
185  mempool.addUnchecked(hash, tx);
186  tx.vout[0].scriptPubKey = CScript() << OP_2;
187  hash = tx.GetHash();
188  mempool.addUnchecked(hash, tx);
189  BOOST_CHECK(pblocktemplate = CreateNewBlockWithKey(reservekey));
190  delete pblocktemplate;
191  mempool.clear();
192 
193  // subsidy changing
194  int nHeight = pindexBest->nHeight;
195  pindexBest->nHeight = 209999;
196  BOOST_CHECK(pblocktemplate = CreateNewBlockWithKey(reservekey));
197  delete pblocktemplate;
198  pindexBest->nHeight = 210000;
199  BOOST_CHECK(pblocktemplate = CreateNewBlockWithKey(reservekey));
200  delete pblocktemplate;
201  pindexBest->nHeight = nHeight;
202 }
203 
204 BOOST_AUTO_TEST_CASE(sha256transform_equality)
205 {
206  unsigned int pSHA256InitState[8] = {0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19};
207 
208 
209  // unsigned char pstate[32];
210  unsigned char pinput[64];
211 
212  int i;
213 
214  for (i = 0; i < 32; i++) {
215  pinput[i] = i;
216  pinput[i+32] = 0;
217  }
218 
219  uint256 hash;
220 
221  SHA256Transform(&hash, pinput, pSHA256InitState);
222 
223  BOOST_TEST_MESSAGE(hash.GetHex());
224 
225  uint256 hash_reference("0x2df5e1c65ef9f8cde240d23cae2ec036d31a15ec64bc68f64be242b1da6631f3");
226 
227  BOOST_CHECK(hash == hash_reference);
228 }
229 
230 BOOST_AUTO_TEST_SUITE_END()
bool addUnchecked(const uint256 &hash, const CTransaction &tx)
Definition: main.cpp:831
int nVersion
Definition: main.h:1283
unsigned int nonce
Definition: miner_tests.cpp:16
Definition: main.h:1334
Definition: script.h:79
void clear()
Definition: main.cpp:884
uint256 GetHash() const
Definition: main.h:515
BOOST_AUTO_TEST_CASE(CreateNewBlock_validity)
Definition: miner_tests.cpp:49
int64 GetMedianTimePast() const
Definition: main.h:1777
CBlockTemplate * CreateNewBlockWithKey(CReserveKey &reservekey)
Definition: main.cpp:4558
uint256 BuildMerkleTree() const
Definition: main.h:1386
void SHA256Transform(void *pstate, void *pinput, const void *pinit)
Definition: main.cpp:4249
uint256 hashMerkleRoot
Definition: main.h:1285
std::vector< CTxOut > vout
Definition: main.h:485
std::vector< CTxIn > vin
Definition: main.h:484
uint256 hashPrevBlock
Definition: main.h:1284
MTState * state
Definition: db_test.cc:1708
Definition: script.h:77
Definition: script.h:96
CWallet * pwalletMain
Definition: init.cpp:31
unsigned int nNonce
Definition: main.h:1288
std::string GetHex() const
Definition: uint256.h:298
CTxMemPool mempool
Definition: main.cpp:34
Capture information about block/transaction validation.
Definition: main.h:1907
256-bit unsigned integer
Definition: uint256.h:537
unsigned int nTime
Definition: main.h:1286
bool IsValid()
Definition: main.h:1937
uint256 GetHash() const
Definition: main.h:1321
bool ProcessBlock(CValidationState &state, CNode *pfrom, CBlock *pblock, CDiskBlockPos *dbp)
Process an incoming block.
Definition: main.cpp:2339
A key allocated from the key pool.
Definition: wallet.h:318
Serialized script, used inside transaction inputs and outputs.
Definition: script.h:244
CScriptID GetID() const
Definition: script.h:589
CBlockIndex * pindexBest
Definition: main.cpp:45
CBlock block
Definition: main.h:2248
unsigned char extranonce
Definition: miner_tests.cpp:15
std::vector< CTransaction > vtx
Definition: main.h:1338
The basic transaction that is broadcasted on the network and contained in blocks. ...
Definition: main.h:477
int nHeight
Definition: main.h:1639
Definition: script.h:70
uint32_t hash
Definition: cache.cc:34