quorum/tests/vm_test_util.go

134 lines
3.4 KiB
Go
Raw Normal View History

2015-06-10 09:04:56 -07:00
package tests
2014-10-14 15:41:00 -07:00
import (
"bytes"
2015-06-10 11:38:39 -07:00
"fmt"
2014-12-01 15:03:53 -08:00
"math/big"
"strconv"
2014-10-14 15:41:00 -07:00
2015-03-16 03:27:38 -07:00
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/state"
2015-06-10 11:38:39 -07:00
"github.com/ethereum/go-ethereum/core/vm"
2015-03-17 04:56:29 -07:00
"github.com/ethereum/go-ethereum/ethdb"
2014-10-14 15:41:00 -07:00
)
func RunVmTest(p string) error {
2015-03-09 03:28:35 -07:00
2014-10-14 15:41:00 -07:00
tests := make(map[string]VmTest)
err := CreateFileTests(p, &tests)
if err != nil {
return err
}
2014-10-14 15:41:00 -07:00
for name, test := range tests {
2015-04-08 11:45:39 -07:00
/*
2015-06-10 09:04:56 -07:00
vm.Debug = true
glog.SetV(4)
glog.SetToStderr(true)
if name != "Call50000_sha256" {
continue
}
2015-04-08 11:45:39 -07:00
*/
2015-01-07 04:17:48 -08:00
db, _ := ethdb.NewMemDatabase()
2015-03-17 04:56:29 -07:00
statedb := state.New(common.Hash{}, db)
2014-10-14 15:41:00 -07:00
for addr, account := range test.Pre {
2015-01-07 04:17:48 -08:00
obj := StateObjectFromAccount(db, addr, account)
statedb.SetStateObject(obj)
2014-12-18 12:58:26 -08:00
for a, v := range account.Storage {
obj.SetState(common.HexToHash(a), common.HexToHash(v))
2014-12-18 12:58:26 -08:00
}
2014-10-14 15:41:00 -07:00
}
2014-12-01 15:03:53 -08:00
// XXX Yeah, yeah...
env := make(map[string]string)
env["currentCoinbase"] = test.Env.CurrentCoinbase
env["currentDifficulty"] = test.Env.CurrentDifficulty
env["currentGasLimit"] = test.Env.CurrentGasLimit
env["currentNumber"] = test.Env.CurrentNumber
env["previousHash"] = test.Env.PreviousHash
if n, ok := test.Env.CurrentTimestamp.(float64); ok {
env["currentTimestamp"] = strconv.Itoa(int(n))
} else {
env["currentTimestamp"] = test.Env.CurrentTimestamp.(string)
}
var (
ret []byte
gas *big.Int
err error
logs state.Logs
2014-12-01 15:03:53 -08:00
)
2015-06-10 11:38:39 -07:00
ret, logs, gas, err = RunVm(statedb, env, test.Exec)
2014-12-01 15:03:53 -08:00
2015-06-10 12:02:16 -07:00
// Compare expectedand actual return
2015-06-10 11:38:39 -07:00
rexp := common.FromHex(test.Out)
if bytes.Compare(rexp, ret) != 0 {
return fmt.Errorf("%s's return failed. Expected %x, got %x\n", name, rexp, ret)
2014-10-14 15:41:00 -07:00
}
2015-06-10 12:02:16 -07:00
// Check gas usage
2015-06-10 11:38:39 -07:00
if len(test.Gas) == 0 && err == nil {
return fmt.Errorf("%s's gas unspecified, indicating an error. VM returned (incorrectly) successfull", name)
2015-06-10 11:38:39 -07:00
} else {
gexp := common.Big(test.Gas)
if gexp.Cmp(gas) != 0 {
return fmt.Errorf("%s's gas failed. Expected %v, got %v\n", name, gexp, gas)
2014-12-01 15:03:53 -08:00
}
2014-10-14 15:41:00 -07:00
}
2015-06-10 12:02:16 -07:00
// check post state
2014-10-14 15:41:00 -07:00
for addr, account := range test.Post {
2015-03-17 04:56:29 -07:00
obj := statedb.GetStateObject(common.HexToAddress(addr))
2014-12-18 12:58:26 -08:00
if obj == nil {
continue
}
2014-10-14 15:41:00 -07:00
for addr, value := range account.Storage {
v := obj.GetState(common.HexToHash(addr))
vexp := common.HexToHash(value)
2014-10-14 15:41:00 -07:00
if v != vexp {
return t.Errorf("%s's : (%x: %s) storage failed. Expected %x, got %x (%v %v)\n", name, obj.Address().Bytes()[0:4], addr, vexp, v, vexp.Big(), v.Big())
2014-10-14 15:41:00 -07:00
}
}
}
2015-06-10 12:02:16 -07:00
// check logs
if len(test.Logs) > 0 {
2015-06-10 13:29:42 -07:00
lerr := checkLogs(test.Logs, logs)
if lerr != nil {
return fmt.Errorf("'%s' ", name, lerr.Error())
}
}
2015-06-10 11:38:39 -07:00
fmt.Println("VM test passed: ", name)
//fmt.Println(string(statedb.Dump()))
2014-10-14 15:41:00 -07:00
}
return nil
2015-06-10 11:38:39 -07:00
}
func RunVm(state *state.StateDB, env, exec map[string]string) ([]byte, state.Logs, *big.Int, error) {
var (
to = common.HexToAddress(exec["address"])
from = common.HexToAddress(exec["caller"])
data = common.FromHex(exec["data"])
gas = common.Big(exec["gas"])
price = common.Big(exec["gasPrice"])
value = common.Big(exec["value"])
)
// Reset the pre-compiled contracts for VM tests.
vm.Precompiled = make(map[string]*vm.PrecompiledAccount)
caller := state.GetOrNewStateObject(from)
vmenv := NewEnvFromMap(state, env, exec)
vmenv.vmTest = true
vmenv.skipTransfer = true
vmenv.initial = true
ret, err := vmenv.Call(caller, to, data, gas, price, value)
return ret, vmenv.state.Logs(), vmenv.Gas, err
}