2018-09-07 19:44:17 +00:00
|
|
|
# Nimbus
|
|
|
|
# Copyright (c) 2018 Status Research & Development GmbH
|
|
|
|
# Licensed under either of
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
|
|
|
import
|
2018-09-27 19:09:26 +00:00
|
|
|
unittest, strformat, strutils, tables, json, ospaths, times,
|
2018-11-28 19:02:21 +00:00
|
|
|
byteutils, ranges/typedranges, nimcrypto/[keccak, hash], options,
|
2019-02-05 19:15:50 +00:00
|
|
|
eth/[rlp, common, keys], eth/trie/db, chronicles,
|
2018-09-07 19:44:17 +00:00
|
|
|
./test_helpers,
|
|
|
|
../nimbus/[constants, errors],
|
2018-09-27 19:09:26 +00:00
|
|
|
../nimbus/[vm_state, vm_types, vm_state_transactions],
|
2018-09-29 15:36:42 +00:00
|
|
|
../nimbus/utils/[header, addresses],
|
2018-09-07 19:44:17 +00:00
|
|
|
../nimbus/vm/interpreter,
|
|
|
|
../nimbus/db/[db_chain, state_db]
|
|
|
|
|
|
|
|
proc testFixture(fixtures: JsonNode, testStatusIMPL: var TestStatus)
|
|
|
|
|
|
|
|
suite "generalstate json tests":
|
|
|
|
jsonTest("GeneralStateTests", testFixture)
|
|
|
|
|
|
|
|
|
2019-02-14 15:20:41 +00:00
|
|
|
proc testFixtureIndexes(prevStateRoot: Hash256, header: BlockHeader, pre: JsonNode, transaction: Transaction, sender: EthAddress, expectedHash: string, testStatusIMPL: var TestStatus, fork: Fork) =
|
2018-12-11 23:26:08 +00:00
|
|
|
when enabledLogLevel <= TRACE:
|
|
|
|
let tracerFlags = {TracerFlags.EnableTracing}
|
|
|
|
else:
|
|
|
|
let tracerFlags: set[TracerFlags] = {}
|
2019-02-14 15:20:41 +00:00
|
|
|
var vmState = newBaseVMState(prevStateRoot, header, newBaseChainDB(newMemoryDb()), tracerFlags)
|
2018-09-19 16:46:14 +00:00
|
|
|
vmState.mutateStateDB:
|
|
|
|
setupStateDB(pre, db)
|
|
|
|
|
|
|
|
defer:
|
|
|
|
#echo vmState.readOnlyStateDB.dumpAccount("c94f5374fce5edbc8e2a8697c15331677e6ebf0b")
|
2018-11-28 19:02:21 +00:00
|
|
|
let obtainedHash = "0x" & `$`(vmState.readOnlyStateDB.rootHash).toLowerAscii
|
|
|
|
check obtainedHash == expectedHash
|
2018-09-19 16:46:14 +00:00
|
|
|
|
|
|
|
if not validateTransaction(vmState, transaction, sender):
|
|
|
|
vmState.mutateStateDB:
|
|
|
|
# pre-EIP158 (e.g., Byzantium) should ensure currentCoinbase exists
|
|
|
|
# in later forks, don't create at all
|
|
|
|
db.addBalance(header.coinbase, 0.u256)
|
|
|
|
return
|
|
|
|
|
|
|
|
# TODO: replace with cachingDb or similar approach; necessary
|
|
|
|
# when calls/subcalls/etc come in, too.
|
|
|
|
var readOnly = vmState.readOnlyStateDB
|
|
|
|
let storageRoot = readOnly.getStorageRoot(transaction.to)
|
|
|
|
|
|
|
|
let gas_cost = transaction.gasLimit.u256 * transaction.gasPrice.u256
|
|
|
|
vmState.mutateStateDB:
|
|
|
|
db.setNonce(sender, db.getNonce(sender) + 1)
|
2018-09-20 21:36:57 +00:00
|
|
|
db.subBalance(sender, transaction.value + gas_cost)
|
2018-09-19 16:46:14 +00:00
|
|
|
|
2018-09-29 15:36:42 +00:00
|
|
|
if transaction.isContractCreation and transaction.payload.len > 0:
|
|
|
|
vmState.mutateStateDB:
|
|
|
|
# TODO: move into applyCreateTransaction
|
|
|
|
# fixtures/GeneralStateTests/stTransactionTest/TransactionSendingToZero.json
|
|
|
|
# fixtures/GeneralStateTests/stTransactionTest/TransactionSendingToEmpty.json
|
|
|
|
#db.addBalance(generateAddress(sender, transaction.accountNonce), transaction.value)
|
|
|
|
|
2018-12-31 03:28:12 +00:00
|
|
|
let createGasUsed = applyCreateTransaction(transaction, vmState, sender, some(fork))
|
2018-09-29 15:36:42 +00:00
|
|
|
db.addBalance(header.coinbase, createGasUsed)
|
|
|
|
return
|
2018-12-31 03:28:12 +00:00
|
|
|
var computation = setupComputation(vmState, transaction, sender, some(fork))
|
2018-09-29 15:36:42 +00:00
|
|
|
|
|
|
|
vmState.mutateStateDB:
|
|
|
|
# contract creation transaction.to == 0, so ensure happens after
|
|
|
|
db.addBalance(transaction.to, transaction.value)
|
|
|
|
|
|
|
|
# What remains is call and/or value transfer
|
2018-10-01 19:12:14 +00:00
|
|
|
if execComputation(computation):
|
2018-09-11 13:15:59 +00:00
|
|
|
let
|
2018-09-14 13:43:40 +00:00
|
|
|
gasRemaining = computation.gasMeter.gasRemaining.u256
|
2019-02-19 10:02:59 +00:00
|
|
|
gasRefunded = computation.getGasRefund().u256
|
2018-09-14 13:43:40 +00:00
|
|
|
gasUsed = transaction.gasLimit.u256 - gasRemaining
|
2018-09-11 13:15:59 +00:00
|
|
|
gasRefund = min(gasRefunded, gasUsed div 2)
|
2018-09-14 13:43:40 +00:00
|
|
|
gasRefundAmount = (gasRefund + gasRemaining) * transaction.gasPrice.u256
|
2018-09-07 19:44:17 +00:00
|
|
|
|
2018-09-18 00:35:41 +00:00
|
|
|
vmState.mutateStateDB:
|
2018-09-29 15:36:42 +00:00
|
|
|
# TODO if the balance/etc calls were gated on gAFD or similar,
|
|
|
|
# that would simplify/combine codepaths
|
2018-09-19 16:46:14 +00:00
|
|
|
if header.coinbase notin computation.getAccountsForDeletion:
|
2018-09-20 21:36:57 +00:00
|
|
|
db.subBalance(header.coinbase, gasRefundAmount)
|
2018-09-19 16:46:14 +00:00
|
|
|
db.addBalance(header.coinbase, gas_cost)
|
|
|
|
db.addBalance(sender, gasRefundAmount)
|
|
|
|
# TODO: only here does one commit, with some nuance/caveat
|
|
|
|
else:
|
2018-09-14 13:43:40 +00:00
|
|
|
vmState.mutateStateDB:
|
2018-09-18 00:35:41 +00:00
|
|
|
# XXX: the coinbase has to be committed; the rest are basically reverts
|
2018-09-20 21:36:57 +00:00
|
|
|
db.subBalance(transaction.to, transaction.value)
|
2018-09-19 09:37:31 +00:00
|
|
|
db.addBalance(sender, transaction.value)
|
2018-09-15 20:04:58 +00:00
|
|
|
db.setStorageRoot(transaction.to, storageRoot)
|
2018-09-19 16:46:14 +00:00
|
|
|
db.addBalance(header.coinbase, gas_cost)
|
2018-09-18 00:35:41 +00:00
|
|
|
|
2018-09-19 16:46:14 +00:00
|
|
|
proc testFixture(fixtures: JsonNode, testStatusIMPL: var TestStatus) =
|
|
|
|
var fixture: JsonNode
|
|
|
|
for label, child in fixtures:
|
|
|
|
fixture = child
|
|
|
|
break
|
2018-09-07 19:44:17 +00:00
|
|
|
|
2018-09-19 16:46:14 +00:00
|
|
|
let fenv = fixture["env"]
|
2018-09-25 12:52:28 +00:00
|
|
|
var emptyRlpHash = keccak256.digest(rlp.encode(""))
|
2018-09-19 16:46:14 +00:00
|
|
|
let header = BlockHeader(
|
|
|
|
coinbase: fenv["currentCoinbase"].getStr.ethAddressFromHex,
|
|
|
|
difficulty: fromHex(UInt256, fenv{"currentDifficulty"}.getStr),
|
|
|
|
blockNumber: fenv{"currentNumber"}.getHexadecimalInt.u256,
|
|
|
|
gasLimit: fenv{"currentGasLimit"}.getHexadecimalInt.GasInt,
|
|
|
|
timestamp: fenv{"currentTimestamp"}.getHexadecimalInt.int64.fromUnix,
|
|
|
|
stateRoot: emptyRlpHash
|
|
|
|
)
|
|
|
|
|
|
|
|
let ftrans = fixture["transaction"]
|
2018-11-28 19:02:21 +00:00
|
|
|
for fork in supportedForks:
|
|
|
|
if fixture["post"].has_key(forkNames[fork]):
|
|
|
|
# echo "[fork: ", forkNames[fork], "]"
|
|
|
|
for expectation in fixture["post"][forkNames[fork]]:
|
|
|
|
let
|
|
|
|
expectedHash = expectation["hash"].getStr
|
|
|
|
indexes = expectation["indexes"]
|
|
|
|
dataIndex = indexes["data"].getInt
|
|
|
|
gasIndex = indexes["gas"].getInt
|
|
|
|
valueIndex = indexes["value"].getInt
|
|
|
|
let transaction = ftrans.getFixtureTransaction(dataIndex, gasIndex, valueIndex)
|
|
|
|
let sender = ftrans.getFixtureTransactionSender
|
2019-02-14 15:20:41 +00:00
|
|
|
testFixtureIndexes(emptyRlpHash, header, fixture["pre"], transaction, sender, expectedHash, testStatusIMPL, fork)
|