chain_manager_test.go 8.38 KB
Newer Older
obscuren's avatar
obscuren committed
1
package core
obscuren's avatar
obscuren committed
2 3

import (
4
	"bytes"
obscuren's avatar
obscuren committed
5
	"fmt"
6
	"math/big"
7
	"os"
obscuren's avatar
obscuren committed
8
	"path"
obscuren's avatar
obscuren committed
9
	"runtime"
obscuren's avatar
obscuren committed
10
	"strconv"
obscuren's avatar
obscuren committed
11 12
	"testing"

obscuren's avatar
obscuren committed
13 14 15
	"github.com/ethereum/go-ethereum/core/types"
	"github.com/ethereum/go-ethereum/ethdb"
	"github.com/ethereum/go-ethereum/event"
16
	"github.com/ethereum/go-ethereum/rlp"
obscuren's avatar
obscuren committed
17 18
)

obscuren's avatar
obscuren committed
19 20
func init() {
	runtime.GOMAXPROCS(runtime.NumCPU())
obscuren's avatar
obscuren committed
21 22
}

23 24 25 26 27 28 29 30 31 32 33 34
// Test fork of length N starting from block i
func testFork(t *testing.T, bman *BlockProcessor, i, N int, f func(td1, td2 *big.Int)) {
	// switch databases to process the new chain
	db, err := ethdb.NewMemDatabase()
	if err != nil {
		t.Fatal("Failed to create db:", err)
	}
	// copy old chain up to i into new db with deterministic canonical
	bman2, err := newCanonical(i, db)
	if err != nil {
		t.Fatal("could not make new canonical in testFork", err)
	}
35 36 37 38 39 40 41
	// asert the bmans have the same block at i
	bi1 := bman.bc.GetBlockByNumber(uint64(i)).Hash()
	bi2 := bman2.bc.GetBlockByNumber(uint64(i)).Hash()
	if bytes.Compare(bi1, bi2) != 0 {
		t.Fatal("chains do not have the same hash at height", i)
	}

42 43
	bman2.bc.SetProcessor(bman2)

44
	// extend the fork
45
	parent := bman2.bc.CurrentBlock()
46 47 48 49 50
	chainB := makeChain(bman2, parent, N, db, ForkSeed)
	err = bman2.bc.InsertChain(chainB)
	if err != nil {
		t.Fatal("Insert chain error for fork:", err)
	}
51 52

	tdpre := bman.bc.Td()
53
	// Test the fork's blocks on the original chain
54 55 56 57 58 59 60 61
	td, err := testChain(chainB, bman)
	if err != nil {
		t.Fatal("expected chainB not to give errors:", err)
	}
	// Compare difficulties
	f(tdpre, td)
}

62 63 64 65 66 67 68 69
func printChain(bc *ChainManager) {
	for i := bc.CurrentBlock().Number().Uint64(); i > 0; i-- {
		b := bc.GetBlockByNumber(uint64(i))
		fmt.Printf("\t%x\n", b.Hash())
	}
}

// process blocks against a chain
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
func testChain(chainB types.Blocks, bman *BlockProcessor) (*big.Int, error) {
	td := new(big.Int)
	for _, block := range chainB {
		td2, err := bman.bc.processor.Process(block)
		if err != nil {
			if IsKnownBlockErr(err) {
				continue
			}
			return nil, err
		}
		block.Td = td2
		td = td2

		bman.bc.mu.Lock()
		{
			bman.bc.write(block)
		}
		bman.bc.mu.Unlock()
	}
	return td, nil
}

92
func loadChain(fn string, t *testing.T) (types.Blocks, error) {
obscuren's avatar
obscuren committed
93
	fh, err := os.OpenFile(path.Join(os.Getenv("GOPATH"), "src", "github.com", "ethereum", "go-ethereum", "_data", fn), os.O_RDONLY, os.ModePerm)
obscuren's avatar
obscuren committed
94
	if err != nil {
95
		return nil, err
obscuren's avatar
obscuren committed
96
	}
97 98 99 100 101
	defer fh.Close()

	var chain types.Blocks
	if err := rlp.Decode(fh, &chain); err != nil {
		return nil, err
obscuren's avatar
obscuren committed
102 103
	}

104
	return chain, nil
obscuren's avatar
obscuren committed
105 106 107 108 109 110 111 112
}

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

