aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCJentzsch <jentzsch.software@gmail.com>2015-02-10 15:35:18 +0800
committerCJentzsch <jentzsch.software@gmail.com>2015-02-10 15:35:18 +0800
commit0779f81e38fd98235a6deffa7c6ae0076d02b545 (patch)
tree34857c0d0cc74e1169e13743fbac9e25f0019e4f
parent84bd14e0a2508c8e966e1fb69a9850cfda59e360 (diff)
downloaddexon-solidity-0779f81e38fd98235a6deffa7c6ae0076d02b545.tar.gz
dexon-solidity-0779f81e38fd98235a6deffa7c6ae0076d02b545.tar.zst
dexon-solidity-0779f81e38fd98235a6deffa7c6ae0076d02b545.zip
start with test defined genesis block
-rw-r--r--TestHelper.h3
-rw-r--r--blFirstTestFiller.json17
-rw-r--r--blValidBlockTestFiller.json71
-rw-r--r--block.cpp365
4 files changed, 274 insertions, 182 deletions
diff --git a/TestHelper.h b/TestHelper.h
index 344f61a3..9ac1f0d4 100644
--- a/TestHelper.h
+++ b/TestHelper.h
@@ -45,7 +45,7 @@ namespace test
class ImportTest
{
public:
- ImportTest() = default;
+ ImportTest(json_spirit::mObject& _o) : m_TestObject(_o) {}
ImportTest(json_spirit::mObject& _o, bool isFiller);
// imports
@@ -53,6 +53,7 @@ public:
void importState(json_spirit::mObject& _o, eth::State& _state);
void importTransaction(json_spirit::mObject& _o);
void exportTest(bytes _output, eth::State& _statePost);
+ std::map<Address, eth::Account> getStateMap(eth::State& _state){return _state.m_cache;}
eth::State m_statePre;
eth::State m_statePost;
diff --git a/blFirstTestFiller.json b/blFirstTestFiller.json
index 0084fda1..d4e6d109 100644
--- a/blFirstTestFiller.json
+++ b/blFirstTestFiller.json
@@ -1,5 +1,22 @@
{
"firstBlockTest" : {
+ "block" : {
+ "parentHash": "0xefb4db878627027c81b3bb1c7dd3a18dae3914a49cdd24a3e40ab3bbfbb240c5",
+ "uncleHash": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
+ "coinbase": "0x8888f1f195afa192cfee860698584c030f4c9db1",
+ "stateRoot": "0xf99eb1626cfa6db435c0836235942d7ccaa935f1ae247d3f1c21e495685f903a",
+ "transactionsTrie": "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
+ "receiptTrie": "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
+ "bloom": "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
+ "difficulty": "023101",
+ "number": "62",
+ "gasLimit": "0x0dddb6",
+ "gasUsed": "100",
+ "timestamp": "0x54c98c81",
+ "extraData": "42",
+ "nonce": "0x498e88f5c14b0b60d6e14ce9c6cc958cbe16a1df8dd90210e50d2d77562a348d"
+ },
+ "pre" : {},
"transactions": [{
"nonce": "0",
"gasPrice": "0x09184e72a000",
diff --git a/blValidBlockTestFiller.json b/blValidBlockTestFiller.json
index ab0369fa..8b951b17 100644
--- a/blValidBlockTestFiller.json
+++ b/blValidBlockTestFiller.json
@@ -1,20 +1,61 @@
{
"validBlock" : {
"block" : {
- "parentHash": "0xefb4db878627027c81b3bb1c7dd3a18dae3914a49cdd24a3e40ab3bbfbb240c5",
- "uncleHash": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
- "coinbase": "0x8888f1f195afa192cfee860698584c030f4c9db1",
- "stateRoot": "0xf99eb1626cfa6db435c0836235942d7ccaa935f1ae247d3f1c21e495685f903a",
- "transactionsTrie": "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
- "receiptTrie": "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
- "bloom": "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
- "difficulty": "023101",
- "number": "62",
- "gasLimit": "0x0dddb6",
- "gasUsed": "100",
- "timestamp": "0x54c98c81",
- "extraData": "42",
- "nonce": "0x498e88f5c14b0b60d6e14ce9c6cc958cbe16a1df8dd90210e50d2d77562a348d"
- }
+ "bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
+ "coinbase" : "0x8888f1f195afa192cfee860698584c030f4c9db1",
+ "difficulty" : "1024",
+ "extraData" : "42",
+ "gasLimit" : "0x0dddb6",
+ "gasUsed" : "100",
+ "nonce" : "0x498e88f5c14b0b60d6e14ce9c6cc958cbe16a1df8dd90210e50d2d77562a348d",
+ "number" : "0",
+ "parentHash" : "0xefb4db878627027c81b3bb1c7dd3a18dae3914a49cdd24a3e40ab3bbfbb240c5",
+ "receiptTrie" : "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
+ "stateRoot" : "0xf99eb1626cfa6db435c0836235942d7ccaa935f1ae247d3f1c21e495685f903a",
+ "timestamp" : "0x54c98c81",
+ "transactionsTrie" : "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
+ "uncleHash" : "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347"
+ },
+ "blockHeader" : {
+ "bloom" : "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
+ "coinbase" : "0000000000000000000000000000000000000000",
+ "difficulty" : "130944",
+ "extraData" : "",
+ "gasLimit" : "999023",
+ "gasUsed" : "4803",
+ "nonce" : "62778f62183098b7cc8d221fc199654e613ca47b85696f940de3bd2bb6a2a54e",
+ "number" : "1",
+ "parentHash" : "c9cb614fddd89b3bc6e2f0ed1f8e58e8a0d826612a607a6151be6f39c991a941",
+ "receiptTrie" : "8fd35225dd530f30dc39719f9791583309b5889ad79bff0d31e9b1eb12f55000",
+ "stateRoot" : "b3ef9fe736086bdf1b3cd235f68097aab5f4c6e40d57f417d39c2cc6fb67f6c7",
+ "timestamp" : "1423490430",
+ "transactionsTrie" : "2cb4068eb8ccc9124426a7ed5c445b1353c997fc419031254ff7e2768c4dcd7f",
+ "uncleHash" : "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347"
+ },
+ "pre" : {
+ "a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
+ "balance" : "10000000000",
+ "nonce" : 0,
+ "code" : "",
+ "storage": {}
+ }
+ },
+ "rlp" : "0xf9033bf9012fa0c9cb614fddd89b3bc6e2f0ed1f8e58e8a0d826612a607a6151be6f39c991a941a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347940000000000000000000000000000000000000000a0b3ef9fe736086bdf1b3cd235f68097aab5f4c6e40d57f417d39c2cc6fb67f6c7a02cb4068eb8ccc9124426a7ed5c445b1353c997fc419031254ff7e2768c4dcd7fa08fd35225dd530f30dc39719f9791583309b5889ad79bff0d31e9b1eb12f55000b840000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008301ff8001830f3e6f8212c38454d8bd7e80a062778f62183098b7cc8d221fc199654e613ca47b85696f940de3bd2bb6a2a54ef90205f90202808609184e72a000830f3e6f8080b901ae60056013565b6101918061001d6000396000f35b3360008190555056006001600060e060020a6000350480630a874df61461003a57806341c0e1b514610058578063a02b161e14610066578063dbbdf0831461007757005b610045600435610149565b80600160a060020a031660005260206000f35b610060610161565b60006000f35b6100716004356100d4565b60006000f35b61008560043560243561008b565b60006000f35b600054600160a060020a031632600160a060020a031614156100ac576100b1565b6100d0565b8060018360005260205260406000208190555081600060005260206000a15b5050565b600054600160a060020a031633600160a060020a031614158015610118575033600160a060020a0316600182600052602052604060002054600160a060020a031614155b61012157610126565b610146565b600060018260005260205260406000208190555080600060005260206000a15b50565b60006001826000526020526040600020549050919050565b600054600160a060020a031633600160a060020a0316146101815761018f565b600054600160a060020a0316ff5b561ba0d4287e915ebac7a8af390560fa53c8f0b7f13802ba0393d7afa5823c2560ca89a0ae75db31a34f7e386ad459646de98ec3a1c88cc91b11620b4ffd86871f579942c0",
+ "transactions" : [
+ {
+ "data" : "",
+ "gasLimit" : "850",
+ "gasPrice" : "1",
+ "nonce" : "0",
+ "r" : "0x48b55bfa915ac795c431978d8a6a992b628d557da5ff759b307d495a36649353",
+ "s" : "0xefffd310ac743f371de3b9f7f9cb56c0b28ad43601b4ab949f53faa07bd2c804",
+ "to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87",
+ "v" : "27",
+ "value" : "10"
+ }
+ ],
+ "uncleHeaders" : [
+ ]
}
}
+
diff --git a/block.cpp b/block.cpp
index adf8a3ad..9b598bbc 100644
--- a/block.cpp
+++ b/block.cpp
@@ -32,168 +32,194 @@ namespace dev { namespace test {
bytes createBlockRLPFromFields(mObject& _tObj)
{
- BOOST_REQUIRE(_tObj.count("parentHash") > 0);
- BOOST_REQUIRE(_tObj.count("uncleHash") > 0);
- BOOST_REQUIRE(_tObj.count("coinbase") > 0);
- BOOST_REQUIRE(_tObj.count("stateRoot") > 0);
- BOOST_REQUIRE(_tObj.count("transactionsTrie")> 0);
- BOOST_REQUIRE(_tObj.count("receiptTrie") > 0);
- BOOST_REQUIRE(_tObj.count("bloom") > 0);
- BOOST_REQUIRE(_tObj.count("difficulty") > 0);
- BOOST_REQUIRE(_tObj.count("number") > 0);
- BOOST_REQUIRE(_tObj.count("gasLimit")> 0);
- BOOST_REQUIRE(_tObj.count("gasUsed") > 0);
- BOOST_REQUIRE(_tObj.count("timestamp") > 0);
- BOOST_REQUIRE(_tObj.count("extraData") > 0);
- BOOST_REQUIRE(_tObj.count("nonce") > 0);
-
- // construct RLP of the given block
- cout << "done with require\n";
- RLPStream rlpStream;
- rlpStream.appendList(14);
- cout << "increate aha1\n";
- rlpStream << h256(_tObj["parentHash"].get_str()) << h256(_tObj["uncleHash"].get_str()) << Address(_tObj["coinbase"].get_str());
- rlpStream << h256(_tObj["stateRoot"].get_str()) << h256(_tObj["transactionsTrie"].get_str()) << Address(_tObj["receiptTrie"].get_str());
- rlpStream << LogBloom(_tObj["bloom"].get_str()) << u256(_tObj["difficulty"].get_str()) << u256(_tObj["number"].get_str());
- rlpStream << u256(_tObj["gasLimit"].get_str()) << u256(_tObj["gasUsed"].get_str()) << u256(_tObj["timestamp"].get_str());
- rlpStream << importByteArray(_tObj["extraData"].get_str()) << h256(_tObj["nonce"].get_str());
-
- return rlpStream.out();
+ BOOST_REQUIRE(_tObj.count("parentHash") > 0);
+ BOOST_REQUIRE(_tObj.count("uncleHash") > 0);
+ BOOST_REQUIRE(_tObj.count("coinbase") > 0);
+ BOOST_REQUIRE(_tObj.count("stateRoot") > 0);
+ BOOST_REQUIRE(_tObj.count("transactionsTrie")> 0);
+ BOOST_REQUIRE(_tObj.count("receiptTrie") > 0);
+ BOOST_REQUIRE(_tObj.count("bloom") > 0);
+ BOOST_REQUIRE(_tObj.count("difficulty") > 0);
+ BOOST_REQUIRE(_tObj.count("number") > 0);
+ BOOST_REQUIRE(_tObj.count("gasLimit")> 0);
+ BOOST_REQUIRE(_tObj.count("gasUsed") > 0);
+ BOOST_REQUIRE(_tObj.count("timestamp") > 0);
+ BOOST_REQUIRE(_tObj.count("extraData") > 0);
+ BOOST_REQUIRE(_tObj.count("nonce") > 0);
+
+ // construct RLP of the given block
+ cout << "done with require\n";
+ RLPStream rlpStream;
+ rlpStream.appendList(14);
+ cout << "increate aha1\n";
+ rlpStream << h256(_tObj["parentHash"].get_str()) << h256(_tObj["uncleHash"].get_str()) << Address(_tObj["coinbase"].get_str());
+ rlpStream << h256(_tObj["stateRoot"].get_str()) << h256(_tObj["transactionsTrie"].get_str()) << Address(_tObj["receiptTrie"].get_str());
+ rlpStream << LogBloom(_tObj["bloom"].get_str()) << u256(_tObj["difficulty"].get_str()) << u256(_tObj["number"].get_str());
+ rlpStream << u256(_tObj["gasLimit"].get_str()) << u256(_tObj["gasUsed"].get_str()) << u256(_tObj["timestamp"].get_str());
+ rlpStream << importByteArray(_tObj["extraData"].get_str()) << h256(_tObj["nonce"].get_str());
+
+ return rlpStream.out();
}
void doBlockTests(json_spirit::mValue& _v, bool _fillin)
{
- for (auto& i: _v.get_obj())
- {
- cerr << i.first << endl;
- mObject& o = i.second.get_obj();
-
- if (_fillin == false)
- {
- BOOST_REQUIRE(o.count("rlp") > 0);
- const bytes rlpReaded = importByteArray(o["rlp"].get_str());
- RLP myRLP(rlpReaded);
- BlockInfo blockFromRlp;
-
- try
- {
- blockFromRlp.populateFromHeader(myRLP, false);
- //blockFromRlp.verifyInternals(rlpReaded);
- }
- catch(Exception const& _e)
- {
- cnote << "block construction did throw an exception: " << diagnostic_information(_e);
- BOOST_ERROR("Failed block construction Test with Exception: " << _e.what());
- BOOST_CHECK_MESSAGE(o.count("block") == 0, "A block object should not be defined because the block RLP is invalid!");
- return;
- }
-
- BOOST_REQUIRE(o.count("block") > 0);
-
- mObject tObj = o["block"].get_obj();
- BlockInfo blockFromFields;
- const bytes rlpreade2 = createBlockRLPFromFields(tObj);
- RLP mysecondRLP(rlpreade2);
- blockFromFields.populateFromHeader(mysecondRLP, false);
-
- //Check the fields restored from RLP to original fields
- BOOST_CHECK_MESSAGE(blockFromFields.hash == blockFromRlp.hash, "hash in given RLP not matching the block hash!");
- BOOST_CHECK_MESSAGE(blockFromFields.parentHash == blockFromRlp.parentHash, "parentHash in given RLP not matching the block parentHash!");
- BOOST_CHECK_MESSAGE(blockFromFields.sha3Uncles == blockFromRlp.sha3Uncles, "sha3Uncles in given RLP not matching the block sha3Uncles!");
- BOOST_CHECK_MESSAGE(blockFromFields.coinbaseAddress == blockFromRlp.coinbaseAddress,"coinbaseAddress in given RLP not matching the block coinbaseAddress!");
- BOOST_CHECK_MESSAGE(blockFromFields.stateRoot == blockFromRlp.stateRoot, "stateRoot in given RLP not matching the block stateRoot!");
- BOOST_CHECK_MESSAGE(blockFromFields.transactionsRoot == blockFromRlp.transactionsRoot, "transactionsRoot in given RLP not matching the block transactionsRoot!");
- BOOST_CHECK_MESSAGE(blockFromFields.logBloom == blockFromRlp.logBloom, "logBloom in given RLP not matching the block logBloom!");
- BOOST_CHECK_MESSAGE(blockFromFields.difficulty == blockFromRlp.difficulty, "difficulty in given RLP not matching the block difficulty!");
- BOOST_CHECK_MESSAGE(blockFromFields.number == blockFromRlp.number, "number in given RLP not matching the block number!");
- BOOST_CHECK_MESSAGE(blockFromFields.gasLimit == blockFromRlp.gasLimit,"gasLimit in given RLP not matching the block gasLimit!");
- BOOST_CHECK_MESSAGE(blockFromFields.gasUsed == blockFromRlp.gasUsed, "gasUsed in given RLP not matching the block gasUsed!");
- BOOST_CHECK_MESSAGE(blockFromFields.timestamp == blockFromRlp.timestamp, "timestamp in given RLP not matching the block timestamp!");
- BOOST_CHECK_MESSAGE(blockFromFields.extraData == blockFromRlp.extraData, "extraData in given RLP not matching the block extraData!");
- BOOST_CHECK_MESSAGE(blockFromFields.nonce == blockFromRlp.nonce, "nonce in given RLP not matching the block nonce!");
-
- BOOST_CHECK_MESSAGE(blockFromFields == blockFromRlp, "However, blockFromFields != blockFromRlp!");
-
- }
- else
- {
-// BOOST_REQUIRE(o.count("block") > 0);
-
-// // construct Rlp of the given block
-// bytes blockRLP = createBlockRLPFromFields(o["block"].get_obj());
-// RLP myRLP(blockRLP);
-// o["rlp"] = toHex(blockRLP);
+ for (auto& i: _v.get_obj())
+ {
+ cerr << i.first << endl;
+ mObject& o = i.second.get_obj();
+
+ if (_fillin == false)
+ {
+ // TODO
+
+ // BOOST_REQUIRE(o.count("rlp") > 0);
+ // const bytes rlpReaded = importByteArray(o["rlp"].get_str());
+ // RLP myRLP(rlpReaded);
+ // BlockInfo blockFromRlp;
+
+ // try
+ // {
+ // blockFromRlp.populateFromHeader(myRLP, false);
+ // //blockFromRlp.verifyInternals(rlpReaded);
+ // }
+ // catch(Exception const& _e)
+ // {
+ // cnote << "block construction did throw an exception: " << diagnostic_information(_e);
+ // BOOST_ERROR("Failed block construction Test with Exception: " << _e.what());
+ // BOOST_CHECK_MESSAGE(o.count("block") == 0, "A block object should not be defined because the block RLP is invalid!");
+ // return;
+ // }
+
+ // BOOST_REQUIRE(o.count("block") > 0);
+
+ // mObject tObj = o["block"].get_obj();
+ // BlockInfo blockFromFields;
+ // const bytes rlpreade2 = createBlockRLPFromFields(tObj);
+ // RLP mysecondRLP(rlpreade2);
+ // blockFromFields.populateFromHeader(mysecondRLP, false);
+
+ // //Check the fields restored from RLP to original fields
+ // BOOST_CHECK_MESSAGE(blockFromFields.hash == blockFromRlp.hash, "hash in given RLP not matching the block hash!");
+ // BOOST_CHECK_MESSAGE(blockFromFields.parentHash == blockFromRlp.parentHash, "parentHash in given RLP not matching the block parentHash!");
+ // BOOST_CHECK_MESSAGE(blockFromFields.sha3Uncles == blockFromRlp.sha3Uncles, "sha3Uncles in given RLP not matching the block sha3Uncles!");
+ // BOOST_CHECK_MESSAGE(blockFromFields.coinbaseAddress == blockFromRlp.coinbaseAddress,"coinbaseAddress in given RLP not matching the block coinbaseAddress!");
+ // BOOST_CHECK_MESSAGE(blockFromFields.stateRoot == blockFromRlp.stateRoot, "stateRoot in given RLP not matching the block stateRoot!");
+ // BOOST_CHECK_MESSAGE(blockFromFields.transactionsRoot == blockFromRlp.transactionsRoot, "transactionsRoot in given RLP not matching the block transactionsRoot!");
+ // BOOST_CHECK_MESSAGE(blockFromFields.logBloom == blockFromRlp.logBloom, "logBloom in given RLP not matching the block logBloom!");
+ // BOOST_CHECK_MESSAGE(blockFromFields.difficulty == blockFromRlp.difficulty, "difficulty in given RLP not matching the block difficulty!");
+ // BOOST_CHECK_MESSAGE(blockFromFields.number == blockFromRlp.number, "number in given RLP not matching the block number!");
+ // BOOST_CHECK_MESSAGE(blockFromFields.gasLimit == blockFromRlp.gasLimit,"gasLimit in given RLP not matching the block gasLimit!");
+ // BOOST_CHECK_MESSAGE(blockFromFields.gasUsed == blockFromRlp.gasUsed, "gasUsed in given RLP not matching the block gasUsed!");
+ // BOOST_CHECK_MESSAGE(blockFromFields.timestamp == blockFromRlp.timestamp, "timestamp in given RLP not matching the block timestamp!");
+ // BOOST_CHECK_MESSAGE(blockFromFields.extraData == blockFromRlp.extraData, "extraData in given RLP not matching the block extraData!");
+ // BOOST_CHECK_MESSAGE(blockFromFields.nonce == blockFromRlp.nonce, "nonce in given RLP not matching the block nonce!");
+
+ // BOOST_CHECK_MESSAGE(blockFromFields == blockFromRlp, "However, blockFromFields != blockFromRlp!");
+
+ }
+ else
+ {
+ BOOST_REQUIRE(o.count("block") > 0);
+
+ // construct Rlp of the given block
+ bytes blockRLP = createBlockRLPFromFields(o["block"].get_obj());
+ RLP myRLP(blockRLP);
+ BlockInfo blockFromFields;
+ cout << "blockFromFields diff:" << blockFromFields.difficulty << endl;
-// try
-// {
-// BlockInfo blockFromFields;
-// blockFromFields.populateFromHeader(myRLP, false);
-// (void)blockFromFields;
-// //blockFromFields.verifyInternals(blockRLP);
-// }
-// catch (Exception const& _e)
-// {
-// cnote << "block construction did throw an exception: " << diagnostic_information(_e);
-// BOOST_ERROR("Failed block construction Test with Exception: " << _e.what());
-// o.erase(o.find("block"));
-// }
-// catch (std::exception const& _e)
-// {
-// cnote << "block construction did throw an exception: " << _e.what();
-// BOOST_ERROR("Failed block construction Test with Exception: " << _e.what());
-// o.erase(o.find("block"));
-// }
-// catch(...)
-// {
-// cnote << "block construction did throw an unknow exception\n";
-// o.erase(o.find("block"));
-// }
+ try
+ {
+
+ blockFromFields.populateFromHeader(myRLP, false);
+ //blockFromFields.verifyInternals(blockRLP);
+ }
+ catch (Exception const& _e)
+ {
+ cnote << "block construction did throw an exception: " << diagnostic_information(_e);
+ BOOST_ERROR("Failed block construction Test with Exception: " << _e.what());
+ o.erase(o.find("block"));
+ }
+ catch (std::exception const& _e)
+ {
+ cnote << "block construction did throw an exception: " << _e.what();
+ BOOST_ERROR("Failed block construction Test with Exception: " << _e.what());
+ o.erase(o.find("block"));
+ }
+ catch(...)
+ {
+ cnote << "block construction did throw an unknown exception\n";
+ o.erase(o.find("block"));
+ }
- BOOST_REQUIRE(o.count("transactions") > 0);
+ BOOST_REQUIRE(o.count("transactions") > 0);
TransactionQueue txs;
- for (auto const& txObj: o["transactions"].get_array())
- {
- mObject tx = txObj.get_obj();
- BOOST_REQUIRE(tx.count("nonce") > 0);
- BOOST_REQUIRE(tx.count("gasPrice") > 0);
- BOOST_REQUIRE(tx.count("gasLimit") > 0);
- BOOST_REQUIRE(tx.count("to") > 0);
- BOOST_REQUIRE(tx.count("value") > 0);
- BOOST_REQUIRE(tx.count("v") > 0);
- BOOST_REQUIRE(tx.count("r") > 0);
- BOOST_REQUIRE(tx.count("s") > 0);
- BOOST_REQUIRE(tx.count("data") > 0);
+ for (auto const& txObj: o["transactions"].get_array())
+ {
+ mObject tx = txObj.get_obj();
+ BOOST_REQUIRE(tx.count("nonce") > 0);
+ BOOST_REQUIRE(tx.count("gasPrice") > 0);
+ BOOST_REQUIRE(tx.count("gasLimit") > 0);
+ BOOST_REQUIRE(tx.count("to") > 0);
+ BOOST_REQUIRE(tx.count("value") > 0);
+ BOOST_REQUIRE(tx.count("v") > 0);
+ BOOST_REQUIRE(tx.count("r") > 0);
+ BOOST_REQUIRE(tx.count("s") > 0);
+ BOOST_REQUIRE(tx.count("data") > 0);
cout << "attempt to import transaction\n";
txs.attemptImport(createTransactionFromFields(tx));
- }
+ }
cout << "done importing txs\n";
+ BOOST_REQUIRE(o.count("pre") > 0);
+ // create state
+
+ ImportTest importer(o["pre"].get_obj());
+ State theState(Address(), OverlayDB(), BaseState::Empty);
+ importer.importState(o["pre"].get_obj(), theState);
+
+ cout << "current state diff 1 : " << theState.info().difficulty << endl;
+ cout << "balance of a94f5374fce5edbc8e2a8697c15331677e6ebf0b: " << theState.balance(Address("0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b")) << endl;
+ theState.commit();
+ cout << "balance of a94f5374fce5edbc8e2a8697c15331677e6ebf0b: " << theState.balance(Address("0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b")) << endl;
+ blockFromFields.stateRoot = theState.rootHash();
+ cout << "stateRoot: " << blockFromFields.stateRoot << endl;
+ // find new nonce
+ ProofOfWork pow;
+ MineInfo ret;
+ tie(ret, blockFromFields.nonce) = pow.mine(blockFromFields.headerHash(WithoutNonce), blockFromFields.difficulty, 1000, true, false);
- //BOOST_REQUIRE(o.count("env") > 0);
- //BOOST_REQUIRE(o.count("pre") > 0);
+ // create new "genesis" block"
-// ImportTest importer;
-// importer.importEnv(o["env"].get_obj());
-// importer.importState(o["pre"].get_obj(), m_statePre);
+ RLPStream rlpStream;
+ blockFromFields.streamRLP(rlpStream, WithNonce);
-// State theState = importer.m_statePre;
-// bytes output;
+ RLPStream block(3);
+ block.appendRaw(rlpStream.out());
+ block.appendRaw(RLPEmptyList);
+ block.appendRaw(RLPEmptyList);
+ //return block.out();
+ cout << "my genesis hash: " << sha3(RLP(block.out())[0].data()) << endl;
cout << "construct bc\n";
- CanonBlockChain bc(true);
- cout << "construct state\n";
- State theState;
+ BlockChain bc(block.out(), std::string(), true);
+ cout << "pre difficulty: " << blockFromFields.difficulty << endl;
try
{
+ //cout << "sync state with pre block" << endl;
+ theState.sync(bc);
cout << "sync bc and txs in state\n";
+ cout << "balance of a94f5374fce5edbc8e2a8697c15331677e6ebf0b: " << theState.balance(Address("0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b")) << endl;
+ cout << "current state diff: " << theState.info().difficulty << endl;
theState.sync(bc,txs);
+ cout << "current state diff: " << theState.info().difficulty << endl;
// lock
cout << "commit to mine\n";
theState.commitToMine(bc); // will call uncommitToMine if a repeat.
+ cout << "current state diff: " << theState.info().difficulty << endl;
// unlock
MineInfo info;
cout << "mine...\n";
@@ -201,9 +227,11 @@ void doBlockTests(json_spirit::mValue& _v, bool _fillin)
cout << "done mining, completeMine\n";
// lock
theState.completeMine();
+ cout << "current state diff: " << theState.info().difficulty << endl;
// unlock
cout << "new block: " << theState.blockData() << endl << theState.info() << endl;
+ cout << "current diff: " << theState.info().difficulty << endl;
}
catch (Exception const& _e)
{
@@ -214,35 +242,35 @@ void doBlockTests(json_spirit::mValue& _v, bool _fillin)
cnote << "state sync did throw an exception: " << _e.what();
}
- o["rlp"] = "0x" + toHex(theState.blockData());
-
- // write block header
-
- mObject oBlockHeader;
- BlockInfo current_BlockHeader = theState.info();
- oBlockHeader["parentHash"] = toString(current_BlockHeader.parentHash);
- oBlockHeader["uncleHash"] = toString(current_BlockHeader.sha3Uncles);
- oBlockHeader["coinbase"] = toString(current_BlockHeader.coinbaseAddress);
- oBlockHeader["stateRoot"] = toString(current_BlockHeader.stateRoot);
- oBlockHeader["transactionsTrie"] = toString(current_BlockHeader.transactionsRoot);
- oBlockHeader["receiptTrie"] = toString(current_BlockHeader.receiptsRoot);
- oBlockHeader["bloom"] = toString(current_BlockHeader.logBloom);
- oBlockHeader["difficulty"] = toString(current_BlockHeader.difficulty);
- oBlockHeader["number"] = toString(current_BlockHeader.number);
- oBlockHeader["gasLimit"] = toString(current_BlockHeader.gasLimit);
- oBlockHeader["gasUsed"] = toString(current_BlockHeader.gasUsed);
- oBlockHeader["timestamp"] = toString(current_BlockHeader.timestamp);
- oBlockHeader["extraData"] = toHex(current_BlockHeader.extraData);
- oBlockHeader["nonce"] = toString(current_BlockHeader.nonce);
-
- o["blockHeader"] = oBlockHeader;
-
- // write uncle list
-
- mArray aUncleList; // as of now, our parent is always the genesis block, so we can not have uncles. That might change.
- o["uncleHeaders"] = aUncleList;
- }
- }
+ o["rlp"] = "0x" + toHex(theState.blockData());
+
+ // write block header
+
+ mObject oBlockHeader;
+ BlockInfo current_BlockHeader = theState.info();
+ oBlockHeader["parentHash"] = toString(current_BlockHeader.parentHash);
+ oBlockHeader["uncleHash"] = toString(current_BlockHeader.sha3Uncles);
+ oBlockHeader["coinbase"] = toString(current_BlockHeader.coinbaseAddress);
+ oBlockHeader["stateRoot"] = toString(current_BlockHeader.stateRoot);
+ oBlockHeader["transactionsTrie"] = toString(current_BlockHeader.transactionsRoot);
+ oBlockHeader["receiptTrie"] = toString(current_BlockHeader.receiptsRoot);
+ oBlockHeader["bloom"] = toString(current_BlockHeader.logBloom);
+ oBlockHeader["difficulty"] = toString(current_BlockHeader.difficulty);
+ oBlockHeader["number"] = toString(current_BlockHeader.number);
+ oBlockHeader["gasLimit"] = toString(current_BlockHeader.gasLimit);
+ oBlockHeader["gasUsed"] = toString(current_BlockHeader.gasUsed);
+ oBlockHeader["timestamp"] = toString(current_BlockHeader.timestamp);
+ oBlockHeader["extraData"] = toHex(current_BlockHeader.extraData);
+ oBlockHeader["nonce"] = toString(current_BlockHeader.nonce);
+
+ o["blockHeader"] = oBlockHeader;
+
+ // write uncle list
+
+ mArray aUncleList; // as of now, our parent is always the genesis block, so we can not have uncles. That will change.
+ o["uncleHeaders"] = aUncleList;
+ }
+ }
}
} }// Namespace Close
@@ -250,9 +278,14 @@ void doBlockTests(json_spirit::mValue& _v, bool _fillin)
BOOST_AUTO_TEST_SUITE(BlockTests)
-BOOST_AUTO_TEST_CASE(blFirstTest)
+//BOOST_AUTO_TEST_CASE(blFirstTest)
+//{
+// dev::test::executeTests("blFirstTest", "/BlockTests", dev::test::doBlockTests);
+//}
+
+BOOST_AUTO_TEST_CASE(blValidBlockTest)
{
- dev::test::executeTests("blFirstTest", "/BlockTests", dev::test::doBlockTests);
+ dev::test::executeTests("blValidBlockTest", "/BlockTests", dev::test::doBlockTests);
}
//BOOST_AUTO_TEST_CASE(ttCreateTest)