mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
check transactions
This commit is contained in:
parent
87b0a10052
commit
f0b2d0f30b
@ -504,31 +504,48 @@ void executeTests(const string& _name, const string& _testPathAppendix, std::fun
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bytes createTransactionFromFields(json_spirit::mObject& _tObj)
|
RLPStream createRLPStreamFromTransactionFields(json_spirit::mObject& _tObj)
|
||||||
{
|
{
|
||||||
BOOST_REQUIRE(_tObj.count("data") > 0);
|
|
||||||
BOOST_REQUIRE(_tObj.count("value") > 0);
|
|
||||||
BOOST_REQUIRE(_tObj.count("gasPrice") > 0);
|
|
||||||
BOOST_REQUIRE(_tObj.count("gasLimit") > 0);
|
|
||||||
BOOST_REQUIRE(_tObj.count("nonce")> 0);
|
|
||||||
BOOST_REQUIRE(_tObj.count("to") > 0);
|
|
||||||
|
|
||||||
BOOST_REQUIRE(_tObj.count("v") > 0);
|
|
||||||
BOOST_REQUIRE(_tObj.count("r") > 0);
|
|
||||||
BOOST_REQUIRE(_tObj.count("s") > 0);
|
|
||||||
|
|
||||||
//Construct Rlp of the given transaction
|
//Construct Rlp of the given transaction
|
||||||
RLPStream rlpStream;
|
RLPStream rlpStream;
|
||||||
rlpStream.appendList(9);
|
rlpStream.appendList(_tObj.size());
|
||||||
rlpStream << bigint(_tObj["nonce"].get_str()) << bigint(_tObj["gasPrice"].get_str()) << bigint(_tObj["gasLimit"].get_str());
|
|
||||||
if (_tObj["to"].get_str().empty())
|
|
||||||
rlpStream << "";
|
|
||||||
else
|
|
||||||
rlpStream << Address(_tObj["to"].get_str());
|
|
||||||
rlpStream << bigint(_tObj["value"].get_str()) << importData(_tObj);
|
|
||||||
rlpStream << bigint(_tObj["v"].get_str()) << bigint(_tObj["r"].get_str()) << bigint(_tObj["s"].get_str());
|
|
||||||
|
|
||||||
return rlpStream.out();
|
if (_tObj.count("nonce") > 0)
|
||||||
|
rlpStream << bigint(_tObj["nonce"].get_str());
|
||||||
|
|
||||||
|
if (_tObj.count("gasPrice") > 0)
|
||||||
|
rlpStream << bigint(_tObj["gasPrice"].get_str());
|
||||||
|
|
||||||
|
if (_tObj.count("gasLimit") > 0)
|
||||||
|
rlpStream << bigint(_tObj["gasLimit"].get_str());
|
||||||
|
|
||||||
|
if (_tObj.count("to") > 0)
|
||||||
|
{
|
||||||
|
if (_tObj["to"].get_str().empty())
|
||||||
|
rlpStream << "";
|
||||||
|
else
|
||||||
|
rlpStream << importByteArray(_tObj["to"].get_str());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_tObj.count("value") > 0)
|
||||||
|
rlpStream << bigint(_tObj["value"].get_str());
|
||||||
|
|
||||||
|
if (_tObj.count("data") > 0)
|
||||||
|
rlpStream << importData(_tObj);
|
||||||
|
|
||||||
|
if (_tObj.count("v") > 0)
|
||||||
|
rlpStream << bigint(_tObj["v"].get_str());
|
||||||
|
|
||||||
|
if (_tObj.count("r") > 0)
|
||||||
|
rlpStream << bigint(_tObj["r"].get_str());
|
||||||
|
|
||||||
|
if (_tObj.count("s") > 0)
|
||||||
|
rlpStream << bigint(_tObj["s"].get_str());
|
||||||
|
|
||||||
|
if (_tObj.count("extrafield") > 0)
|
||||||
|
rlpStream << bigint(_tObj["extrafield"].get_str());
|
||||||
|
|
||||||
|
return rlpStream;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -80,7 +80,7 @@ void checkCallCreates(eth::Transactions _resultCallCreates, eth::Transactions _e
|
|||||||
void executeTests(const std::string& _name, const std::string& _testPathAppendix, std::function<void(json_spirit::mValue&, bool)> doTests);
|
void executeTests(const std::string& _name, const std::string& _testPathAppendix, std::function<void(json_spirit::mValue&, bool)> doTests);
|
||||||
std::string getTestPath();
|
std::string getTestPath();
|
||||||
void userDefinedTest(std::string testTypeFlag, std::function<void(json_spirit::mValue&, bool)> doTests);
|
void userDefinedTest(std::string testTypeFlag, std::function<void(json_spirit::mValue&, bool)> doTests);
|
||||||
bytes createTransactionFromFields(json_spirit::mObject& _tObj);
|
RLPStream createRLPStreamFromTransactionFields(json_spirit::mObject& _tObj);
|
||||||
void processCommandLineOptions();
|
void processCommandLineOptions();
|
||||||
eth::LastHashes lastHashes(u256 _currentBlockNumber);
|
eth::LastHashes lastHashes(u256 _currentBlockNumber);
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
"pre" : {
|
"pre" : {
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
"balance" : "10000000000",
|
"balance" : "10000000000",
|
||||||
"nonce" : 0,
|
"nonce" : "0",
|
||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
91
block.cpp
91
block.cpp
@ -53,10 +53,11 @@ bytes createBlockRLPFromFields(mObject& _tObj)
|
|||||||
rlpStream.appendList(14);
|
rlpStream.appendList(14);
|
||||||
cout << "increate aha1\n";
|
cout << "increate aha1\n";
|
||||||
rlpStream << h256(_tObj["parentHash"].get_str()) << h256(_tObj["uncleHash"].get_str()) << Address(_tObj["coinbase"].get_str());
|
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 << h256(_tObj["stateRoot"].get_str()) << h256(_tObj["transactionsTrie"].get_str()) << h256(_tObj["receiptTrie"].get_str());
|
||||||
rlpStream << LogBloom(_tObj["bloom"].get_str()) << u256(_tObj["difficulty"].get_str()) << u256(_tObj["number"].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 << 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());
|
rlpStream << importByteArray(_tObj["extraData"].get_str()) << h256(_tObj["nonce"].get_str());
|
||||||
|
cout << "done createBlockRLPFromFields" << endl;
|
||||||
|
|
||||||
return rlpStream.out();
|
return rlpStream.out();
|
||||||
}
|
}
|
||||||
@ -105,12 +106,10 @@ void doBlockTests(json_spirit::mValue& _v, bool _fillin)
|
|||||||
State theState(Address(), OverlayDB(), BaseState::Empty);
|
State theState(Address(), OverlayDB(), BaseState::Empty);
|
||||||
importer.importState(o["pre"].get_obj(), theState);
|
importer.importState(o["pre"].get_obj(), theState);
|
||||||
|
|
||||||
// commit changes to DB
|
// commit changes to DB
|
||||||
theState.commit();
|
theState.commit();
|
||||||
|
|
||||||
BOOST_CHECK_MESSAGE(blockFromFields.stateRoot == theState.rootHash(), "root hash do not match");
|
BOOST_CHECK_MESSAGE(blockFromFields.stateRoot == theState.rootHash(), "root hash do not match");
|
||||||
cout << "root hash - no fill in : " << theState.rootHash() << endl;
|
|
||||||
cout << "root hash - no fill in - from block: " << blockFromFields.stateRoot << endl;
|
|
||||||
|
|
||||||
// create new "genesis" block
|
// create new "genesis" block
|
||||||
RLPStream rlpStream;
|
RLPStream rlpStream;
|
||||||
@ -123,17 +122,15 @@ void doBlockTests(json_spirit::mValue& _v, bool _fillin)
|
|||||||
|
|
||||||
blockFromFields.verifyInternals(&block.out());
|
blockFromFields.verifyInternals(&block.out());
|
||||||
|
|
||||||
// construc blockchain
|
// construct blockchain
|
||||||
BlockChain bc(block.out(), string(), true);
|
BlockChain bc(block.out(), string(), true);
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
theState.sync(bc);
|
theState.sync(bc);
|
||||||
bytes blockRLP = importByteArray(o["rlp"].get_str());
|
bytes blockRLP = importByteArray(o["rlp"].get_str());
|
||||||
cout << "import block rlp\n";
|
|
||||||
bc.import(blockRLP, theState.db());
|
bc.import(blockRLP, theState.db());
|
||||||
cout << "sync with the state\n";
|
theState.sync(bc);
|
||||||
theState.sync(bc);
|
|
||||||
}
|
}
|
||||||
// if exception is thrown, RLP is invalid and not blockHeader, Transaction list, and Uncle list should be given
|
// if exception is thrown, RLP is invalid and not blockHeader, Transaction list, and Uncle list should be given
|
||||||
catch (Exception const& _e)
|
catch (Exception const& _e)
|
||||||
@ -173,18 +170,15 @@ void doBlockTests(json_spirit::mValue& _v, bool _fillin)
|
|||||||
|
|
||||||
BlockInfo blockFromRlp = bc.info();
|
BlockInfo blockFromRlp = bc.info();
|
||||||
|
|
||||||
cout << "root hash - no fill in - from state : " << theState.rootHash() << endl;
|
|
||||||
cout << " hash - no fill in - from rlp : " << blockFromRlp.hash << endl;
|
|
||||||
cout << " hash - no fill in - from block: " << blockHeaderFromFields.hash << endl;
|
|
||||||
|
|
||||||
//Check the fields restored from RLP to original fields
|
//Check the fields restored from RLP to original fields
|
||||||
BOOST_CHECK_MESSAGE(blockHeaderFromFields.headerHash() == blockFromRlp.headerHash(), "hash in given RLP not matching the block hash!");
|
BOOST_CHECK_MESSAGE(blockHeaderFromFields.headerHash(WithNonce) == blockFromRlp.headerHash(WithNonce), "hash in given RLP not matching the block hash!");
|
||||||
BOOST_CHECK_MESSAGE(blockHeaderFromFields.parentHash == blockFromRlp.parentHash, "parentHash in given RLP not matching the block parentHash!");
|
BOOST_CHECK_MESSAGE(blockHeaderFromFields.parentHash == blockFromRlp.parentHash, "parentHash in given RLP not matching the block parentHash!");
|
||||||
BOOST_CHECK_MESSAGE(blockHeaderFromFields.sha3Uncles == blockFromRlp.sha3Uncles, "sha3Uncles in given RLP not matching the block sha3Uncles!");
|
BOOST_CHECK_MESSAGE(blockHeaderFromFields.sha3Uncles == blockFromRlp.sha3Uncles, "sha3Uncles in given RLP not matching the block sha3Uncles!");
|
||||||
BOOST_CHECK_MESSAGE(blockHeaderFromFields.coinbaseAddress == blockFromRlp.coinbaseAddress,"coinbaseAddress in given RLP not matching the block coinbaseAddress!");
|
BOOST_CHECK_MESSAGE(blockHeaderFromFields.coinbaseAddress == blockFromRlp.coinbaseAddress,"coinbaseAddress in given RLP not matching the block coinbaseAddress!");
|
||||||
BOOST_CHECK_MESSAGE(blockHeaderFromFields.stateRoot == blockFromRlp.stateRoot, "stateRoot in given RLP not matching the block stateRoot!");
|
BOOST_CHECK_MESSAGE(blockHeaderFromFields.stateRoot == blockFromRlp.stateRoot, "stateRoot in given RLP not matching the block stateRoot!");
|
||||||
BOOST_CHECK_MESSAGE(blockHeaderFromFields.transactionsRoot == blockFromRlp.transactionsRoot, "transactionsRoot in given RLP not matching the block transactionsRoot!");
|
BOOST_CHECK_MESSAGE(blockHeaderFromFields.transactionsRoot == blockFromRlp.transactionsRoot, "transactionsRoot in given RLP not matching the block transactionsRoot!");
|
||||||
BOOST_CHECK_MESSAGE(blockHeaderFromFields.logBloom == blockFromRlp.logBloom, "logBloom in given RLP not matching the block logBloom!");
|
BOOST_CHECK_MESSAGE(blockHeaderFromFields.receiptsRoot == blockFromRlp.receiptsRoot, "receiptsRoot in given RLP not matching the block receiptsRoot!");
|
||||||
|
BOOST_CHECK_MESSAGE(blockHeaderFromFields.logBloom == blockFromRlp.logBloom, "logBloom in given RLP not matching the block logBloom!");
|
||||||
BOOST_CHECK_MESSAGE(blockHeaderFromFields.difficulty == blockFromRlp.difficulty, "difficulty in given RLP not matching the block difficulty!");
|
BOOST_CHECK_MESSAGE(blockHeaderFromFields.difficulty == blockFromRlp.difficulty, "difficulty in given RLP not matching the block difficulty!");
|
||||||
BOOST_CHECK_MESSAGE(blockHeaderFromFields.number == blockFromRlp.number, "number in given RLP not matching the block number!");
|
BOOST_CHECK_MESSAGE(blockHeaderFromFields.number == blockFromRlp.number, "number in given RLP not matching the block number!");
|
||||||
BOOST_CHECK_MESSAGE(blockHeaderFromFields.gasLimit == blockFromRlp.gasLimit,"gasLimit in given RLP not matching the block gasLimit!");
|
BOOST_CHECK_MESSAGE(blockHeaderFromFields.gasLimit == blockFromRlp.gasLimit,"gasLimit in given RLP not matching the block gasLimit!");
|
||||||
@ -195,6 +189,65 @@ void doBlockTests(json_spirit::mValue& _v, bool _fillin)
|
|||||||
|
|
||||||
BOOST_CHECK_MESSAGE(blockHeaderFromFields == blockFromRlp, "However, blockHeaderFromFields != blockFromRlp!");
|
BOOST_CHECK_MESSAGE(blockHeaderFromFields == blockFromRlp, "However, blockHeaderFromFields != blockFromRlp!");
|
||||||
|
|
||||||
|
//Check transaction list
|
||||||
|
|
||||||
|
Transactions txsFromField;
|
||||||
|
|
||||||
|
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);
|
||||||
|
|
||||||
|
Transaction t(createRLPStreamFromTransactionFields(tx).out(), CheckSignature::Sender);
|
||||||
|
txsFromField.push_back(t);
|
||||||
|
}
|
||||||
|
|
||||||
|
Transactions txsFromRlp;
|
||||||
|
bytes blockRLP2 = importByteArray(o["rlp"].get_str());
|
||||||
|
RLP root(blockRLP2);
|
||||||
|
for (auto const& tr: root[1])
|
||||||
|
{
|
||||||
|
Transaction tx(tr.data(), CheckSignature::Sender);
|
||||||
|
txsFromRlp.push_back(tx);
|
||||||
|
}
|
||||||
|
|
||||||
|
cout << "size of pending transactions: " << txsFromRlp.size() << endl;
|
||||||
|
|
||||||
|
BOOST_CHECK_MESSAGE(txsFromRlp.size() == txsFromField.size(), "transaction list size does not match");
|
||||||
|
|
||||||
|
for (size_t i = 0; i < txsFromField.size(); ++i)
|
||||||
|
{
|
||||||
|
BOOST_CHECK_MESSAGE(txsFromField[i].data() == txsFromRlp[i].data(), "transaction data in rlp and in field do not match");
|
||||||
|
BOOST_CHECK_MESSAGE(txsFromField[i].gas() == txsFromRlp[i].gas(), "transaction gasLimit in rlp and in field do not match");
|
||||||
|
BOOST_CHECK_MESSAGE(txsFromField[i].gasPrice() == txsFromRlp[i].gasPrice(), "transaction gasPrice in rlp and in field do not match");
|
||||||
|
BOOST_CHECK_MESSAGE(txsFromField[i].nonce() == txsFromRlp[i].nonce(), "transaction nonce in rlp and in field do not match");
|
||||||
|
BOOST_CHECK_MESSAGE(txsFromField[i].signature().r == txsFromRlp[i].signature().r, "transaction r in rlp and in field do not match");
|
||||||
|
BOOST_CHECK_MESSAGE(txsFromField[i].signature().s == txsFromRlp[i].signature().s, "transaction s in rlp and in field do not match");
|
||||||
|
BOOST_CHECK_MESSAGE(txsFromField[i].signature().v == txsFromRlp[i].signature().v, "transaction v in rlp and in field do not match");
|
||||||
|
BOOST_CHECK_MESSAGE(txsFromField[i].receiveAddress() == txsFromRlp[i].receiveAddress(), "transaction receiveAddress in rlp and in field do not match");
|
||||||
|
BOOST_CHECK_MESSAGE(txsFromField[i].value() == txsFromRlp[i].value(), "transaction receiveAddress in rlp and in field do not match");
|
||||||
|
|
||||||
|
BOOST_CHECK_MESSAGE(txsFromField[i] == txsFromRlp[i], "however, transactions in rlp and in field do not match");
|
||||||
|
}
|
||||||
|
|
||||||
|
// check uncle list
|
||||||
|
|
||||||
|
BOOST_CHECK_MESSAGE(o["uncleList"].get_array().size() == 0, "Uncle list is not empty, but the genesis block can not have uncles");
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -256,7 +309,9 @@ void doBlockTests(json_spirit::mValue& _v, bool _fillin)
|
|||||||
BOOST_REQUIRE(tx.count("s") > 0);
|
BOOST_REQUIRE(tx.count("s") > 0);
|
||||||
BOOST_REQUIRE(tx.count("data") > 0);
|
BOOST_REQUIRE(tx.count("data") > 0);
|
||||||
|
|
||||||
if (!txs.attemptImport(createTransactionFromFields(tx)))
|
//Transaction txFromFields(createRLPStreamFromTransactionFields(tx).out(), CheckSignature::Sender);
|
||||||
|
|
||||||
|
if (!txs.attemptImport(&createRLPStreamFromTransactionFields(tx).out()))
|
||||||
cnote << "failed importing transaction\n";
|
cnote << "failed importing transaction\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -339,8 +394,8 @@ void doBlockTests(json_spirit::mValue& _v, bool _fillin)
|
|||||||
|
|
||||||
// write uncle list
|
// write uncle list
|
||||||
|
|
||||||
mArray aUncleList; // as of now, our parent is always the genesis block, so we can not have uncles.
|
mArray aUncleList; // as of now, our parent is always the genesis block, so we can not have uncles.
|
||||||
o["uncleHeaders"] = aUncleList;
|
o["uncleHeaders"] = aUncleList;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -29,50 +29,6 @@ using namespace dev::eth;
|
|||||||
|
|
||||||
namespace dev { namespace test {
|
namespace dev { namespace test {
|
||||||
|
|
||||||
RLPStream createRLPStreamFromTransactionFields(mObject& _tObj)
|
|
||||||
{
|
|
||||||
//Construct Rlp of the given transaction
|
|
||||||
RLPStream rlpStream;
|
|
||||||
rlpStream.appendList(_tObj.size());
|
|
||||||
|
|
||||||
if (_tObj.count("nonce") > 0)
|
|
||||||
rlpStream << bigint(_tObj["nonce"].get_str());
|
|
||||||
|
|
||||||
if (_tObj.count("gasPrice") > 0)
|
|
||||||
rlpStream << bigint(_tObj["gasPrice"].get_str());
|
|
||||||
|
|
||||||
if (_tObj.count("gasLimit") > 0)
|
|
||||||
rlpStream << bigint(_tObj["gasLimit"].get_str());
|
|
||||||
|
|
||||||
if (_tObj.count("to") > 0)
|
|
||||||
{
|
|
||||||
if (_tObj["to"].get_str().empty())
|
|
||||||
rlpStream << "";
|
|
||||||
else
|
|
||||||
rlpStream << importByteArray(_tObj["to"].get_str());
|
|
||||||
}
|
|
||||||
|
|
||||||
if (_tObj.count("value") > 0)
|
|
||||||
rlpStream << bigint(_tObj["value"].get_str());
|
|
||||||
|
|
||||||
if (_tObj.count("data") > 0)
|
|
||||||
rlpStream << importData(_tObj);
|
|
||||||
|
|
||||||
if (_tObj.count("v") > 0)
|
|
||||||
rlpStream << bigint(_tObj["v"].get_str());
|
|
||||||
|
|
||||||
if (_tObj.count("r") > 0)
|
|
||||||
rlpStream << bigint(_tObj["r"].get_str());
|
|
||||||
|
|
||||||
if (_tObj.count("s") > 0)
|
|
||||||
rlpStream << bigint(_tObj["s"].get_str());
|
|
||||||
|
|
||||||
if (_tObj.count("extrafield") > 0)
|
|
||||||
rlpStream << bigint(_tObj["extrafield"].get_str());
|
|
||||||
|
|
||||||
return rlpStream;
|
|
||||||
}
|
|
||||||
|
|
||||||
void doTransactionTests(json_spirit::mValue& _v, bool _fillin)
|
void doTransactionTests(json_spirit::mValue& _v, bool _fillin)
|
||||||
{
|
{
|
||||||
for (auto& i: _v.get_obj())
|
for (auto& i: _v.get_obj())
|
||||||
|
Loading…
Reference in New Issue
Block a user