116
func TestExtendCanonical(t *testing.T) {
117
	CanonicalLength := 5
118 119 120 121 122
	db, err := ethdb.NewMemDatabase()
	if err != nil {
		t.Fatal("Failed to create db:", err)
	}
	// make first chain starting from genesis
123
	bman, err := newCanonical(CanonicalLength, db)
124 125 126 127 128 129 130 131
	if err != nil {
		t.Fatal("Could not make new canonical chain:", err)
	}
	f := func(td1, td2 *big.Int) {
		if td2.Cmp(td1) <= 0 {
			t.Error("expected chainB to have higher difficulty. Got", td2, "expected more than", td1)
		}
	}
132 133 134 135 136
	// Start fork from current height (CanonicalLength)
	testFork(t, bman, CanonicalLength, 1, f)
	testFork(t, bman, CanonicalLength, 2, f)
	testFork(t, bman, CanonicalLength, 5, f)
	testFork(t, bman, CanonicalLength, 10, f)
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
}

func TestShorterFork(t *testing.T) {
	db, err := ethdb.NewMemDatabase()
	if err != nil {
		t.Fatal("Failed to create db:", err)
	}
	// make first chain starting from genesis
	bman, err := newCanonical(10, db)
	if err != nil {
		t.Fatal("Could not make new canonical chain:", err)
	}
	f := func(td1, td2 *big.Int) {
		if td2.Cmp(td1) >= 0 {
			t.Error("expected chainB to have lower difficulty. Got", td2, "expected less than", td1)
		}
	}
	// Sum of numbers must be less than 10
	// for this to be a shorter fork
	testFork(t, bman, 0, 3, f)
	testFork(t, bman, 0, 7, f)
	testFork(t, bman, 1, 1, f)
	testFork(t, bman, 1, 7, f)
	testFork(t, bman, 5, 3, f)
	testFork(t, bman, 5, 4, f)
}

func TestLongerFork(t *testing.T) {
	db, err := ethdb.NewMemDatabase()
	if err != nil {
		t.Fatal("Failed to create db:", err)
	}
	// make first chain starting from genesis
	bman, err := newCanonical(10, db)
	if err != nil {
		t.Fatal("Could not make new canonical chain:", err)
	}
	f := func(td1, td2 *big.Int) {
		if td2.Cmp(td1) <= 0 {
			t.Error("expected chainB to have higher difficulty. Got", td2, "expected more than", td1)
		}
	}
	// Sum of numbers must be greater than 10
	// for this to be a longer fork
	testFork(t, bman, 0, 11, f)
	testFork(t, bman, 0, 15, f)
	testFork(t, bman, 1, 10, f)
	testFork(t, bman, 1, 12, f)
	testFork(t, bman, 5, 6, f)
	testFork(t, bman, 5, 8, f)
}

func TestEqualFork(t *testing.T) {
	db, err := ethdb.NewMemDatabase()
	if err != nil {
		t.Fatal("Failed to create db:", err)
	}
	bman, err := newCanonical(10, db)
	if err != nil {
		t.Fatal("Could not make new canonical chain:", err)
	}
	f := func(td1, td2 *big.Int) {
		if td2.Cmp(td1) != 0 {
			t.Error("expected chainB to have equal difficulty. Got", td2, "expected ", td1)
		}
	}
	// Sum of numbers must be equal to 10
	// for this to be an equal fork
205
	testFork(t, bman, 0, 10, f)
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
	testFork(t, bman, 1, 9, f)
	testFork(t, bman, 2, 8, f)
	testFork(t, bman, 5, 5, f)
	testFork(t, bman, 6, 4, f)
	testFork(t, bman, 9, 1, f)
}

func TestBrokenChain(t *testing.T) {
	db, err := ethdb.NewMemDatabase()
	if err != nil {
		t.Fatal("Failed to create db:", err)
	}
	bman, err := newCanonical(10, db)
	if err != nil {
		t.Fatal("Could not make new canonical chain:", err)
	}
	db2, err := ethdb.NewMemDatabase()
	if err != nil {
		t.Fatal("Failed to create db:", err)
	}
	bman2, err := newCanonical(10, db2)
	if err != nil {
		t.Fatal("Could not make new canonical chain:", err)
	}
	bman2.bc.SetProcessor(bman2)
	parent := bman2.bc.CurrentBlock()
232
	chainB := makeChain(bman2, parent, 5, db2, ForkSeed)
233 234 235 236 237 238 239
	chainB = chainB[1:]
	_, err = testChain(chainB, bman)
	if err == nil {
		t.Error("expected broken chain to return error")
	}
}

