forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
2.3 KiB
91 lines
2.3 KiB
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"reflect"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/davecgh/go-spew/spew"
|
|
"github.com/ethereum/go-ethereum/core"
|
|
)
|
|
|
|
func TestConverter_AlethStureby(t *testing.T) {
|
|
blob, err := ioutil.ReadFile("testdata/stureby_geth.json")
|
|
if err != nil {
|
|
t.Fatalf("could not read file: %v", err)
|
|
}
|
|
var genesis core.Genesis
|
|
if err := json.Unmarshal(blob, &genesis); err != nil {
|
|
t.Fatalf("failed parsing genesis: %v", err)
|
|
}
|
|
spec, err := newAlethGenesisSpec("stureby", &genesis)
|
|
if err != nil {
|
|
t.Fatalf("failed creating chainspec: %v", err)
|
|
}
|
|
|
|
expBlob, err := ioutil.ReadFile("testdata/stureby_aleth.json")
|
|
if err != nil {
|
|
t.Fatalf("could not read file: %v", err)
|
|
}
|
|
expspec := &alethGenesisSpec{}
|
|
if err := json.Unmarshal(expBlob, expspec); err != nil {
|
|
t.Fatalf("failed parsing genesis: %v", err)
|
|
}
|
|
if !reflect.DeepEqual(expspec, spec) {
|
|
t.Errorf("chainspec mismatch")
|
|
c := spew.ConfigState{
|
|
DisablePointerAddresses: true,
|
|
SortKeys: true,
|
|
}
|
|
exp := strings.Split(c.Sdump(expspec), "\n")
|
|
got := strings.Split(c.Sdump(spec), "\n")
|
|
for i := 0; i < len(exp) && i < len(got); i++ {
|
|
if exp[i] != got[i] {
|
|
fmt.Printf("got: %v\nexp: %v\n", exp[i], got[i])
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestConverter_ParityStureby(t *testing.T) {
|
|
blob, err := ioutil.ReadFile("testdata/stureby_geth.json")
|
|
if err != nil {
|
|
t.Fatalf("could not read file: %v", err)
|
|
}
|
|
var genesis core.Genesis
|
|
if err := json.Unmarshal(blob, &genesis); err != nil {
|
|
t.Fatalf("failed parsing genesis: %v", err)
|
|
}
|
|
spec, err := newParityChainSpec("Stureby", &genesis, []string{})
|
|
if err != nil {
|
|
t.Fatalf("failed creating chainspec: %v", err)
|
|
}
|
|
|
|
expBlob, err := ioutil.ReadFile("testdata/stureby_parity.json")
|
|
if err != nil {
|
|
t.Fatalf("could not read file: %v", err)
|
|
}
|
|
expspec := &parityChainSpec{}
|
|
if err := json.Unmarshal(expBlob, expspec); err != nil {
|
|
t.Fatalf("failed parsing genesis: %v", err)
|
|
}
|
|
expspec.Nodes = []string{}
|
|
|
|
if !reflect.DeepEqual(expspec, spec) {
|
|
t.Errorf("chainspec mismatch")
|
|
c := spew.ConfigState{
|
|
DisablePointerAddresses: true,
|
|
SortKeys: true,
|
|
}
|
|
exp := strings.Split(c.Sdump(expspec), "\n")
|
|
got := strings.Split(c.Sdump(spec), "\n")
|
|
for i := 0; i < len(exp) && i < len(got); i++ {
|
|
if exp[i] != got[i] {
|
|
fmt.Printf("got: %v\nexp: %v\n", exp[i], got[i])
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|