chain_manager_test.go 13.4 KB
Newer Older
1
// Copyright 2014 The go-ethereum Authors
2
// This file is part of the go-ethereum library.
3
//
4
// The go-ethereum library is free software: you can redistribute it and/or modify
5 6 7 8
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
9
// The go-ethereum library is distributed in the hope that it will be useful,
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 13 14
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
15
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
16

obscuren's avatar
obscuren committed
17
package core
obscuren's avatar
obscuren committed
18 19 20

import (
	"fmt"
21
	"math/big"
22
	"math/rand"
23
	"os"
24
	"path/filepath"
obscuren's avatar
obscuren committed
25
	"runtime"
obscuren's avatar
obscuren committed
26
	"strconv"
obscuren's avatar
obscuren committed
27 28
	"testing"

obscuren's avatar
obscuren committed
29
	"github.com/ethereum/ethash"
30
	"github.com/ethereum/go-ethereum/common"
31
	"github.com/ethereum/go-ethereum/core/state"
obscuren's avatar
obscuren committed
32 33 34
	"github.com/ethereum/go-ethereum/core/types"
	"github.com/ethereum/go-ethereum/ethdb"
	"github.com/ethereum/go-ethereum/event"
obscuren's avatar
obscuren committed
35
	"github.com/ethereum/go-ethereum/pow"
36
	"github.com/ethereum/go-ethereum/rlp"
37
	"github.com/hashicorp/golang-lru"
obscuren's avatar
obscuren committed
38 39
)

obscuren's avatar
obscuren committed
40 41
func init() {
	runtime.GOMAXPROCS(runtime.NumCPU())
obscuren's avatar
obscuren committed
42 43
}

obscuren's avatar
obscuren committed
44 45 46 47 48
func thePow() pow.PoW {
	pow, _ := ethash.NewForTesting()
	return pow
}

obscuren's avatar
obscuren committed
49 50
func theChainManager(db common.Database, t *testing.T) *ChainManager {
	var eventMux event.TypeMux
51 52
	WriteTestNetGenesisBlock(db, 0)
	chainMan, err := NewChainManager(db, thePow(), &eventMux)
obscuren's avatar
obscuren committed
53 54 55 56 57
	if err != nil {
		t.Error("failed creating chainmanager:", err)
		t.FailNow()
		return nil
	}
58
	blockMan := NewBlockProcessor(db, nil, chainMan, &eventMux)
obscuren's avatar
obscuren committed
59 60 61 62 63
	chainMan.SetProcessor(blockMan)

	return chainMan
}

64 65 66 67 68 69 70 71 72 73 74 75
// 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)
	}
76 77 78
	// asert the bmans have the same block at i
	bi1 := bman.bc.GetBlockByNumber(uint64(i)).Hash()
	bi2 := bman2.bc.GetBlockByNumber(uint64(i)).Hash()
Felix Lange's avatar
Felix Lange committed
79
	if bi1 != bi2 {
80 81
		t.Fatal("chains do not have the same hash at height", i)
	}
82 83
	bman2.bc.SetProcessor(bman2)

84
	// extend the fork
85
	parent := bman2.bc.CurrentBlock()
86
	chainB := makeChain(parent, N, db, forkSeed)
87
	_, err = bman2.bc.InsertChain(chainB)
88 89 90
	if err != nil {
		t.Fatal("Insert chain error for fork:", err)
	}
91 92

	tdpre := bman.bc.Td()
93
	// Test the fork's blocks on the original chain
94 95 96 97 98 99
	td, err := testChain(chainB, bman)
	if err != nil {
		t.Fatal("expected chainB not to give errors:", err)
	}
	// Compare difficulties
	f(tdpre, td)
100 101

	// Loop over parents making sure reconstruction is done properly
102 103
}