obscuren's avatar
obscuren committed
240
func TestChainInsertions(t *testing.T) {
obscuren's avatar
obscuren committed
241 242
	t.Skip() // travil fails.

243
	db, _ := ethdb.NewMemDatabase()
obscuren's avatar
obscuren committed
244

obscuren's avatar
obscuren committed
245
	chain1, err := loadChain("valid1", t)
246 247 248 249 250
	if err != nil {
		fmt.Println(err)
		t.FailNow()
	}

obscuren's avatar
obscuren committed
251
	chain2, err := loadChain("valid2", t)
252 253 254 255 256
	if err != nil {
		fmt.Println(err)
		t.FailNow()
	}

obscuren's avatar
obscuren committed
257
	var eventMux event.TypeMux
obscuren's avatar
obscuren committed
258
	chainMan := NewChainManager(db, db, &eventMux)
259
	txPool := NewTxPool(&eventMux)
obscuren's avatar
obscuren committed
260
	blockMan := NewBlockProcessor(db, nil, txPool, chainMan, &eventMux)
obscuren's avatar
obscuren committed
261 262 263 264 265 266 267 268 269 270 271
	chainMan.SetProcessor(blockMan)

	const max = 2
	done := make(chan bool, max)

	go insertChain(done, chainMan, chain1, t)
	go insertChain(done, chainMan, chain2, t)

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

273
	if bytes.Equal(chain2[len(chain2)-1].Hash(), chainMan.CurrentBlock().Hash()) {
274 275 276
		t.Error("chain2 is canonical and shouldn't be")
	}

277
	if !bytes.Equal(chain1[len(chain1)-1].Hash(), chainMan.CurrentBlock().Hash()) {
278 279
		t.Error("chain1 isn't canonical and should be")
	}
obscuren's avatar
obscuren committed
280
}
obscuren's avatar
obscuren committed
281 282

func TestChainMultipleInsertions(t *testing.T) {
obscuren's avatar
obscuren committed
283 284
	t.Skip() // travil fails.

285
	db, _ := ethdb.NewMemDatabase()
obscuren's avatar
obscuren committed
286

obscuren's avatar
obscuren committed
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
	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
obscuren's avatar
obscuren committed
304
	chainMan := NewChainManager(db, db, &eventMux)
305
	txPool := NewTxPool(&eventMux)
obscuren's avatar
obscuren committed
306
	blockMan := NewBlockProcessor(db, nil, txPool, chainMan, &eventMux)
obscuren's avatar
obscuren committed
307 308 309
	chainMan.SetProcessor(blockMan)
	done := make(chan bool, max)
	for i, chain := range chains {
obscuren's avatar
obscuren committed
310 311 312
		// XXX the go routine would otherwise reference the same (chain[3]) variable and fail
		i := i
		chain := chain
obscuren's avatar
obscuren committed
313 314 315 316 317 318 319 320 321 322
		go func() {
			insertChain(done, chainMan, chain, t)
			fmt.Println(i, "done")
		}()
	}

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

323
	if !bytes.Equal(chains[longest][len(chains[longest])-1].Hash(), chainMan.CurrentBlock().Hash()) {
obscuren's avatar
obscuren committed
324 325 326
		t.Error("Invalid canonical chain")
	}
}
obscuren's avatar
obscuren committed
327 328

func TestGetAncestors(t *testing.T) {
obscuren's avatar
obscuren committed
329 330
	t.Skip() // travil fails.

obscuren's avatar
obscuren committed
331 332
	db, _ := ethdb.NewMemDatabase()
	var eventMux event.TypeMux
obscuren's avatar
obscuren committed
333
	chainMan := NewChainManager(db, db, &eventMux)
obscuren's avatar
obscuren committed
334 335 336 337 338 339 340 341 342 343 344 345 346
	chain, err := loadChain("valid1", t)
	if err != nil {
		fmt.Println(err)
		t.FailNow()
	}

	for _, block := range chain {
		chainMan.write(block)
	}

	ancestors := chainMan.GetAncestors(chain[len(chain)-1], 4)
	fmt.Println(ancestors)
}