aboutsummaryrefslogtreecommitdiffstats
path: root/tests/util.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@users.noreply.github.com>2017-07-11 19:49:14 +0800
committerGitHub <noreply@github.com>2017-07-11 19:49:14 +0800
commit225de7ca0a9e861696a5a43b666090b574c4c769 (patch)
tree68aff6fb74fece37626ced330fa9c5da91b483a4 /tests/util.go
parentbd01cd7183e771984fb9c008e7a7ebf0a0c3f9ba (diff)
downloaddexon-225de7ca0a9e861696a5a43b666090b574c4c769.tar.gz
dexon-225de7ca0a9e861696a5a43b666090b574c4c769.tar.zst
dexon-225de7ca0a9e861696a5a43b666090b574c4c769.zip
tests: update tests and implement general state tests (#14734)
Tests are now included as a submodule. This should make updating easier and removes ~60MB of JSON data from the working copy. State tests are replaced by General State Tests, which run the same test with multiple fork configurations. With the new test runner, consensus tests are run as subtests by walking json files. Many hex issues have been fixed upstream since the last update and most custom parsing code is replaced by existing JSON hex types. Tests can now be marked as 'expected failures', ensuring that fixes for those tests will trigger an update to test configuration. The new test runner also supports parallel execution and the -short flag.
Diffstat (limited to 'tests/util.go')
-rw-r--r--tests/util.go214
1 files changed, 0 insertions, 214 deletions
diff --git a/tests/util.go b/tests/util.go
deleted file mode 100644
index ff02679ec..000000000
--- a/tests/util.go
+++ /dev/null
@@ -1,214 +0,0 @@
-// Copyright 2015 The go-ethereum Authors
-// This file is part of the go-ethereum library.
-//
-// The go-ethereum library is free software: you can redistribute it and/or modify
-// it under the terms of the GNU Lesser General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-//
-// The go-ethereum library 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 Lesser General Public License for more details.
-//
-// You should have received a copy of the GNU Lesser General Public License
-// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
-
-package tests
-
-import (
- "bytes"
- "fmt"
- "math/big"
- "os"
-
- "github.com/ethereum/go-ethereum/common"
- "github.com/ethereum/go-ethereum/common/math"
- "github.com/ethereum/go-ethereum/core"
- "github.com/ethereum/go-ethereum/core/state"
- "github.com/ethereum/go-ethereum/core/types"
- "github.com/ethereum/go-ethereum/core/vm"
- "github.com/ethereum/go-ethereum/crypto"
- "github.com/ethereum/go-ethereum/ethdb"
- "github.com/ethereum/go-ethereum/log"
- "github.com/ethereum/go-ethereum/params"
-)
-
-var (
- ForceJit bool
- EnableJit bool
-)
-
-func init() {
- log.Root().SetHandler(log.LvlFilterHandler(log.LvlCrit, log.StreamHandler(os.Stderr, log.TerminalFormat(false))))
- if os.Getenv("JITVM") == "true" {
- ForceJit = true
- EnableJit = true
- }
-}
-
-func checkLogs(tlog []Log, logs []*types.Log) error {
- if len(tlog) != len(logs) {
- return fmt.Errorf("log length mismatch. Expected %d, got %d", len(tlog), len(logs))
- } else {
- for i, log := range tlog {
- if common.HexToAddress(log.AddressF) != logs[i].Address {
- return fmt.Errorf("log address expected %v got %x", log.AddressF, logs[i].Address)
- }
-
- if !bytes.Equal(logs[i].Data, common.FromHex(log.DataF)) {
- return fmt.Errorf("log data expected %v got %x", log.DataF, logs[i].Data)
- }
-
- if len(log.TopicsF) != len(logs[i].Topics) {
- return fmt.Errorf("log topics length expected %d got %d", len(log.TopicsF), logs[i].Topics)
- } else {
- for j, topic := range log.TopicsF {
- if common.HexToHash(topic) != logs[i].Topics[j] {
- return fmt.Errorf("log topic[%d] expected %v got %x", j, topic, logs[i].Topics[j])
- }
- }
- }
- genBloom := math.PaddedBigBytes(types.LogsBloom([]*types.Log{logs[i]}), 256)
-
- if !bytes.Equal(genBloom, common.Hex2Bytes(log.BloomF)) {
- return fmt.Errorf("bloom mismatch")
- }
- }
- }
- return nil
-}
-
-type Account struct {
- Balance string
- Code string
- Nonce string
- Storage map[string]string
-}
-
-type Log struct {
- AddressF string `json:"address"`
- DataF string `json:"data"`
- TopicsF []string `json:"topics"`
- BloomF string `json:"bloom"`
-}
-
-func (self Log) Address() []byte { return common.Hex2Bytes(self.AddressF) }
-func (self Log) Data() []byte { return common.Hex2Bytes(self.DataF) }
-func (self Log) RlpData() interface{} { return nil }
-func (self Log) Topics() [][]byte {
- t := make([][]byte, len(self.TopicsF))
- for i, topic := range self.TopicsF {
- t[i] = common.Hex2Bytes(topic)
- }
- return t
-}
-
-func makePreState(db ethdb.Database, accounts map[string]Account) *state.StateDB {
- sdb := state.NewDatabase(db)
- statedb, _ := state.New(common.Hash{}, sdb)
- for addr, account := range accounts {
- insertAccount(statedb, addr, account)
- }
- // Commit and re-open to start with a clean state.
- root, _ := statedb.CommitTo(db, false)
- statedb, _ = state.New(root, sdb)
- return statedb
-}
-
-func insertAccount(state *state.StateDB, saddr string, account Account) {
- if common.IsHex(account.Code) {
- account.Code = account.Code[2:]
- }
- addr := common.HexToAddress(saddr)
- state.SetCode(addr, common.Hex2Bytes(account.Code))
- state.SetNonce(addr, math.MustParseUint64(account.Nonce))
- state.SetBalance(addr, math.MustParseBig256(account.Balance))
- for a, v := range account.Storage {
- state.SetState(addr, common.HexToHash(a), common.HexToHash(v))
- }
-}
-
-type VmEnv struct {
- CurrentCoinbase string
- CurrentDifficulty string
- CurrentGasLimit string
- CurrentNumber string
- CurrentTimestamp interface{}
- PreviousHash string
-}
-
-type VmTest struct {
- Callcreates interface{}
- //Env map[string]string
- Env VmEnv
- Exec map[string]string
- Transaction map[string]string
- Logs []Log
- Gas string
- Out string
- Post map[string]Account
- Pre map[string]Account
- PostStateRoot string
-}
-
-func NewEVMEnvironment(vmTest bool, chainConfig *params.ChainConfig, statedb *state.StateDB, envValues map[string]string, tx map[string]string) (*vm.EVM, core.Message) {
- var (
- data = common.FromHex(tx["data"])
- gas = math.MustParseBig256(tx["gasLimit"])
- price = math.MustParseBig256(tx["gasPrice"])
- value = math.MustParseBig256(tx["value"])
- nonce = math.MustParseUint64(tx["nonce"])
- )
-
- origin := common.HexToAddress(tx["caller"])
- if len(tx["secretKey"]) > 0 {
- key, _ := crypto.HexToECDSA(tx["secretKey"])
- origin = crypto.PubkeyToAddress(key.PublicKey)
- }
-
- var to *common.Address
- if len(tx["to"]) > 2 {
- t := common.HexToAddress(tx["to"])
- to = &t
- }
-
- msg := types.NewMessage(origin, to, nonce, value, gas, price, data, true)
-
- initialCall := true
- canTransfer := func(db vm.StateDB, address common.Address, amount *big.Int) bool {
- if vmTest {
- if initialCall {
- initialCall = false
- return true
- }
- }
- return core.CanTransfer(db, address, amount)
- }
- transfer := func(db vm.StateDB, sender, recipient common.Address, amount *big.Int) {
- if vmTest {
- return
- }
- core.Transfer(db, sender, recipient, amount)
- }
-
- context := vm.Context{
- CanTransfer: canTransfer,
- Transfer: transfer,
- GetHash: func(n uint64) common.Hash {
- return common.BytesToHash(crypto.Keccak256([]byte(big.NewInt(int64(n)).String())))
- },
-
- Origin: origin,
- Coinbase: common.HexToAddress(envValues["currentCoinbase"]),
- BlockNumber: math.MustParseBig256(envValues["currentNumber"]),
- Time: math.MustParseBig256(envValues["currentTimestamp"]),
- GasLimit: math.MustParseBig256(envValues["currentGasLimit"]),
- Difficulty: math.MustParseBig256(envValues["currentDifficulty"]),
- GasPrice: price,
- }
- if context.GasPrice == nil {
- context.GasPrice = new(big.Int)
- }
- return vm.NewEVM(context, statedb, chainConfig, vm.Config{NoRecursion: vmTest}), msg
-}