logger_test.go 3.53 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
// Copyright 2016 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 vm

import (
	"math/big"
	"testing"

	"github.com/ethereum/go-ethereum/common"
)

type dummyContractRef struct {
	calledForEach bool
}

func (dummyContractRef) ReturnGas(*big.Int, *big.Int) {}
func (dummyContractRef) Address() common.Address      { return common.Address{} }
func (dummyContractRef) Value() *big.Int              { return new(big.Int) }
33
func (dummyContractRef) SetCode(common.Hash, []byte)  {}
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
func (d *dummyContractRef) ForEachStorage(callback func(key, value common.Hash) bool) {
	d.calledForEach = true
}
func (d *dummyContractRef) SubBalance(amount *big.Int) {}
func (d *dummyContractRef) AddBalance(amount *big.Int) {}
func (d *dummyContractRef) SetBalance(*big.Int)        {}
func (d *dummyContractRef) SetNonce(uint64)            {}
func (d *dummyContractRef) Balance() *big.Int          { return new(big.Int) }

type dummyEnv struct {
	*Env
	ref *dummyContractRef
}

func newDummyEnv(ref *dummyContractRef) *dummyEnv {
	return &dummyEnv{
50
		Env: NewEnv(&Config{EnableJit: false, ForceJit: false}),
51 52 53 54 55 56 57 58 59
		ref: ref,
	}
}
func (d dummyEnv) GetAccount(common.Address) Account {
	return d.ref
}

func TestStoreCapture(t *testing.T) {
	var (
60
		env      = NewEnv(&Config{EnableJit: false, ForceJit: false})
61
		logger   = NewStructLogger(nil)
62 63 64 65 66 67 68 69 70
		mem      = NewMemory()
		stack    = newstack()
		contract = NewContract(&dummyContractRef{}, &dummyContractRef{}, new(big.Int), new(big.Int), new(big.Int))
	)
	stack.push(big.NewInt(1))
	stack.push(big.NewInt(0))

	var index common.Hash

71
	logger.CaptureState(env, 0, SSTORE, new(big.Int), new(big.Int), mem, stack, contract, 0, nil)
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
	if len(logger.changedValues[contract.Address()]) == 0 {
		t.Fatalf("expected exactly 1 changed value on address %x, got %d", contract.Address(), len(logger.changedValues[contract.Address()]))
	}

	exp := common.BigToHash(big.NewInt(1))
	if logger.changedValues[contract.Address()][index] != exp {
		t.Errorf("expected %x, got %x", exp, logger.changedValues[contract.Address()][index])
	}
}

func TestStorageCapture(t *testing.T) {
	t.Skip("implementing this function is difficult. it requires all sort of interfaces to be implemented which isn't trivial. The value (the actual test) isn't worth it")
	var (
		ref      = &dummyContractRef{}
		contract = NewContract(ref, ref, new(big.Int), new(big.Int), new(big.Int))
		env      = newDummyEnv(ref)
88
		logger   = NewStructLogger(nil)
89 90 91 92
		mem      = NewMemory()
		stack    = newstack()
	)

93
	logger.CaptureState(env, 0, STOP, new(big.Int), new(big.Int), mem, stack, contract, 0, nil)
94 95 96 97
	if ref.calledForEach {
		t.Error("didn't expect for each to be called")
	}

98 99
	logger = NewStructLogger(&LogConfig{FullStorage: true})
	logger.CaptureState(env, 0, STOP, new(big.Int), new(big.Int), mem, stack, contract, 0, nil)
100 101 102 103
	if !ref.calledForEach {
		t.Error("expected for each to be called")
	}
}