2015-03-13 17:01:51 +00:00
|
|
|
package tests
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/hex"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"math/big"
|
|
|
|
"runtime"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
|
2015-03-16 10:27:38 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2015-04-17 14:30:15 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core"
|
2015-03-23 21:05:12 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/state"
|
2015-03-16 22:10:26 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2015-03-13 17:01:51 +00:00
|
|
|
"github.com/ethereum/go-ethereum/rlp"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Block Test JSON Format
|
|
|
|
type btJSON struct {
|
|
|
|
Blocks []btBlock
|
|
|
|
GenesisBlockHeader btHeader
|
|
|
|
Pre map[string]btAccount
|
2015-03-20 08:10:13 +00:00
|
|
|
PostState map[string]btAccount
|
2015-03-13 17:01:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type btAccount struct {
|
|
|
|
Balance string
|
|
|
|
Code string
|
|
|
|
Nonce string
|
|
|
|
Storage map[string]string
|
|
|
|
}
|
|
|
|
|
|
|
|
type btHeader struct {
|
|
|
|
Bloom string
|
|
|
|
Coinbase string
|
|
|
|
MixHash string
|
|
|
|
Nonce string
|
|
|
|
Number string
|
|
|
|
ParentHash string
|
|
|
|
ReceiptTrie string
|
|
|
|
SeedHash string
|
|
|
|
StateRoot string
|
|
|
|
TransactionsTrie string
|
|
|
|
UncleHash string
|
|
|
|
|
|
|
|
ExtraData string
|
|
|
|
Difficulty string
|
|
|
|
GasLimit string
|
|
|
|
GasUsed string
|
|
|
|
Timestamp string
|
|
|
|
}
|
|
|
|
|
|
|
|
type btTransaction struct {
|
|
|
|
Data string
|
|
|
|
GasLimit string
|
|
|
|
GasPrice string
|
|
|
|
Nonce string
|
|
|
|
R string
|
|
|
|
S string
|
|
|
|
To string
|
|
|
|
V string
|
|
|
|
Value string
|
|
|
|
}
|
|
|
|
|
|
|
|
type btBlock struct {
|
|
|
|
BlockHeader *btHeader
|
|
|
|
Rlp string
|
|
|
|
Transactions []btTransaction
|
2015-04-01 08:53:32 +00:00
|
|
|
UncleHeaders []*btHeader
|
2015-03-13 17:01:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type BlockTest struct {
|
|
|
|
Genesis *types.Block
|
|
|
|
|
2015-04-17 14:30:15 +00:00
|
|
|
json *btJSON
|
2015-03-13 17:01:51 +00:00
|
|
|
preAccounts map[string]btAccount
|
|
|
|
}
|
|
|
|
|
|
|
|
// LoadBlockTests loads a block test JSON file.
|
|
|
|
func LoadBlockTests(file string) (map[string]*BlockTest, error) {
|
|
|
|
bt := make(map[string]*btJSON)
|
2015-04-10 09:55:31 +00:00
|
|
|
if err := LoadJSON(file, &bt); err != nil {
|
2015-03-13 17:01:51 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
out := make(map[string]*BlockTest)
|
|
|
|
for name, in := range bt {
|
|
|
|
var err error
|
|
|
|
if out[name], err = convertTest(in); err != nil {
|
2015-04-17 14:30:15 +00:00
|
|
|
return out, fmt.Errorf("bad test %q: %v", name, err)
|
2015-03-13 17:01:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// InsertPreState populates the given database with the genesis
|
|
|
|
// accounts defined by the test.
|
2015-03-20 08:10:13 +00:00
|
|
|
func (t *BlockTest) InsertPreState(db common.Database) (*state.StateDB, error) {
|
2015-03-18 10:44:25 +00:00
|
|
|
statedb := state.New(common.Hash{}, db)
|
2015-03-13 17:01:51 +00:00
|
|
|
for addrString, acct := range t.preAccounts {
|
|
|
|
// XXX: is is worth it checking for errors here?
|
2015-03-16 22:10:26 +00:00
|
|
|
//addr, _ := hex.DecodeString(addrString)
|
2015-03-13 17:01:51 +00:00
|
|
|
code, _ := hex.DecodeString(strings.TrimPrefix(acct.Code, "0x"))
|
|
|
|
balance, _ := new(big.Int).SetString(acct.Balance, 0)
|
|
|
|
nonce, _ := strconv.ParseUint(acct.Nonce, 16, 64)
|
|
|
|
|
2015-04-01 08:53:32 +00:00
|
|
|
obj := statedb.CreateAccount(common.HexToAddress(addrString))
|
2015-03-13 17:01:51 +00:00
|
|
|
obj.SetCode(code)
|
|
|
|
obj.SetBalance(balance)
|
|
|
|
obj.SetNonce(nonce)
|
2015-04-01 08:53:32 +00:00
|
|
|
for k, v := range acct.Storage {
|
|
|
|
statedb.SetState(common.HexToAddress(addrString), common.HexToHash(k), common.FromHex(v))
|
|
|
|
}
|
2015-03-13 17:01:51 +00:00
|
|
|
}
|
|
|
|
// sync objects to trie
|
2015-04-01 21:58:26 +00:00
|
|
|
statedb.Update()
|
2015-03-13 17:01:51 +00:00
|
|
|
// sync trie to disk
|
|
|
|
statedb.Sync()
|
|
|
|
|
2015-03-21 19:29:12 +00:00
|
|
|
if !bytes.Equal(t.Genesis.Root().Bytes(), statedb.Root().Bytes()) {
|
2015-04-01 08:53:32 +00:00
|
|
|
return nil, fmt.Errorf("computed state root does not match genesis block %x %x", t.Genesis.Root().Bytes()[:4], statedb.Root().Bytes()[:4])
|
2015-03-20 08:10:13 +00:00
|
|
|
}
|
|
|
|
return statedb, nil
|
|
|
|
}
|
|
|
|
|
2015-04-17 14:30:15 +00:00
|
|
|
// InsertBlocks loads the test's blocks into the given chain.
|
|
|
|
func (t *BlockTest) InsertBlocks(chain *core.ChainManager) error {
|
|
|
|
blocks, err := t.convertBlocks()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return chain.InsertChain(blocks)
|
|
|
|
}
|
|
|
|
|
2015-03-20 08:10:13 +00:00
|
|
|
func (t *BlockTest) ValidatePostState(statedb *state.StateDB) error {
|
|
|
|
for addrString, acct := range t.preAccounts {
|
|
|
|
// XXX: is is worth it checking for errors here?
|
|
|
|
addr, _ := hex.DecodeString(addrString)
|
|
|
|
code, _ := hex.DecodeString(strings.TrimPrefix(acct.Code, "0x"))
|
|
|
|
balance, _ := new(big.Int).SetString(acct.Balance, 0)
|
|
|
|
nonce, _ := strconv.ParseUint(acct.Nonce, 16, 64)
|
|
|
|
|
|
|
|
// address is indirectly verified by the other fields, as it's the db key
|
2015-03-21 19:29:12 +00:00
|
|
|
code2 := statedb.GetCode(common.BytesToAddress(addr))
|
|
|
|
balance2 := statedb.GetBalance(common.BytesToAddress(addr))
|
|
|
|
nonce2 := statedb.GetNonce(common.BytesToAddress(addr))
|
2015-03-20 08:10:13 +00:00
|
|
|
if !bytes.Equal(code2, code) {
|
|
|
|
return fmt.Errorf("account code mismatch, addr, found, expected: ", addrString, hex.EncodeToString(code2), hex.EncodeToString(code))
|
|
|
|
}
|
|
|
|
if balance2.Cmp(balance) != 0 {
|
|
|
|
return fmt.Errorf("account balance mismatch, addr, found, expected: ", addrString, balance2, balance)
|
|
|
|
}
|
|
|
|
if nonce2 != nonce {
|
|
|
|
return fmt.Errorf("account nonce mismatch, addr, found, expected: ", addrString, nonce2, nonce)
|
|
|
|
}
|
2015-03-13 17:01:51 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-04-17 14:30:15 +00:00
|
|
|
func (t *BlockTest) convertBlocks() (blocks []*types.Block, err error) {
|
|
|
|
// the conversion handles errors by catching panics.
|
|
|
|
// you might consider this ugly, but the alternative (passing errors)
|
|
|
|
// would be much harder to read.
|
|
|
|
defer func() {
|
|
|
|
if recovered := recover(); recovered != nil {
|
|
|
|
buf := make([]byte, 64<<10)
|
|
|
|
buf = buf[:runtime.Stack(buf, false)]
|
|
|
|
err = fmt.Errorf("%v\n%s", recovered, buf)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
blocks = mustConvertBlocks(t.json.Blocks)
|
|
|
|
return blocks, nil
|
|
|
|
}
|
|
|
|
|
2015-03-13 17:01:51 +00:00
|
|
|
func convertTest(in *btJSON) (out *BlockTest, err error) {
|
|
|
|
// the conversion handles errors by catching panics.
|
|
|
|
// you might consider this ugly, but the alternative (passing errors)
|
|
|
|
// would be much harder to read.
|
|
|
|
defer func() {
|
|
|
|
if recovered := recover(); recovered != nil {
|
|
|
|
buf := make([]byte, 64<<10)
|
|
|
|
buf = buf[:runtime.Stack(buf, false)]
|
|
|
|
err = fmt.Errorf("%v\n%s", recovered, buf)
|
|
|
|
}
|
|
|
|
}()
|
2015-04-17 14:30:15 +00:00
|
|
|
out = &BlockTest{preAccounts: in.Pre, json: in}
|
2015-03-13 17:01:51 +00:00
|
|
|
out.Genesis = mustConvertGenesis(in.GenesisBlockHeader)
|
|
|
|
return out, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func mustConvertGenesis(testGenesis btHeader) *types.Block {
|
|
|
|
hdr := mustConvertHeader(testGenesis)
|
|
|
|
hdr.Number = big.NewInt(0)
|
|
|
|
b := types.NewBlockWithHeader(hdr)
|
|
|
|
b.Td = new(big.Int)
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
|
|
|
func mustConvertHeader(in btHeader) *types.Header {
|
|
|
|
// hex decode these fields
|
2015-03-16 22:10:26 +00:00
|
|
|
header := &types.Header{
|
2015-03-14 22:37:21 +00:00
|
|
|
//SeedHash: mustConvertBytes(in.SeedHash),
|
2015-03-16 22:10:26 +00:00
|
|
|
MixDigest: mustConvertHash(in.MixHash),
|
|
|
|
Bloom: mustConvertBloom(in.Bloom),
|
|
|
|
ReceiptHash: mustConvertHash(in.ReceiptTrie),
|
|
|
|
TxHash: mustConvertHash(in.TransactionsTrie),
|
|
|
|
Root: mustConvertHash(in.StateRoot),
|
|
|
|
Coinbase: mustConvertAddress(in.Coinbase),
|
|
|
|
UncleHash: mustConvertHash(in.UncleHash),
|
|
|
|
ParentHash: mustConvertHash(in.ParentHash),
|
2015-04-05 16:57:03 +00:00
|
|
|
Extra: mustConvertBytes(in.ExtraData),
|
2015-04-17 16:20:32 +00:00
|
|
|
GasUsed: mustConvertBigInt(in.GasUsed, 10),
|
|
|
|
GasLimit: mustConvertBigInt(in.GasLimit, 10),
|
|
|
|
Difficulty: mustConvertBigInt(in.Difficulty, 10),
|
|
|
|
Time: mustConvertUint(in.Timestamp, 10),
|
2015-03-13 17:01:51 +00:00
|
|
|
}
|
2015-03-16 22:10:26 +00:00
|
|
|
// XXX cheats? :-)
|
2015-04-17 16:20:32 +00:00
|
|
|
header.SetNonce(mustConvertUint(in.Nonce, 16))
|
2015-03-16 22:10:26 +00:00
|
|
|
return header
|
2015-03-13 17:01:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func mustConvertBlocks(testBlocks []btBlock) []*types.Block {
|
|
|
|
var out []*types.Block
|
|
|
|
for i, inb := range testBlocks {
|
|
|
|
var b types.Block
|
|
|
|
r := bytes.NewReader(mustConvertBytes(inb.Rlp))
|
|
|
|
if err := rlp.Decode(r, &b); err != nil {
|
2015-04-17 14:30:15 +00:00
|
|
|
panic(fmt.Errorf("invalid block %d: %q\nerror: %v", i, inb.Rlp, err))
|
2015-03-13 17:01:51 +00:00
|
|
|
}
|
|
|
|
out = append(out, &b)
|
|
|
|
}
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
func mustConvertBytes(in string) []byte {
|
2015-04-15 20:37:16 +00:00
|
|
|
if in == "0x" {
|
|
|
|
return []byte{}
|
|
|
|
}
|
2015-04-18 22:35:48 +00:00
|
|
|
h := unfuckFuckedHex(strings.TrimPrefix(in, "0x"))
|
2015-04-15 20:37:16 +00:00
|
|
|
out, err := hex.DecodeString(h)
|
2015-03-13 17:01:51 +00:00
|
|
|
if err != nil {
|
2015-04-18 22:35:48 +00:00
|
|
|
panic(fmt.Errorf("invalid hex: %q: ", h, err))
|
2015-03-13 17:01:51 +00:00
|
|
|
}
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2015-03-16 22:10:26 +00:00
|
|
|
func mustConvertHash(in string) common.Hash {
|
|
|
|
out, err := hex.DecodeString(strings.TrimPrefix(in, "0x"))
|
|
|
|
if err != nil {
|
|
|
|
panic(fmt.Errorf("invalid hex: %q", in))
|
|
|
|
}
|
|
|
|
return common.BytesToHash(out)
|
|
|
|
}
|
|
|
|
|
|
|
|
func mustConvertAddress(in string) common.Address {
|
2015-04-18 22:35:48 +00:00
|
|
|
out, err := hex.DecodeString(strings.TrimPrefix(in, "0x"))
|
2015-03-16 22:10:26 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(fmt.Errorf("invalid hex: %q", in))
|
|
|
|
}
|
|
|
|
return common.BytesToAddress(out)
|
|
|
|
}
|
|
|
|
|
2015-03-18 10:44:25 +00:00
|
|
|
func mustConvertBloom(in string) types.Bloom {
|
2015-03-16 22:10:26 +00:00
|
|
|
out, err := hex.DecodeString(strings.TrimPrefix(in, "0x"))
|
|
|
|
if err != nil {
|
|
|
|
panic(fmt.Errorf("invalid hex: %q", in))
|
|
|
|
}
|
2015-03-18 10:44:25 +00:00
|
|
|
return types.BytesToBloom(out)
|
2015-03-16 22:10:26 +00:00
|
|
|
}
|
|
|
|
|
2015-04-17 16:20:32 +00:00
|
|
|
func mustConvertBigInt(in string, base int) *big.Int {
|
|
|
|
in = prepInt(base, in)
|
|
|
|
out, ok := new(big.Int).SetString(in, base)
|
2015-04-10 09:55:31 +00:00
|
|
|
if !ok {
|
|
|
|
panic(fmt.Errorf("invalid integer: %q", in))
|
|
|
|
}
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2015-04-17 16:20:32 +00:00
|
|
|
func mustConvertUint(in string, base int) uint64 {
|
|
|
|
in = prepInt(base, in)
|
|
|
|
out, err := strconv.ParseUint(in, base, 64)
|
2015-04-10 09:55:31 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(fmt.Errorf("invalid integer: %q", in))
|
|
|
|
}
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// LoadJSON reads the given file and unmarshals its content.
|
|
|
|
func LoadJSON(file string, val interface{}) error {
|
2015-03-13 17:01:51 +00:00
|
|
|
content, err := ioutil.ReadFile(file)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := json.Unmarshal(content, val); err != nil {
|
|
|
|
if syntaxerr, ok := err.(*json.SyntaxError); ok {
|
|
|
|
line := findLine(content, syntaxerr.Offset)
|
|
|
|
return fmt.Errorf("JSON syntax error at %v:%v: %v", file, line, err)
|
|
|
|
}
|
|
|
|
return fmt.Errorf("JSON unmarshal error in %v: %v", file, err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// findLine returns the line number for the given offset into data.
|
|
|
|
func findLine(data []byte, offset int64) (line int) {
|
|
|
|
line = 1
|
|
|
|
for i, r := range string(data) {
|
|
|
|
if int64(i) >= offset {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if r == '\n' {
|
|
|
|
line++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2015-04-15 20:37:16 +00:00
|
|
|
|
2015-04-18 22:35:48 +00:00
|
|
|
// Nothing to see here, please move along...
|
2015-04-17 16:20:32 +00:00
|
|
|
func prepInt(base int, s string) string {
|
|
|
|
if base == 16 {
|
|
|
|
if strings.HasPrefix(s, "0x") {
|
|
|
|
s = s[2:]
|
|
|
|
}
|
|
|
|
if len(s) == 0 {
|
|
|
|
s = "00"
|
|
|
|
}
|
|
|
|
s = nibbleFix(s)
|
|
|
|
}
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
2015-04-18 22:35:48 +00:00
|
|
|
// don't ask
|
|
|
|
func unfuckFuckedHex(almostHex string) string {
|
|
|
|
return nibbleFix(strings.Replace(almostHex, "v", "", -1))
|
|
|
|
}
|
|
|
|
|
2015-04-17 16:20:32 +00:00
|
|
|
func nibbleFix(s string) string {
|
|
|
|
if len(s)%2 != 0 {
|
|
|
|
s = "0" + s
|
2015-04-15 20:37:16 +00:00
|
|
|
}
|
2015-04-17 16:20:32 +00:00
|
|
|
return s
|
2015-04-15 20:37:16 +00:00
|
|
|
}
|