github.com/AlohaMobile/go-ethereum@v1.9.7/tests/vm_test_util.go (about)

     1  // Copyright 2015 The go-ethereum Authors
     2  // This file is part of the go-ethereum library.
     3  //
     4  // The go-ethereum library is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU Lesser General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     9  // The go-ethereum library is distributed in the hope that it will be useful,
    10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  // GNU Lesser General Public License for more details.
    13  //
    14  // You should have received a copy of the GNU Lesser General Public License
    15  // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  package tests
    18  
    19  import (
    20  	"bytes"
    21  	"encoding/json"
    22  	"fmt"
    23  	"math/big"
    24  
    25  	"github.com/ethereum/go-ethereum/common"
    26  	"github.com/ethereum/go-ethereum/common/hexutil"
    27  	"github.com/ethereum/go-ethereum/common/math"
    28  	"github.com/ethereum/go-ethereum/core"
    29  	"github.com/ethereum/go-ethereum/core/rawdb"
    30  	"github.com/ethereum/go-ethereum/core/state"
    31  	"github.com/ethereum/go-ethereum/core/vm"
    32  	"github.com/ethereum/go-ethereum/crypto"
    33  	"github.com/ethereum/go-ethereum/params"
    34  )
    35  
    36  // VMTest checks EVM execution without block or transaction context.
    37  // See https://github.com/ethereum/tests/wiki/VM-Tests for the test format specification.
    38  type VMTest struct {
    39  	json vmJSON
    40  }
    41  
    42  func (t *VMTest) UnmarshalJSON(data []byte) error {
    43  	return json.Unmarshal(data, &t.json)
    44  }
    45  
    46  type vmJSON struct {
    47  	Env           stEnv                 `json:"env"`
    48  	Exec          vmExec                `json:"exec"`
    49  	Logs          common.UnprefixedHash `json:"logs"`
    50  	GasRemaining  *math.HexOrDecimal64  `json:"gas"`
    51  	Out           hexutil.Bytes         `json:"out"`
    52  	Pre           core.GenesisAlloc     `json:"pre"`
    53  	Post          core.GenesisAlloc     `json:"post"`
    54  	PostStateRoot common.Hash           `json:"postStateRoot"`
    55  }
    56  
    57  //go:generate gencodec -type vmExec -field-override vmExecMarshaling -out gen_vmexec.go
    58  
    59  type vmExec struct {
    60  	Address  common.Address `json:"address"  gencodec:"required"`
    61  	Caller   common.Address `json:"caller"   gencodec:"required"`
    62  	Origin   common.Address `json:"origin"   gencodec:"required"`
    63  	Code     []byte         `json:"code"     gencodec:"required"`
    64  	Data     []byte         `json:"data"     gencodec:"required"`
    65  	Value    *big.Int       `json:"value"    gencodec:"required"`
    66  	GasLimit uint64         `json:"gas"      gencodec:"required"`
    67  	GasPrice *big.Int       `json:"gasPrice" gencodec:"required"`
    68  }
    69  
    70  type vmExecMarshaling struct {
    71  	Address  common.UnprefixedAddress
    72  	Caller   common.UnprefixedAddress
    73  	Origin   common.UnprefixedAddress
    74  	Code     hexutil.Bytes
    75  	Data     hexutil.Bytes
    76  	Value    *math.HexOrDecimal256
    77  	GasLimit math.HexOrDecimal64
    78  	GasPrice *math.HexOrDecimal256
    79  }
    80  
    81  func (t *VMTest) Run(vmconfig vm.Config) error {
    82  	statedb := MakePreState(rawdb.NewMemoryDatabase(), t.json.Pre)
    83  	ret, gasRemaining, err := t.exec(statedb, vmconfig)
    84  
    85  	if t.json.GasRemaining == nil {
    86  		if err == nil {
    87  			return fmt.Errorf("gas unspecified (indicating an error), but VM returned no error")
    88  		}
    89  		if gasRemaining > 0 {
    90  			return fmt.Errorf("gas unspecified (indicating an error), but VM returned gas remaining > 0")
    91  		}
    92  		return nil
    93  	}
    94  	// Test declares gas, expecting outputs to match.
    95  	if !bytes.Equal(ret, t.json.Out) {
    96  		return fmt.Errorf("return data mismatch: got %x, want %x", ret, t.json.Out)
    97  	}
    98  	if gasRemaining != uint64(*t.json.GasRemaining) {
    99  		return fmt.Errorf("remaining gas %v, want %v", gasRemaining, *t.json.GasRemaining)
   100  	}
   101  	for addr, account := range t.json.Post {
   102  		for k, wantV := range account.Storage {
   103  			if haveV := statedb.GetState(addr, k); haveV != wantV {
   104  				return fmt.Errorf("wrong storage value at %x:\n  got  %x\n  want %x", k, haveV, wantV)
   105  			}
   106  		}
   107  	}
   108  	// if root := statedb.IntermediateRoot(false); root != t.json.PostStateRoot {
   109  	// 	return fmt.Errorf("post state root mismatch, got %x, want %x", root, t.json.PostStateRoot)
   110  	// }
   111  	if logs := rlpHash(statedb.Logs()); logs != common.Hash(t.json.Logs) {
   112  		return fmt.Errorf("post state logs hash mismatch: got %x, want %x", logs, t.json.Logs)
   113  	}
   114  	return nil
   115  }
   116  
   117  func (t *VMTest) exec(statedb *state.StateDB, vmconfig vm.Config) ([]byte, uint64, error) {
   118  	evm := t.newEVM(statedb, vmconfig)
   119  	e := t.json.Exec
   120  	return evm.Call(vm.AccountRef(e.Caller), e.Address, e.Data, e.GasLimit, e.Value)
   121  }
   122  
   123  func (t *VMTest) newEVM(statedb *state.StateDB, vmconfig vm.Config) *vm.EVM {
   124  	initialCall := true
   125  	canTransfer := func(db vm.StateDB, address common.Address, amount *big.Int) bool {
   126  		if initialCall {
   127  			initialCall = false
   128  			return true
   129  		}
   130  		return core.CanTransfer(db, address, amount)
   131  	}
   132  	transfer := func(db vm.StateDB, sender, recipient common.Address, amount *big.Int) {}
   133  	context := vm.Context{
   134  		CanTransfer: canTransfer,
   135  		Transfer:    transfer,
   136  		GetHash:     vmTestBlockHash,
   137  		Origin:      t.json.Exec.Origin,
   138  		Coinbase:    t.json.Env.Coinbase,
   139  		BlockNumber: new(big.Int).SetUint64(t.json.Env.Number),
   140  		Time:        new(big.Int).SetUint64(t.json.Env.Timestamp),
   141  		GasLimit:    t.json.Env.GasLimit,
   142  		Difficulty:  t.json.Env.Difficulty,
   143  		GasPrice:    t.json.Exec.GasPrice,
   144  	}
   145  	vmconfig.NoRecursion = true
   146  	return vm.NewEVM(context, statedb, params.MainnetChainConfig, vmconfig)
   147  }
   148  
   149  func vmTestBlockHash(n uint64) common.Hash {
   150  	return common.BytesToHash(crypto.Keccak256([]byte(big.NewInt(int64(n)).String())))
   151  }