2014-11-11 22:14:22 +00:00
|
|
|
/*
|
|
|
|
This file is part of go-ethereum
|
|
|
|
|
|
|
|
go-ethereum is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
go-ethereum is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
/**
|
2014-11-14 23:29:27 +00:00
|
|
|
* @authors:
|
2014-11-11 22:14:22 +00:00
|
|
|
* Jeffrey Wilcke <i@jev.io>
|
|
|
|
*/
|
|
|
|
|
2014-10-16 19:34:59 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
2015-01-07 12:38:28 +00:00
|
|
|
"io"
|
2014-10-16 19:34:59 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
2015-03-12 00:12:28 +00:00
|
|
|
"math/big"
|
2014-10-16 19:34:59 +00:00
|
|
|
"os"
|
2015-03-12 00:12:28 +00:00
|
|
|
"strconv"
|
2015-01-09 11:04:54 +00:00
|
|
|
"strings"
|
2014-10-16 19:34:59 +00:00
|
|
|
|
2015-03-16 10:27:38 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2015-03-23 17:08:49 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/state"
|
2015-03-19 14:04:29 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2015-03-23 17:08:49 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/vm"
|
2015-03-19 09:57:02 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
2015-01-15 09:46:42 +00:00
|
|
|
"github.com/ethereum/go-ethereum/logger"
|
2015-04-10 17:59:07 +00:00
|
|
|
"github.com/ethereum/go-ethereum/logger/glog"
|
2014-10-23 13:01:27 +00:00
|
|
|
"github.com/ethereum/go-ethereum/tests/helper"
|
2014-10-16 19:34:59 +00:00
|
|
|
)
|
|
|
|
|
2015-03-12 00:12:28 +00:00
|
|
|
type Log struct {
|
|
|
|
AddressF string `json:"address"`
|
|
|
|
DataF string `json:"data"`
|
|
|
|
TopicsF []string `json:"topics"`
|
|
|
|
BloomF string `json:"bloom"`
|
|
|
|
}
|
|
|
|
|
2015-03-16 10:27:38 +00:00
|
|
|
func (self Log) Address() []byte { return common.Hex2Bytes(self.AddressF) }
|
|
|
|
func (self Log) Data() []byte { return common.Hex2Bytes(self.DataF) }
|
2015-03-12 00:12:28 +00:00
|
|
|
func (self Log) RlpData() interface{} { return nil }
|
|
|
|
func (self Log) Topics() [][]byte {
|
|
|
|
t := make([][]byte, len(self.TopicsF))
|
|
|
|
for i, topic := range self.TopicsF {
|
2015-03-16 10:27:38 +00:00
|
|
|
t[i] = common.Hex2Bytes(topic)
|
2015-03-12 00:12:28 +00:00
|
|
|
}
|
|
|
|
return t
|
|
|
|
}
|
|
|
|
|
2014-10-16 19:34:59 +00:00
|
|
|
type Account struct {
|
|
|
|
Balance string
|
|
|
|
Code string
|
|
|
|
Nonce string
|
|
|
|
Storage map[string]string
|
|
|
|
}
|
|
|
|
|
2015-03-16 10:27:38 +00:00
|
|
|
func StateObjectFromAccount(db common.Database, addr string, account Account) *state.StateObject {
|
2015-03-19 14:04:29 +00:00
|
|
|
obj := state.NewStateObject(common.HexToAddress(addr), db)
|
2015-03-16 10:27:38 +00:00
|
|
|
obj.SetBalance(common.Big(account.Balance))
|
2014-10-16 19:34:59 +00:00
|
|
|
|
2015-03-16 10:27:38 +00:00
|
|
|
if common.IsHex(account.Code) {
|
2014-10-16 19:34:59 +00:00
|
|
|
account.Code = account.Code[2:]
|
|
|
|
}
|
2015-03-16 10:27:38 +00:00
|
|
|
obj.SetCode(common.Hex2Bytes(account.Code))
|
|
|
|
obj.SetNonce(common.Big(account.Nonce).Uint64())
|
2014-10-16 19:34:59 +00:00
|
|
|
|
|
|
|
return obj
|
|
|
|
}
|
|
|
|
|
|
|
|
type VmTest struct {
|
2015-03-23 17:08:49 +00:00
|
|
|
Callcreates interface{}
|
2015-03-12 00:12:28 +00:00
|
|
|
Env Env
|
|
|
|
Exec map[string]string
|
|
|
|
Transaction map[string]string
|
|
|
|
Logs []Log
|
|
|
|
Gas string
|
|
|
|
Out string
|
|
|
|
Post map[string]Account
|
|
|
|
Pre map[string]Account
|
|
|
|
PostStateRoot string
|
|
|
|
}
|
|
|
|
|
|
|
|
type Env struct {
|
|
|
|
CurrentCoinbase string
|
|
|
|
CurrentDifficulty string
|
|
|
|
CurrentGasLimit string
|
|
|
|
CurrentNumber string
|
|
|
|
CurrentTimestamp interface{}
|
|
|
|
PreviousHash string
|
2014-10-16 19:34:59 +00:00
|
|
|
}
|
|
|
|
|
2015-01-07 12:38:28 +00:00
|
|
|
func RunVmTest(r io.Reader) (failed int) {
|
2014-10-16 19:34:59 +00:00
|
|
|
tests := make(map[string]VmTest)
|
|
|
|
|
2015-01-07 12:38:28 +00:00
|
|
|
data, _ := ioutil.ReadAll(r)
|
2014-10-16 19:34:59 +00:00
|
|
|
err := json.Unmarshal(data, &tests)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalln(err)
|
|
|
|
}
|
|
|
|
|
2015-04-10 17:59:07 +00:00
|
|
|
vm.Debug = true
|
|
|
|
glog.SetV(4)
|
|
|
|
glog.SetToStderr(true)
|
2014-10-16 19:34:59 +00:00
|
|
|
for name, test := range tests {
|
2015-01-07 12:17:48 +00:00
|
|
|
db, _ := ethdb.NewMemDatabase()
|
2015-03-19 14:04:29 +00:00
|
|
|
statedb := state.New(common.Hash{}, db)
|
2014-10-16 19:34:59 +00:00
|
|
|
for addr, account := range test.Pre {
|
2015-01-07 12:17:48 +00:00
|
|
|
obj := StateObjectFromAccount(db, addr, account)
|
2015-03-12 00:12:28 +00:00
|
|
|
statedb.SetStateObject(obj)
|
2014-10-16 19:34:59 +00:00
|
|
|
}
|
|
|
|
|
2015-03-12 00:12:28 +00:00
|
|
|
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)
|
2014-10-16 19:34:59 +00:00
|
|
|
}
|
|
|
|
|
2015-03-12 00:12:28 +00:00
|
|
|
ret, logs, _, _ := helper.RunState(statedb, env, test.Transaction)
|
|
|
|
statedb.Sync()
|
|
|
|
|
2014-10-16 19:34:59 +00:00
|
|
|
rexp := helper.FromHex(test.Out)
|
|
|
|
if bytes.Compare(rexp, ret) != 0 {
|
2015-04-10 17:59:07 +00:00
|
|
|
glog.V(logger.Info).Infof("%s's return failed. Expected %x, got %x\n", name, rexp, ret)
|
2015-03-12 17:22:56 +00:00
|
|
|
failed = 1
|
2014-10-16 19:34:59 +00:00
|
|
|
}
|
|
|
|
|
2015-03-12 00:12:28 +00:00
|
|
|
for addr, account := range test.Post {
|
2015-03-19 14:04:29 +00:00
|
|
|
obj := statedb.GetStateObject(common.HexToAddress(addr))
|
2015-03-12 00:12:28 +00:00
|
|
|
if obj == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(test.Exec) == 0 {
|
2015-03-16 10:27:38 +00:00
|
|
|
if obj.Balance().Cmp(common.Big(account.Balance)) != 0 {
|
2015-04-10 17:59:07 +00:00
|
|
|
glog.V(logger.Info).Infof("%s's : (%x) balance failed. Expected %v, got %v => %v\n", name, obj.Address().Bytes()[:4], account.Balance, obj.Balance(), new(big.Int).Sub(common.Big(account.Balance), obj.Balance()))
|
2015-03-12 17:22:56 +00:00
|
|
|
failed = 1
|
2015-03-12 00:12:28 +00:00
|
|
|
}
|
2014-12-30 16:09:54 +00:00
|
|
|
}
|
2014-10-16 19:34:59 +00:00
|
|
|
|
|
|
|
for addr, value := range account.Storage {
|
2015-03-19 14:04:29 +00:00
|
|
|
v := obj.GetState(common.HexToHash(addr)).Bytes()
|
2014-10-16 19:34:59 +00:00
|
|
|
vexp := helper.FromHex(value)
|
|
|
|
|
|
|
|
if bytes.Compare(v, vexp) != 0 {
|
2015-04-10 17:59:07 +00:00
|
|
|
glog.V(logger.Info).Infof("%s's : (%x: %s) storage failed. Expected %x, got %x (%v %v)\n", name, obj.Address().Bytes()[0:4], addr, vexp, v, common.BigD(vexp), common.BigD(v))
|
2015-03-12 17:22:56 +00:00
|
|
|
failed = 1
|
2014-10-16 19:34:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-01-15 09:46:42 +00:00
|
|
|
|
2015-03-19 14:04:29 +00:00
|
|
|
statedb.Sync()
|
|
|
|
//if !bytes.Equal(common.Hex2Bytes(test.PostStateRoot), statedb.Root()) {
|
|
|
|
if common.HexToHash(test.PostStateRoot) != statedb.Root() {
|
2015-04-10 17:59:07 +00:00
|
|
|
glog.V(logger.Info).Infof("%s's : Post state root failed. Expected %s, got %x", name, test.PostStateRoot, statedb.Root())
|
2015-03-12 17:22:56 +00:00
|
|
|
failed = 1
|
2015-03-12 00:12:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(test.Logs) > 0 {
|
|
|
|
if len(test.Logs) != len(logs) {
|
2015-04-10 17:59:07 +00:00
|
|
|
glog.V(logger.Info).Infof("log length failed. Expected %d, got %d", len(test.Logs), len(logs))
|
2015-03-12 17:22:56 +00:00
|
|
|
failed = 1
|
2015-03-12 00:12:28 +00:00
|
|
|
} else {
|
2015-03-19 14:04:29 +00:00
|
|
|
for i, log := range test.Logs {
|
2015-04-08 18:45:39 +00:00
|
|
|
if common.HexToAddress(log.AddressF) != logs[i].Address {
|
2015-04-10 17:59:07 +00:00
|
|
|
glog.V(logger.Info).Infof("'%s' log address failed. Expected %v got %x", name, log.AddressF, logs[i].Address)
|
2015-03-19 14:04:29 +00:00
|
|
|
failed = 1
|
|
|
|
}
|
|
|
|
|
2015-04-08 18:45:39 +00:00
|
|
|
if !bytes.Equal(logs[i].Data, helper.FromHex(log.DataF)) {
|
2015-04-10 17:59:07 +00:00
|
|
|
glog.V(logger.Info).Infof("'%s' log data failed. Expected %v got %x", name, log.DataF, logs[i].Data)
|
2015-03-19 14:04:29 +00:00
|
|
|
failed = 1
|
|
|
|
}
|
|
|
|
|
2015-04-08 18:45:39 +00:00
|
|
|
if len(log.TopicsF) != len(logs[i].Topics) {
|
2015-04-10 17:59:07 +00:00
|
|
|
glog.V(logger.Info).Infof("'%s' log topics length failed. Expected %d got %d", name, len(log.TopicsF), logs[i].Topics)
|
2015-03-19 14:04:29 +00:00
|
|
|
failed = 1
|
|
|
|
} else {
|
|
|
|
for j, topic := range log.TopicsF {
|
2015-04-08 18:45:39 +00:00
|
|
|
if common.HexToHash(topic) != logs[i].Topics[j] {
|
2015-04-10 17:59:07 +00:00
|
|
|
glog.V(logger.Info).Infof("'%s' log topic[%d] failed. Expected %v got %x", name, j, topic, logs[i].Topics[j])
|
2015-03-19 14:04:29 +00:00
|
|
|
failed = 1
|
2015-03-12 00:12:28 +00:00
|
|
|
}
|
|
|
|
}
|
2015-03-19 14:04:29 +00:00
|
|
|
}
|
|
|
|
genBloom := common.LeftPadBytes(types.LogsBloom(state.Logs{logs[i]}).Bytes(), 256)
|
|
|
|
|
|
|
|
if !bytes.Equal(genBloom, common.Hex2Bytes(log.BloomF)) {
|
2015-04-10 17:59:07 +00:00
|
|
|
glog.V(logger.Info).Infof("'%s' bloom failed.", name)
|
2015-03-19 14:04:29 +00:00
|
|
|
failed = 1
|
|
|
|
}
|
|
|
|
}
|
2015-03-12 00:12:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-19 14:04:29 +00:00
|
|
|
if failed == 1 {
|
2015-04-10 17:59:07 +00:00
|
|
|
glog.V(logger.Info).Infoln(string(statedb.Dump()))
|
2015-03-19 14:04:29 +00:00
|
|
|
}
|
|
|
|
|
2015-01-15 09:46:42 +00:00
|
|
|
logger.Flush()
|
2014-10-16 19:34:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2015-03-23 17:08:49 +00:00
|
|
|
helper.Logger.SetLogLevel(5)
|
2015-03-12 18:41:56 +00:00
|
|
|
vm.Debug = true
|
2014-10-16 19:34:59 +00:00
|
|
|
|
2015-01-09 11:04:54 +00:00
|
|
|
if len(os.Args) > 1 {
|
|
|
|
os.Exit(RunVmTest(strings.NewReader(os.Args[1])))
|
|
|
|
} else {
|
|
|
|
os.Exit(RunVmTest(os.Stdin))
|
|
|
|
}
|
2014-10-16 19:34:59 +00:00
|
|
|
}
|