104 105 106
func printChain(bc *ChainManager) {
	for i := bc.CurrentBlock().Number().Uint64(); i > 0; i-- {
		b := bc.GetBlockByNumber(uint64(i))
107
		fmt.Printf("\t%x %v\n", b.Hash(), b.Difficulty())
108 109 110 111
	}
}

// process blocks against a chain
112 113 114
func testChain(chainB types.Blocks, bman *BlockProcessor) (*big.Int, error) {
	td := new(big.Int)
	for _, block := range chainB {
115
		_, _, err := bman.bc.processor.Process(block)
116 117 118 119 120 121
		if err != nil {
			if IsKnownBlockErr(err) {
				continue
			}
			return nil, err
		}
122
		parent := bman.bc.GetBlock(block.ParentHash())
obscuren's avatar
obscuren committed
123
		block.Td = CalcTD(block, parent)
124
		td = block.Td
125 126 127

		bman.bc.mu.Lock()
		{
128
			WriteBlock(bman.bc.chainDb, block)
129 130 131 132 133 134
		}
		bman.bc.mu.Unlock()
	}
	return td, nil
}

135
func loadChain(fn string, t *testing.T) (types.Blocks, error) {
136
	fh, err := os.OpenFile(filepath.Join("..", "_data", fn), os.O_RDONLY, os.ModePerm)
obscuren's avatar
obscuren committed
137
	if err != nil {
138
		return nil, err
obscuren's avatar
obscuren committed
139
	}
140 141 142 143 144
	defer fh.Close()

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

147
	return chain, nil
obscuren's avatar
obscuren committed
148 149 150
}

func insertChain(done chan bool, chainMan *ChainManager, chain types.Blocks, t *testing.T) {
151
	_, err := chainMan.InsertChain(chain)
obscuren's avatar
obscuren committed
152 153 154 155
	if err != nil {
		fmt.Println(err)
		t.FailNow()
	}
obscuren's avatar
obscuren committed
156
	done <- true
obscuren's avatar
obscuren committed
157 158
}

159
func TestExtendCanonical(t *testing.T) {
160
	CanonicalLength := 5
161 162 163 164 165
	db, err := ethdb.NewMemDatabase()
	if err != nil {
		t.Fatal("Failed to create db:", err)
	}
	// make first chain starting from genesis
166
	bman, err := newCanonical(CanonicalLength, db)
167 168 169 170 171 172 173 174
	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)
		}
	}
175 176 177 178 179
	// 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)
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 205 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 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
}

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
248
	testFork(t, bman, 0, 10, f)
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
	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()
275
	chainB := makeChain(parent, 5, db2, forkSeed)
276 277 278 279 280 281 282
	chainB = chainB[1:]
	_, err = testChain(chainB, bman)
	if err == nil {
		t.Error("expected broken chain to return error")
	}
}

obscuren's avatar
obscuren committed
283
func TestChainInsertions(t *testing.T) {
284
	t.Skip("Skipped: outdated test files")
obscuren's avatar
obscuren committed
285

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

obscuren's avatar
obscuren committed
288
	chain1, err := loadChain("valid1", t)
289 290 291 292 293
	if err != nil {
		fmt.Println(err)
		t.FailNow()
	}

obscuren's avatar
obscuren committed
294
	chain2, err := loadChain("valid2", t)
295 296 297 298 299
	if err != nil {
		fmt.Println(err)
		t.FailNow()
	}

obscuren's avatar
obscuren committed
300
	chainMan := theChainManager(db, t)
obscuren's avatar
obscuren committed
301 302 303 304 305 306 307 308 309 310

	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
	}
311

Felix Lange's avatar
Felix Lange committed
312
	if chain2[len(chain2)-1].Hash() != chainMan.CurrentBlock().Hash() {
313 314 315
		t.Error("chain2 is canonical and shouldn't be")
	}

Felix Lange's avatar
Felix Lange committed
316
	if chain1[len(chain1)-1].Hash() != chainMan.CurrentBlock().Hash() {
317 318
		t.Error("chain1 isn't canonical and should be")
	}
