mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Updates to VM tests.
This commit is contained in:
parent
b9b7fa2078
commit
87d48881d8
3
fork.cpp
3
fork.cpp
@ -29,6 +29,8 @@
|
|||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace eth;
|
using namespace eth;
|
||||||
|
|
||||||
|
// Disabled since tests shouldn't block. Need a short cut to avoid real mining.
|
||||||
|
/*
|
||||||
BOOST_AUTO_TEST_CASE(simple_chain_fork)
|
BOOST_AUTO_TEST_CASE(simple_chain_fork)
|
||||||
{
|
{
|
||||||
//start a client and mine a short chain
|
//start a client and mine a short chain
|
||||||
@ -54,3 +56,4 @@ BOOST_AUTO_TEST_CASE(simple_chain_fork)
|
|||||||
BOOST_REQUIRE(c1.state().balance(c1.address()) == 0);
|
BOOST_REQUIRE(c1.state().balance(c1.address()) == 0);
|
||||||
BOOST_REQUIRE(c2.state().balance(c2.address()) > 0);
|
BOOST_REQUIRE(c2.state().balance(c2.address()) > 0);
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
@ -29,6 +29,8 @@
|
|||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace eth;
|
using namespace eth;
|
||||||
|
|
||||||
|
// Disabled since tests shouldn't block (not the worst offender, but timeout should be reduced anyway).
|
||||||
|
/*
|
||||||
BOOST_AUTO_TEST_CASE(listen_port_busy)
|
BOOST_AUTO_TEST_CASE(listen_port_busy)
|
||||||
{
|
{
|
||||||
short port = 20000;
|
short port = 20000;
|
||||||
@ -49,3 +51,4 @@ BOOST_AUTO_TEST_CASE(listen_port_busy)
|
|||||||
BOOST_REQUIRE(c1.peerServer()->listenPort() != 0);
|
BOOST_REQUIRE(c1.peerServer()->listenPort() != 0);
|
||||||
BOOST_REQUIRE(c1.peerServer()->listenPort() != port);
|
BOOST_REQUIRE(c1.peerServer()->listenPort() != port);
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
@ -29,6 +29,8 @@
|
|||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace eth;
|
using namespace eth;
|
||||||
|
|
||||||
|
// Disabled since tests shouldn't block. Need a short cut to avoid real mining.
|
||||||
|
/*
|
||||||
BOOST_AUTO_TEST_CASE(mine_local_simple_tx)
|
BOOST_AUTO_TEST_CASE(mine_local_simple_tx)
|
||||||
{
|
{
|
||||||
KeyPair kp1 = KeyPair::create();
|
KeyPair kp1 = KeyPair::create();
|
||||||
@ -115,3 +117,4 @@ BOOST_AUTO_TEST_CASE(mine_and_send_to_peer_fee_check)
|
|||||||
BOOST_REQUIRE(c1EndBalance == c1StartBalance - txAmount - gasPrice * gas);
|
BOOST_REQUIRE(c1EndBalance == c1StartBalance - txAmount - gasPrice * gas);
|
||||||
BOOST_REQUIRE(c2EndBalance > 0);
|
BOOST_REQUIRE(c2EndBalance > 0);
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
211
vm.cpp
211
vm.cpp
@ -47,11 +47,11 @@ public:
|
|||||||
|
|
||||||
u256 store(u256 _n)
|
u256 store(u256 _n)
|
||||||
{
|
{
|
||||||
return get<3>(addresses[myAddress])[_n];
|
return get<2>(addresses[myAddress])[_n];
|
||||||
}
|
}
|
||||||
void setStore(u256 _n, u256 _v)
|
void setStore(u256 _n, u256 _v)
|
||||||
{
|
{
|
||||||
get<3>(addresses[myAddress])[_n] = _v;
|
get<2>(addresses[myAddress])[_n] = _v;
|
||||||
}
|
}
|
||||||
u256 balance(Address _a) { return get<0>(addresses[_a]); }
|
u256 balance(Address _a) { return get<0>(addresses[_a]); }
|
||||||
void subBalance(u256 _a) { get<0>(addresses[myAddress]) -= _a; }
|
void subBalance(u256 _a) { get<0>(addresses[myAddress]) -= _a; }
|
||||||
@ -61,36 +61,41 @@ public:
|
|||||||
get<0>(addresses[_a]) += get<0>(addresses[myAddress]);
|
get<0>(addresses[_a]) += get<0>(addresses[myAddress]);
|
||||||
addresses.erase(myAddress);
|
addresses.erase(myAddress);
|
||||||
}
|
}
|
||||||
void transact(Transaction& _t)
|
|
||||||
{
|
|
||||||
if (get<0>(addresses[myAddress]) >= _t.value)
|
|
||||||
{
|
|
||||||
get<0>(addresses[myAddress]) -= _t.value;
|
|
||||||
get<1>(addresses[myAddress])++;
|
|
||||||
// get<0>(addresses[_t.receiveAddress]) += _t.value;
|
|
||||||
txs.push_back(_t);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
h160 create(u256 _endowment, u256* _gas, bytesConstRef _init)
|
h160 create(u256 _endowment, u256* _gas, bytesConstRef _init)
|
||||||
{
|
{
|
||||||
|
Address na = right160(sha3(rlpList(myAddress, get<1>(addresses[myAddress]))));
|
||||||
|
if (get<0>(addresses[myAddress]) >= _endowment)
|
||||||
|
{
|
||||||
|
get<0>(addresses[myAddress]) -= _endowment;
|
||||||
|
get<1>(addresses[myAddress])++;
|
||||||
|
get<0>(addresses[na]) = _endowment;
|
||||||
|
// TODO: actually execute...
|
||||||
|
}
|
||||||
Transaction t;
|
Transaction t;
|
||||||
t.value = _endowment;
|
t.value = _endowment;
|
||||||
t.gasPrice = gasPrice;
|
t.gasPrice = gasPrice;
|
||||||
t.gas = *_gas;
|
t.gas = *_gas;
|
||||||
t.data = _init.toBytes();
|
t.data = _init.toBytes();
|
||||||
txs.push_back(t);
|
callcreates.push_back(t);
|
||||||
return right160(t.sha3(false));
|
return na;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool call(Address _receiveAddress, u256 _value, bytesConstRef _data, u256* _gas, bytesRef _out)
|
bool call(Address _receiveAddress, u256 _value, bytesConstRef _data, u256* _gas, bytesRef _out)
|
||||||
{
|
{
|
||||||
|
if (get<0>(addresses[myAddress]) >= _value)
|
||||||
|
{
|
||||||
|
get<0>(addresses[myAddress]) -= _value;
|
||||||
|
get<1>(addresses[myAddress])++;
|
||||||
|
get<0>(addresses[_receiveAddress]) += _value;
|
||||||
|
// TODO: actually execute...
|
||||||
|
}
|
||||||
Transaction t;
|
Transaction t;
|
||||||
t.value = _value;
|
t.value = _value;
|
||||||
t.gasPrice = gasPrice;
|
t.gasPrice = gasPrice;
|
||||||
t.gas = *_gas;
|
t.gas = *_gas;
|
||||||
t.data = _data.toVector();
|
t.data = _data.toVector();
|
||||||
t.receiveAddress = _receiveAddress;
|
t.receiveAddress = _receiveAddress;
|
||||||
txs.push_back(t);
|
callcreates.push_back(t);
|
||||||
(void)_out;
|
(void)_out;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -99,54 +104,69 @@ public:
|
|||||||
{
|
{
|
||||||
caller = origin = _caller;
|
caller = origin = _caller;
|
||||||
value = _value;
|
value = _value;
|
||||||
data = &_data;
|
data = &(thisTxData = _data);
|
||||||
gasPrice = _gasPrice;
|
gasPrice = _gasPrice;
|
||||||
}
|
}
|
||||||
void setContract(Address _myAddress, u256 _myBalance, u256 _myNonce, bytes const& _code, map<u256, u256> const& _storage)
|
void setContract(Address _myAddress, u256 _myBalance, u256 _myNonce, map<u256, u256> const& _storage, bytes const& _code)
|
||||||
{
|
{
|
||||||
myAddress = _myAddress;
|
myAddress = _myAddress;
|
||||||
set(myAddress, _myBalance, _myNonce, _code, _storage);
|
set(myAddress, _myBalance, _myNonce, _storage, _code);
|
||||||
}
|
}
|
||||||
void set(Address _a, u256 _myBalance, u256 _myNonce, bytes const& _code, map<u256, u256> const& _storage)
|
void set(Address _a, u256 _myBalance, u256 _myNonce, map<u256, u256> const& _storage, bytes const& _code)
|
||||||
{
|
{
|
||||||
get<0>(addresses[_a]) = _myBalance;
|
get<0>(addresses[_a]) = _myBalance;
|
||||||
get<1>(addresses[_a]) = _myNonce;
|
get<1>(addresses[_a]) = _myNonce;
|
||||||
get<2>(addresses[_a]) = 0;
|
get<2>(addresses[_a]) = _storage;
|
||||||
get<3>(addresses[_a]) = _storage;
|
get<3>(addresses[_a]) = _code;
|
||||||
get<4>(addresses[_a]) = _code;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void reset(u256 _myBalance, u256 _myNonce, map<u256, u256> const& _storage)
|
void reset(u256 _myBalance, u256 _myNonce, map<u256, u256> const& _storage)
|
||||||
{
|
{
|
||||||
txs.clear();
|
callcreates.clear();
|
||||||
addresses.clear();
|
addresses.clear();
|
||||||
set(myAddress, _myBalance, _myNonce, get<4>(addresses[myAddress]), _storage);
|
set(myAddress, _myBalance, _myNonce, _storage, get<3>(addresses[myAddress]));
|
||||||
}
|
}
|
||||||
|
|
||||||
mObject exportEnv()
|
mObject exportEnv()
|
||||||
{
|
{
|
||||||
mObject ret;
|
mObject ret;
|
||||||
ret["previousHash"] = toString(previousBlock.hash);
|
ret["previousHash"] = toString(previousBlock.hash);
|
||||||
ret["previousNonce"] = toString(previousBlock.nonce);
|
|
||||||
push(ret, "currentDifficulty", currentBlock.difficulty);
|
push(ret, "currentDifficulty", currentBlock.difficulty);
|
||||||
push(ret, "currentTimestamp", currentBlock.timestamp);
|
push(ret, "currentTimestamp", currentBlock.timestamp);
|
||||||
ret["currentCoinbase"] = toString(currentBlock.coinbaseAddress);
|
ret["currentCoinbase"] = toString(currentBlock.coinbaseAddress);
|
||||||
|
push(ret, "currentNumber", currentBlock.number);
|
||||||
|
push(ret, "currentGasLimit", currentBlock.gasLimit);
|
||||||
|
|
||||||
|
mArray c;
|
||||||
|
for (auto const& i: code)
|
||||||
|
push(c, i);
|
||||||
|
ret["code"] = c;
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
void importEnv(mObject& _o)
|
void importEnv(mObject& _o)
|
||||||
{
|
{
|
||||||
BOOST_REQUIRE(_o.count("previousHash") > 0);
|
BOOST_REQUIRE(_o.count("previousHash") > 0);
|
||||||
BOOST_REQUIRE(_o.count("previousNonce") > 0 );
|
BOOST_REQUIRE(_o.count("currentGasLimit") > 0);
|
||||||
BOOST_REQUIRE(_o.count("currentDifficulty") > 0);
|
BOOST_REQUIRE(_o.count("currentDifficulty") > 0);
|
||||||
BOOST_REQUIRE(_o.count("currentTimestamp") > 0);
|
BOOST_REQUIRE(_o.count("currentTimestamp") > 0);
|
||||||
BOOST_REQUIRE(_o.count("currentCoinbase") > 0);
|
BOOST_REQUIRE(_o.count("currentCoinbase") > 0);
|
||||||
|
BOOST_REQUIRE(_o.count("currentNumber") > 0);
|
||||||
|
|
||||||
previousBlock.hash = h256(_o["previousHash"].get_str());
|
previousBlock.hash = h256(_o["previousHash"].get_str());
|
||||||
previousBlock.nonce = h256(_o["previousNonce"].get_str());
|
currentBlock.number = toInt(_o["currentNumber"]);
|
||||||
|
currentBlock.gasLimit = toInt(_o["gasLimit"]);
|
||||||
currentBlock.difficulty = toInt(_o["currentDifficulty"]);
|
currentBlock.difficulty = toInt(_o["currentDifficulty"]);
|
||||||
currentBlock.timestamp = toInt(_o["currentTimestamp"]);
|
currentBlock.timestamp = toInt(_o["currentTimestamp"]);
|
||||||
currentBlock.coinbaseAddress = Address(_o["currentCoinbase"].get_str());
|
currentBlock.coinbaseAddress = Address(_o["currentCoinbase"].get_str());
|
||||||
|
|
||||||
|
thisTxCode.clear();
|
||||||
|
if (_o["code"].type() == str_type)
|
||||||
|
compileLisp(_o["code"].get_str(), false, thisTxCode);
|
||||||
|
else
|
||||||
|
for (auto const& j: _o["code"].get_array())
|
||||||
|
thisTxCode.push_back(toByte(j));
|
||||||
|
code = &thisTxCode;
|
||||||
}
|
}
|
||||||
|
|
||||||
static u256 toInt(mValue const& _v)
|
static u256 toInt(mValue const& _v)
|
||||||
@ -200,11 +220,12 @@ public:
|
|||||||
push(o, "balance", get<0>(a.second));
|
push(o, "balance", get<0>(a.second));
|
||||||
push(o, "nonce", get<1>(a.second));
|
push(o, "nonce", get<1>(a.second));
|
||||||
|
|
||||||
|
{
|
||||||
mObject store;
|
mObject store;
|
||||||
string curKey;
|
string curKey;
|
||||||
u256 li = 0;
|
u256 li = 0;
|
||||||
mArray curVal;
|
mArray curVal;
|
||||||
for (auto const& s: get<3>(a.second))
|
for (auto const& s: get<2>(a.second))
|
||||||
{
|
{
|
||||||
if (!li || s.first > li + 8)
|
if (!li || s.first > li + 8)
|
||||||
{
|
{
|
||||||
@ -221,10 +242,16 @@ public:
|
|||||||
++li;
|
++li;
|
||||||
}
|
}
|
||||||
if (li)
|
if (li)
|
||||||
{
|
|
||||||
store[curKey] = curVal;
|
store[curKey] = curVal;
|
||||||
o["store"] = store;
|
o["storage"] = store;
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
mArray d;
|
||||||
|
for (auto const& i: get<3>(a.second))
|
||||||
|
push(d, i);
|
||||||
|
ret["code"] = d;
|
||||||
|
}
|
||||||
|
|
||||||
ret[toString(a.first)] = o;
|
ret[toString(a.first)] = o;
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
@ -237,36 +264,38 @@ public:
|
|||||||
mObject o = i.second.get_obj();
|
mObject o = i.second.get_obj();
|
||||||
BOOST_REQUIRE(o.count("balance") > 0);
|
BOOST_REQUIRE(o.count("balance") > 0);
|
||||||
BOOST_REQUIRE(o.count("nonce") > 0);
|
BOOST_REQUIRE(o.count("nonce") > 0);
|
||||||
BOOST_REQUIRE(o.count("store") > 0 );
|
BOOST_REQUIRE(o.count("storage") > 0);
|
||||||
|
BOOST_REQUIRE(o.count("code") > 0);
|
||||||
|
|
||||||
auto& a = addresses[Address(i.first)];
|
auto& a = addresses[Address(i.first)];
|
||||||
get<0>(a) = toInt(o["balance"]);
|
get<0>(a) = toInt(o["balance"]);
|
||||||
get<1>(a) = toInt(o["nonce"]);
|
get<1>(a) = toInt(o["nonce"]);
|
||||||
if (o.count("store"))
|
for (auto const& j: o["storage"].get_obj())
|
||||||
for (auto const& j: o["store"].get_obj())
|
|
||||||
{
|
{
|
||||||
u256 adr(j.first);
|
u256 adr(j.first);
|
||||||
for (auto const& k: j.second.get_array())
|
for (auto const& k: j.second.get_array())
|
||||||
get<3>(a)[adr++] = toInt(k);
|
get<2>(a)[adr++] = toInt(k);
|
||||||
}
|
}
|
||||||
if (o.count("code"))
|
if (o["code"].type() == str_type)
|
||||||
|
compileLisp(o["code"].get_str(), false, get<3>(a));
|
||||||
|
else
|
||||||
{
|
{
|
||||||
bytes e;
|
get<3>(a).clear();
|
||||||
bytes d = compileLisp(o["code"].get_str(), false, e);
|
for (auto const& j: o["code"].get_array())
|
||||||
get<4>(a) = d;
|
get<3>(a).push_back(toByte(j));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mObject exportExec()
|
mObject exportExec()
|
||||||
{
|
{
|
||||||
|
|
||||||
mObject ret;
|
mObject ret;
|
||||||
ret["address"] = toString(myAddress);
|
ret["address"] = toString(myAddress);
|
||||||
ret["caller"] = toString(caller);
|
ret["caller"] = toString(caller);
|
||||||
ret["origin"] = toString(origin);
|
ret["origin"] = toString(origin);
|
||||||
push(ret, "value", value);
|
push(ret, "value", value);
|
||||||
push(ret, "gasPrice", gasPrice);
|
push(ret, "gasPrice", gasPrice);
|
||||||
|
push(ret, "gas", gas);
|
||||||
mArray d;
|
mArray d;
|
||||||
for (auto const& i: data)
|
for (auto const& i: data)
|
||||||
push(d, i);
|
push(d, i);
|
||||||
@ -280,27 +309,34 @@ public:
|
|||||||
BOOST_REQUIRE(_o.count("caller") > 0);
|
BOOST_REQUIRE(_o.count("caller") > 0);
|
||||||
BOOST_REQUIRE(_o.count("origin") > 0);
|
BOOST_REQUIRE(_o.count("origin") > 0);
|
||||||
BOOST_REQUIRE(_o.count("value") > 0);
|
BOOST_REQUIRE(_o.count("value") > 0);
|
||||||
BOOST_REQUIRE(_o.count("gasPrice") > 0);
|
|
||||||
BOOST_REQUIRE(_o.count("data") > 0);
|
BOOST_REQUIRE(_o.count("data") > 0);
|
||||||
|
BOOST_REQUIRE(_o.count("gasPrice") > 0);
|
||||||
|
BOOST_REQUIRE(_o.count("gas") > 0);
|
||||||
|
|
||||||
myAddress = Address(_o["address"].get_str());
|
myAddress = Address(_o["address"].get_str());
|
||||||
caller = Address(_o["caller"].get_str());
|
caller = Address(_o["caller"].get_str());
|
||||||
origin = Address(_o["origin"].get_str());
|
origin = Address(_o["origin"].get_str());
|
||||||
value = toInt(_o["value"]);
|
value = toInt(_o["value"]);
|
||||||
gasPrice = toInt(_o["gasPrice"]);
|
gasPrice = toInt(_o["gasPrice"]);
|
||||||
|
gas = toInt(_o["gas"]);
|
||||||
|
|
||||||
thisTxData.clear();
|
thisTxData.clear();
|
||||||
|
if (_o["data"].type() == str_type)
|
||||||
|
thisTxData = fromHex(_o["data"].get_str());
|
||||||
|
else
|
||||||
for (auto const& j: _o["data"].get_array())
|
for (auto const& j: _o["data"].get_array())
|
||||||
thisTxData.push_back(toByte(j));
|
thisTxData.push_back(toByte(j));
|
||||||
data = &thisTxData;
|
data = &thisTxData;
|
||||||
}
|
}
|
||||||
|
|
||||||
mArray exportTxs()
|
mArray exportCallCreates()
|
||||||
{
|
{
|
||||||
mArray ret;
|
mArray ret;
|
||||||
for (Transaction const& tx: txs)
|
for (Transaction const& tx: callcreates)
|
||||||
{
|
{
|
||||||
mObject o;
|
mObject o;
|
||||||
o["destination"] = toString(tx.receiveAddress);
|
o["destination"] = toString(tx.receiveAddress);
|
||||||
|
push(o, "gasLimit", tx.gas);
|
||||||
push(o, "value", tx.value);
|
push(o, "value", tx.value);
|
||||||
mArray d;
|
mArray d;
|
||||||
for (auto const& i: tx.data)
|
for (auto const& i: tx.data)
|
||||||
@ -311,32 +347,38 @@ public:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
void importTxs(mArray& _txs)
|
void importCallCreates(mArray& _callcreates)
|
||||||
{
|
{
|
||||||
for (mValue& v: _txs)
|
for (mValue& v: _callcreates)
|
||||||
{
|
{
|
||||||
auto tx = v.get_obj();
|
auto tx = v.get_obj();
|
||||||
BOOST_REQUIRE(tx.count("destination") > 0);
|
|
||||||
BOOST_REQUIRE(tx.count("value") > 0 );
|
|
||||||
BOOST_REQUIRE(tx.count("data") > 0);
|
BOOST_REQUIRE(tx.count("data") > 0);
|
||||||
|
BOOST_REQUIRE(tx.count("value") > 0);
|
||||||
|
BOOST_REQUIRE(tx.count("destination") > 0);
|
||||||
|
BOOST_REQUIRE(tx.count("gasLimit") > 0);
|
||||||
Transaction t;
|
Transaction t;
|
||||||
t.receiveAddress = Address(tx["destination"].get_str());
|
t.receiveAddress = Address(tx["destination"].get_str());
|
||||||
t.value = toInt(tx["value"]);
|
t.value = toInt(tx["value"]);
|
||||||
|
t.gas = toInt(tx["gasLimit"]);
|
||||||
|
if (tx["data"].type() == str_type)
|
||||||
|
t.data = fromHex(tx["data"].get_str());
|
||||||
|
else
|
||||||
for (auto const& j: tx["data"].get_array())
|
for (auto const& j: tx["data"].get_array())
|
||||||
t.data.push_back(toByte(j));
|
t.data.push_back(toByte(j));
|
||||||
txs.push_back(t);
|
callcreates.push_back(t);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
map<Address, tuple<u256, u256, u256, map<u256, u256>, bytes>> addresses;
|
map<Address, tuple<u256, u256, map<u256, u256>, bytes>> addresses;
|
||||||
Transactions txs;
|
Transactions callcreates;
|
||||||
bytes thisTxData;
|
bytes thisTxData;
|
||||||
|
bytes thisTxCode;
|
||||||
|
u256 gas;
|
||||||
};
|
};
|
||||||
|
|
||||||
void doTests(json_spirit::mValue& v, bool _fillin)
|
void doTests(json_spirit::mValue& v, bool _fillin)
|
||||||
{
|
{
|
||||||
for (auto& i: v.get_obj())
|
for (auto& i: v.get_obj())
|
||||||
|
|
||||||
{
|
{
|
||||||
cnote << i.first;
|
cnote << i.first;
|
||||||
mObject& o = i.second.get_obj();
|
mObject& o = i.second.get_obj();
|
||||||
@ -357,58 +399,43 @@ public:
|
|||||||
for (auto i: o["exec"].get_array())
|
for (auto i: o["exec"].get_array())
|
||||||
{
|
{
|
||||||
fev.importExec(i.get_obj());
|
fev.importExec(i.get_obj());
|
||||||
|
vm.reset(fev.gas);
|
||||||
output = vm.go(fev).toBytes();
|
output = vm.go(fev).toBytes();
|
||||||
}
|
}
|
||||||
if (_fillin)
|
if (_fillin)
|
||||||
{
|
{
|
||||||
o["post"] = mValue(fev.exportState());
|
o["post"] = mValue(fev.exportState());
|
||||||
o["txs"] = fev.exportTxs();
|
o["callcreates"] = fev.exportCallCreates();
|
||||||
mArray df;
|
mArray df;
|
||||||
for (auto const& i: output)
|
for (auto const& i: output)
|
||||||
FakeExtVM::push(df, i);
|
FakeExtVM::push(df, i);
|
||||||
o["out"] = df;
|
o["out"] = df;
|
||||||
|
fev.push(o, "gas", vm.gas());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
BOOST_REQUIRE(o.count("post") > 0);
|
BOOST_REQUIRE(o.count("post") > 0);
|
||||||
BOOST_REQUIRE( o.count("txs") > 0 );
|
BOOST_REQUIRE(o.count("callcreates") > 0);
|
||||||
BOOST_REQUIRE(o.count("out") > 0);
|
BOOST_REQUIRE(o.count("out") > 0);
|
||||||
|
BOOST_REQUIRE(o.count("gas") > 0);
|
||||||
|
|
||||||
eth::test::FakeExtVM test;
|
eth::test::FakeExtVM test;
|
||||||
test.importState(o["post"].get_obj());
|
test.importState(o["post"].get_obj());
|
||||||
test.importTxs(o["txs"].get_array());
|
test.importCallCreates(o["callcreates"].get_array());
|
||||||
int i = 0;
|
int i = 0;
|
||||||
for (auto const& d: o["out"].get_array())
|
for (auto const& d: o["out"].get_array())
|
||||||
{
|
{
|
||||||
BOOST_CHECK_MESSAGE(output[i] == FakeExtVM::toInt(d), "Output byte [" << i << "] different!");
|
BOOST_CHECK_MESSAGE(output[i] == FakeExtVM::toInt(d), "Output byte [" << i << "] different!");
|
||||||
++i;
|
++i;
|
||||||
}
|
}
|
||||||
|
BOOST_CHECK(FakeExtVM::toInt(o["gas"]) == vm.gas());
|
||||||
BOOST_CHECK(test.addresses == fev.addresses);
|
BOOST_CHECK(test.addresses == fev.addresses);
|
||||||
BOOST_CHECK( test.txs == fev.txs );
|
BOOST_CHECK(test.callcreates == fev.callcreates);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} } // Namespace Close
|
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(vm_tests)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
cnote << "Testing VM...";
|
|
||||||
json_spirit::mValue v;
|
|
||||||
string s = asString(contents("../../tests/vmtests.json"));
|
|
||||||
BOOST_REQUIRE_MESSAGE( s.length() > 0, "Contents of 'vmtests.json' is empty. Have you cloned the 'tests' repo branch develop?" );
|
|
||||||
json_spirit::read_string(s, v);
|
|
||||||
eth::test::doTests(v, false);
|
|
||||||
}
|
|
||||||
catch( std::exception& e)
|
|
||||||
{
|
|
||||||
BOOST_ERROR("Failed VM Test with Exception: " << e.what());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#if 0
|
/*string makeTestCase()
|
||||||
string makeTestCase()
|
|
||||||
{
|
{
|
||||||
json_spirit::mObject o;
|
json_spirit::mObject o;
|
||||||
|
|
||||||
@ -434,10 +461,40 @@ BOOST_AUTO_TEST_CASE(vm_tests)
|
|||||||
o["txs"] = fev.exportTxs();
|
o["txs"] = fev.exportTxs();
|
||||||
|
|
||||||
return json_spirit::write_string(json_spirit::mValue(o), true);
|
return json_spirit::write_string(json_spirit::mValue(o), true);
|
||||||
}
|
}*/
|
||||||
};
|
|
||||||
|
|
||||||
|
} } // Namespace Close
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(vm_tests)
|
||||||
|
{
|
||||||
|
// Populate tests first:
|
||||||
|
try
|
||||||
|
{
|
||||||
|
cnote << "Populating VM tests...";
|
||||||
|
json_spirit::mValue v;
|
||||||
|
string s = asString(contents("../../cpp-ethereum/test/vmtests.json"));
|
||||||
|
BOOST_REQUIRE_MESSAGE(s.length() > 0, "Contents of 'vmtests.json' is empty.");
|
||||||
|
json_spirit::read_string(s, v);
|
||||||
|
eth::test::doTests(v, true);
|
||||||
|
writeFile("../../tests/vmtests.json", asBytes(json_spirit::write_string(v, true)));
|
||||||
|
}
|
||||||
|
catch( std::exception& e)
|
||||||
|
{
|
||||||
|
BOOST_ERROR("Failed VM Test with Exception: " << e.what());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif
|
try
|
||||||
|
{
|
||||||
|
cnote << "Testing VM...";
|
||||||
|
json_spirit::mValue v;
|
||||||
|
string s = asString(contents("../../tests/vmtests.json"));
|
||||||
|
BOOST_REQUIRE_MESSAGE(s.length() > 0, "Contents of 'vmtests.json' is empty. Have you cloned the 'tests' repo branch develop?");
|
||||||
|
json_spirit::read_string(s, v);
|
||||||
|
eth::test::doTests(v, false);
|
||||||
|
}
|
||||||
|
catch( std::exception& e)
|
||||||
|
{
|
||||||
|
BOOST_ERROR("Failed VM Test with Exception: " << e.what());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
109
vmtests.json
109
vmtests.json
@ -2,26 +2,30 @@
|
|||||||
"suicide": {
|
"suicide": {
|
||||||
"env" : {
|
"env" : {
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6",
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6",
|
||||||
"previousNonce" : "9c9c6567b5ec0c5f3f25df79be42707090f1e62e9db84cbb556ae2a2f6ccccae",
|
"currentNumber" : "0",
|
||||||
|
"currentGasLimit" : "1000000",
|
||||||
"currentDifficulty" : "256",
|
"currentDifficulty" : "256",
|
||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
|
||||||
"feeMultiplier" : 1
|
"code" : "(suicide (caller))"
|
||||||
},
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
||||||
"balance" : 1000000000000000000,
|
"balance" : "1000000000000000000",
|
||||||
"nonce" : 0,
|
"nonce" : 0,
|
||||||
"code" : "(suicide (txsender))"
|
"code" : "(suicide (caller))",
|
||||||
|
"storage": {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"exec" : [
|
"exec" : [
|
||||||
{
|
{
|
||||||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6",
|
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6",
|
||||||
"sender" : "cd1722f3947def4cf144679da39c4c32bdc35681",
|
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681",
|
||||||
"value" : 1000000000000000000,
|
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681",
|
||||||
"data" : [
|
"value" : "1000000000000000000",
|
||||||
]
|
"data" : "",
|
||||||
|
"gasPrice" : "100000000000000",
|
||||||
|
"gas" : "10000"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -29,26 +33,30 @@
|
|||||||
"arith": {
|
"arith": {
|
||||||
"env" : {
|
"env" : {
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6",
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6",
|
||||||
"previousNonce" : "9c9c6567b5ec0c5f3f25df79be42707090f1e62e9db84cbb556ae2a2f6ccccae",
|
"currentNumber" : "0",
|
||||||
|
"currentGasLimit" : "1000000",
|
||||||
"currentDifficulty" : "256",
|
"currentDifficulty" : "256",
|
||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
|
||||||
"feeMultiplier" : 1
|
"code" : "{ (call (- (gas) 200) (caller) (+ 2 2 (* 4 4 4) (/ 2 2) (% 3 2) (- 8 2 2)) 0 0 0 0) }"
|
||||||
},
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
||||||
"balance" : 1000000000000000000,
|
"balance" : "1000000000000000000",
|
||||||
"nonce" : 0,
|
"nonce" : 0,
|
||||||
"code" : "(seq (mktx (txsender) (+ 2 2 (* 4 4 4) (/ 2 2) (% 3 2) (- 8 2 2)) 0) )"
|
"code" : "{ (call (- (gas) 200) (caller) (+ 2 2 (* 4 4 4) (/ 2 2) (% 3 2) (- 8 2 2)) 0 0 0 0) }",
|
||||||
|
"storage": {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"exec" : [
|
"exec" : [
|
||||||
{
|
{
|
||||||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6",
|
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6",
|
||||||
"sender" : "cd1722f3947def4cf144679da39c4c32bdc35681",
|
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681",
|
||||||
"value" : 1000000000000000000,
|
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681",
|
||||||
"data" : [
|
"value" : "1000000000000000000",
|
||||||
]
|
"data" : "",
|
||||||
|
"gasPrice" : "100000000000000",
|
||||||
|
"gas" : "10000"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -56,26 +64,30 @@
|
|||||||
"boolean": {
|
"boolean": {
|
||||||
"env" : {
|
"env" : {
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6",
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6",
|
||||||
"previousNonce" : "9c9c6567b5ec0c5f3f25df79be42707090f1e62e9db84cbb556ae2a2f6ccccae",
|
"currentNumber" : "0",
|
||||||
|
"currentGasLimit" : "1000000",
|
||||||
"currentDifficulty" : "256",
|
"currentDifficulty" : "256",
|
||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
|
||||||
"feeMultiplier" : 1
|
"code" : "(seq (when (and 1 1) (call (- (gas) 200) (caller) 2 0 0 0 0)) (when (and 1 0) (call (- (gas) 200) (caller) 3 0 0 0 0)) (when (and 0 1) (call (- (gas) 200) (caller) 4 0 0 0 0)) (when (and 0 0) (call (- (gas) 200) (caller) 5 0 0 0 0)) (when (or 1 1) (call (- (gas) 200) (caller) 12 0 0 0 0)) (when (or 1 0) (call (- (gas) 200) (caller) 13 0 0 0 0)) (when (or 0 1) (call (- (gas) 200) (caller) 14 0 0 0 0)) (when (or 0 0) (call (- (gas) 200) (caller) 15 0 0 0 0)) )"
|
||||||
},
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
||||||
"balance" : 1000000000000000000,
|
"balance" : "1000000000000000000",
|
||||||
"nonce" : 0,
|
"nonce" : 0,
|
||||||
"code" : "(seq (when (and 1 1) (mktx (txsender) 2 0)) (when (and 1 0) (mktx (txsender) 3 0)) (when (and 0 1) (mktx (txsender) 4 0)) (when (and 0 0) (mktx (txsender) 5 0)) (when (or 1 1) (mktx (txsender) 12 0)) (when (or 1 0) (mktx (txsender) 13 0)) (when (or 0 1) (mktx (txsender) 14 0)) (when (or 0 0) (mktx (txsender) 15 0)) )"
|
"code" : "(seq (when (and 1 1) (call (- (gas) 200) (caller) 2 0 0 0 0)) (when (and 1 0) (call (- (gas) 200) (caller) 3 0 0 0 0)) (when (and 0 1) (call (- (gas) 200) (caller) 4 0 0 0 0)) (when (and 0 0) (call (- (gas) 200) (caller) 5 0 0 0 0)) (when (or 1 1) (call (- (gas) 200) (caller) 12 0 0 0 0)) (when (or 1 0) (call (- (gas) 200) (caller) 13 0 0 0 0)) (when (or 0 1) (call (- (gas) 200) (caller) 14 0 0 0 0)) (when (or 0 0) (call (- (gas) 200) (caller) 15 0 0 0 0)) )",
|
||||||
|
"storage": {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"exec" : [
|
"exec" : [
|
||||||
{
|
{
|
||||||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6",
|
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6",
|
||||||
"sender" : "cd1722f3947def4cf144679da39c4c32bdc35681",
|
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681",
|
||||||
"value" : 1000000000000000000,
|
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681",
|
||||||
"data" : [
|
"value" : "1000000000000000000",
|
||||||
]
|
"data" : "",
|
||||||
|
"gasPrice" : "100000000000000",
|
||||||
|
"gas" : "10000"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -83,55 +95,30 @@
|
|||||||
"mktx": {
|
"mktx": {
|
||||||
"env" : {
|
"env" : {
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6",
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6",
|
||||||
"previousNonce" : "9c9c6567b5ec0c5f3f25df79be42707090f1e62e9db84cbb556ae2a2f6ccccae",
|
"currentNumber" : "0",
|
||||||
|
"currentGasLimit" : "1000000",
|
||||||
"currentDifficulty" : "256",
|
"currentDifficulty" : "256",
|
||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
|
||||||
"feeMultiplier" : 1
|
"code" : "(call (- (gas) 200) (caller) 500000000000000000 0 0 0 0)"
|
||||||
},
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
||||||
"balance" : 1000000000000000000,
|
"balance" : "1000000000000000000",
|
||||||
"nonce" : 0,
|
"nonce" : 0,
|
||||||
"code" : "(mktx (txsender) 500000000000000000 0)"
|
"code" : "(call (- (gas) 200) (caller) 500000000000000000 0 0 0 0)",
|
||||||
|
"storage": {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"exec" : [
|
"exec" : [
|
||||||
{
|
{
|
||||||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6",
|
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6",
|
||||||
"sender" : "cd1722f3947def4cf144679da39c4c32bdc35681",
|
"origin" : "cd1722f3947def4cf144679da39c4c32bdc35681",
|
||||||
"value" : 1000000000000000000,
|
"caller" : "cd1722f3947def4cf144679da39c4c32bdc35681",
|
||||||
"data" : [
|
"value" : "1000000000000000000",
|
||||||
]
|
"gasPrice" : "100000000000000",
|
||||||
}
|
"gas" : "10000",
|
||||||
]
|
"data" : ""
|
||||||
},
|
|
||||||
|
|
||||||
"fan": {
|
|
||||||
"env" : {
|
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6",
|
|
||||||
"previousNonce" : "9c9c6567b5ec0c5f3f25df79be42707090f1e62e9db84cbb556ae2a2f6ccccae",
|
|
||||||
"currentDifficulty" : "256",
|
|
||||||
"currentTimestamp" : 1,
|
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
|
|
||||||
"feeMultiplier" : 1
|
|
||||||
},
|
|
||||||
"pre" : {
|
|
||||||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
|
||||||
"balance" : 0,
|
|
||||||
"nonce" : 0,
|
|
||||||
"code" : "(seq (unless (gt (txvalue) 100finney) (stop)) (\"value\" (div (sub (txvalue) 100finney) (txdatan))) (\"i\" 0) (for (lt (\"i\") (txdatan)) (seq (mktx (txdata (\"i\")) (\"value\") 0) (\"i\" (add (\"i\") 1)) ) ) )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"exec" : [
|
|
||||||
{
|
|
||||||
"address" : "0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6",
|
|
||||||
"sender" : "cd1722f3947def4cf144679da39c4c32bdc35681",
|
|
||||||
"value" : 1000000000000000000,
|
|
||||||
"data" : [
|
|
||||||
"0xcd1722f3947def4cf144679da39c4c32bdc35681",
|
|
||||||
"0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user