Skip to content

Commit

Permalink
Chain tests
Browse files Browse the repository at this point in the history
  • Loading branch information
obscuren committed Dec 30, 2014
1 parent 2f8a45c commit 8df689b
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 5 deletions.
Binary file added _data/invalid1
Binary file not shown.
File renamed without changes.
File renamed without changes.
Binary file added _data/valid3
Binary file not shown.
Binary file added _data/valid4
Binary file not shown.
53 changes: 48 additions & 5 deletions core/chain_manager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,23 @@ import (
"path"
"reflect"
"runtime"
"strconv"
"testing"

"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/ethutil"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/rlp"
//logpkg "github.com/ethereum/go-ethereum/logger"
)

//var Logger logpkg.LogSystem

//var Log = logpkg.NewLogger("TEST")

func init() {
runtime.GOMAXPROCS(runtime.NumCPU())
//Logger = logpkg.NewStdLogSystem(os.Stdout, log.LstdFlags, logpkg.InfoLevel)
//Logger = logpkg.NewStdLogSystem(os.Stdout, log.LstdFlags, logpkg.DebugLevel)
//logpkg.AddLogSystem(Logger)

ethutil.ReadConfig("/tmp/ethtest", "/tmp/ethtest", "ETH")
Expand Down Expand Up @@ -50,21 +51,22 @@ func loadChain(fn string, t *testing.T) (types.Blocks, error) {

func insertChain(done chan bool, chainMan *ChainManager, chain types.Blocks, t *testing.T) {
err := chainMan.InsertChain(chain)
done <- true
if err != nil {
fmt.Println(err)
t.FailNow()
}
done <- true
}

func TestChainInsertions(t *testing.T) {
chain1, err := loadChain("chain1", t)
chain1, err := loadChain("valid1", t)
if err != nil {
fmt.Println(err)
t.FailNow()
}
fmt.Println(len(chain1))

chain2, err := loadChain("chain2", t)
chain2, err := loadChain("valid2", t)
if err != nil {
fmt.Println(err)
t.FailNow()
Expand Down Expand Up @@ -94,3 +96,44 @@ func TestChainInsertions(t *testing.T) {
t.Error("chain1 isn't canonical and should be")
}
}

func TestChainMultipleInsertions(t *testing.T) {
const max = 4
chains := make([]types.Blocks, max)
var longest int
for i := 0; i < max; i++ {
var err error
name := "valid" + strconv.Itoa(i+1)
chains[i], err = loadChain(name, t)
if len(chains[i]) >= len(chains[longest]) {
longest = i
}
fmt.Println("loaded", name, "with a length of", len(chains[i]))
if err != nil {
fmt.Println(err)
t.FailNow()
}
}

var eventMux event.TypeMux
chainMan := NewChainManager(&eventMux)
txPool := NewTxPool(chainMan, &eventMux)
blockMan := NewBlockManager(txPool, chainMan, &eventMux)
chainMan.SetProcessor(blockMan)
done := make(chan bool, max)
for i, chain := range chains {
var i int = i
go func() {
insertChain(done, chainMan, chain, t)
fmt.Println(i, "done")
}()
}

for i := 0; i < max; i++ {
<-done
}

if !reflect.DeepEqual(chains[longest][len(chains[longest])-1], chainMan.CurrentBlock()) {
t.Error("Invalid canonical chain")
}
}

0 comments on commit 8df689b

Please sign in to comment.