obscuren's avatar
obscuren committed
319
}
obscuren's avatar
obscuren committed
320 321

func TestChainMultipleInsertions(t *testing.T) {
322
	t.Skip("Skipped: outdated test files")
obscuren's avatar
obscuren committed
323

324
	db, _ := ethdb.NewMemDatabase()
obscuren's avatar
obscuren committed
325

obscuren's avatar
obscuren committed
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
	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()
		}
	}
obscuren's avatar
obscuren committed
342 343 344

	chainMan := theChainManager(db, t)

obscuren's avatar
obscuren committed
345 346
	done := make(chan bool, max)
	for i, chain := range chains {
obscuren's avatar
obscuren committed
347 348 349
		// XXX the go routine would otherwise reference the same (chain[3]) variable and fail
		i := i
		chain := chain
obscuren's avatar
obscuren committed
350 351 352 353 354 355 356 357 358 359
		go func() {
			insertChain(done, chainMan, chain, t)
			fmt.Println(i, "done")
		}()
	}

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

Felix Lange's avatar
Felix Lange committed
360
	if chains[longest][len(chains[longest])-1].Hash() != chainMan.CurrentBlock().Hash() {
obscuren's avatar
obscuren committed
361 362 363
		t.Error("Invalid canonical chain")
	}
}
obscuren's avatar
obscuren committed
364

365 366
type bproc struct{}

367
func (bproc) Process(*types.Block) (state.Logs, types.Receipts, error) { return nil, nil, nil }
368 369 370 371

func makeChainWithDiff(genesis *types.Block, d []int, seed byte) []*types.Block {
	var chain []*types.Block
	for i, difficulty := range d {
372 373 374 375 376
		header := &types.Header{
			Coinbase:   common.Address{seed},
			Number:     big.NewInt(int64(i + 1)),
			Difficulty: big.NewInt(int64(difficulty)),
		}
377
		if i == 0 {
378
			header.ParentHash = genesis.Hash()
379
		} else {
380
			header.ParentHash = chain[i-1].Hash()
381
		}
382
		block := types.NewBlockWithHeader(header)
383 384 385 386 387
		chain = append(chain, block)
	}
	return chain
}

388
func chm(genesis *types.Block, db common.Database) *ChainManager {
389
	var eventMux event.TypeMux
390
	bc := &ChainManager{chainDb: db, genesisBlock: genesis, eventMux: &eventMux, pow: FakePow{}}
391
	bc.cache, _ = lru.New(100)
392
	bc.futureBlocks, _ = lru.New(100)
393 394 395
	bc.processor = bproc{}
	bc.ResetWithGenesisBlock(genesis)

396 397 398 399 400
	return bc
}

func TestReorgLongest(t *testing.T) {
	db, _ := ethdb.NewMemDatabase()
401

402
	genesis, err := WriteTestNetGenesisBlock(db, 0)
403 404 405 406
	if err != nil {
		t.Error(err)
		t.FailNow()
	}
407 408
	bc := chm(genesis, db)

409 410 411 412 413 414 415 416 417 418 419 420 421
	chain1 := makeChainWithDiff(genesis, []int{1, 2, 4}, 10)
	chain2 := makeChainWithDiff(genesis, []int{1, 2, 3, 4}, 11)

	bc.InsertChain(chain1)
	bc.InsertChain(chain2)

	prev := bc.CurrentBlock()
	for block := bc.GetBlockByNumber(bc.CurrentBlock().NumberU64() - 1); block.NumberU64() != 0; prev, block = block, bc.GetBlockByNumber(block.NumberU64()-1) {
		if prev.ParentHash() != block.Hash() {
			t.Errorf("parent hash mismatch %x - %x", prev.ParentHash(), block.Hash())
		}
	}
}
422 423 424

