stub_oracle_test.go 2.19 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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
package l2

import (
	"testing"

	"github.com/ethereum/go-ethereum/common"
	"github.com/ethereum/go-ethereum/core/rawdb"
	"github.com/ethereum/go-ethereum/core/types"
	"github.com/ethereum/go-ethereum/ethdb"
)

type stubBlockOracle struct {
	t      *testing.T
	blocks map[common.Hash]*types.Block
	StateOracle
}

func newStubOracle(t *testing.T) (*stubBlockOracle, *stubStateOracle) {
	stateOracle := newStubStateOracle(t)
	blockOracle := stubBlockOracle{
		t:           t,
		blocks:      make(map[common.Hash]*types.Block),
		StateOracle: stateOracle,
	}
	return &blockOracle, stateOracle
}

func newStubOracleWithBlocks(t *testing.T, chain []*types.Block, db ethdb.Database) *stubBlockOracle {
	blocks := make(map[common.Hash]*types.Block, len(chain))
	for _, block := range chain {
		blocks[block.Hash()] = block
	}
	return &stubBlockOracle{
		blocks:      blocks,
		StateOracle: &kvStateOracle{t: t, source: db},
	}
}

func (o stubBlockOracle) BlockByHash(blockHash common.Hash) *types.Block {
	block, ok := o.blocks[blockHash]
	if !ok {
		o.t.Fatalf("requested unknown block %s", blockHash)
	}
	return block
}

// kvStateOracle loads data from a source ethdb.KeyValueStore
type kvStateOracle struct {
	t      *testing.T
	source ethdb.KeyValueStore
}

func (o *kvStateOracle) NodeByHash(nodeHash common.Hash) []byte {
	val, err := o.source.Get(nodeHash.Bytes())
	if err != nil {
		o.t.Fatalf("error retrieving node %v: %v", nodeHash, err)
	}
	return val
}

func (o *kvStateOracle) CodeByHash(hash common.Hash) []byte {
	return rawdb.ReadCode(o.source, hash)
}

func newStubStateOracle(t *testing.T) *stubStateOracle {
	return &stubStateOracle{
		t:    t,
		data: make(map[common.Hash][]byte),
		code: make(map[common.Hash][]byte),
	}
}

// Stub StateOracle implementation that reads from simple maps
type stubStateOracle struct {
	t    *testing.T
	data map[common.Hash][]byte
	code map[common.Hash][]byte
}

func (o *stubStateOracle) NodeByHash(nodeHash common.Hash) []byte {
	data, ok := o.data[nodeHash]
	if !ok {
		o.t.Fatalf("no value for node %v", nodeHash)
	}
	return data
}

func (o *stubStateOracle) CodeByHash(hash common.Hash) []byte {
	data, ok := o.code[hash]
	if !ok {
		o.t.Fatalf("no value for code %v", hash)
	}
	return data
}