func TestReorgShortest(t *testing.T) {
	db, _ := ethdb.NewMemDatabase()
425
	genesis, err := WriteTestNetGenesisBlock(db, 0)
426 427 428 429
	if err != nil {
		t.Error(err)
		t.FailNow()
	}
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
	bc := chm(genesis, db)

	chain1 := makeChainWithDiff(genesis, []int{1, 2, 3, 4}, 10)
	chain2 := makeChainWithDiff(genesis, []int{1, 10}, 11)

	bc.InsertChain(chain1)
	bc.InsertChain(chain2)

	prev := bc.CurrentBlock()
	for block := bc.GetBlockByNumber(bc.CurrentBlock().NumberU64() - 1); block.NumberU64() != 0; prev, block = block, bc.GetBlockByNumber(block.NumberU64()-1) {
		if prev.ParentHash() != block.Hash() {
			t.Errorf("parent hash mismatch %x - %x", prev.ParentHash(), block.Hash())
		}
	}
}
445 446 447 448

func TestInsertNonceError(t *testing.T) {
	for i := 1; i < 25 && !t.Failed(); i++ {
		db, _ := ethdb.NewMemDatabase()
449
		genesis, err := WriteTestNetGenesisBlock(db, 0)
450 451 452 453
		if err != nil {
			t.Error(err)
			t.FailNow()
		}
454
		bc := chm(genesis, db)
455
		bc.processor = NewBlockProcessor(db, bc.pow, bc, bc.eventMux)
456
		blocks := makeChain(bc.currentBlock, i, db, 0)
457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486

		fail := rand.Int() % len(blocks)
		failblock := blocks[fail]
		bc.pow = failpow{failblock.NumberU64()}
		n, err := bc.InsertChain(blocks)

		// Check that the returned error indicates the nonce failure.
		if n != fail {
			t.Errorf("(i=%d) wrong failed block index: got %d, want %d", i, n, fail)
		}
		if !IsBlockNonceErr(err) {
			t.Fatalf("(i=%d) got %q, want a nonce error", i, err)
		}
		nerr := err.(*BlockNonceErr)
		if nerr.Number.Cmp(failblock.Number()) != 0 {
			t.Errorf("(i=%d) wrong block number in error, got %v, want %v", i, nerr.Number, failblock.Number())
		}
		if nerr.Hash != failblock.Hash() {
			t.Errorf("(i=%d) wrong block hash in error, got %v, want %v", i, nerr.Hash, failblock.Hash())
		}

		// Check that all no blocks after the failing block have been inserted.
		for _, block := range blocks[fail:] {
			if bc.HasBlock(block.Hash()) {
				t.Errorf("(i=%d) invalid block %d present in chain", i, block.NumberU64())
			}
		}
	}
}

487
/*
obscuren's avatar
obscuren committed
488 489 490 491
func TestGenesisMismatch(t *testing.T) {
	db, _ := ethdb.NewMemDatabase()
	var mux event.TypeMux
	genesis := GenesisBlock(0, db)
492
	_, err := NewChainManager(genesis, db, db, db, thePow(), &mux)
obscuren's avatar
obscuren committed
493 494 495 496
	if err != nil {
		t.Error(err)
	}
	genesis = GenesisBlock(1, db)
497
	_, err = NewChainManager(genesis, db, db, db, thePow(), &mux)
obscuren's avatar
obscuren committed
498 499 500 501
	if err == nil {
		t.Error("expected genesis mismatch error")
	}
}
502
*/
obscuren's avatar
obscuren committed
503

504 505 506 507 508 509 510 511 512 513 514 515 516 517
// failpow returns false from Verify for a certain block number.
type failpow struct{ num uint64 }

func (pow failpow) Search(pow.Block, <-chan struct{}) (nonce uint64, mixHash []byte) {
	return 0, nil
}
func (pow failpow) Verify(b pow.Block) bool {
	return b.NumberU64() != pow.num
}
func (pow failpow) GetHashrate() int64 {
	return 0
}
func (pow failpow) Turbo(bool) {
}