github.com/humaniq/go-ethereum@v1.6.8-0.20171225131628-061223a13848/core/dao_test.go (about)

     1  // Copyright 2016 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  // it under the terms of the GNU Lesser General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     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  // GNU Lesser General Public License for more details.
    13  //
    14  // 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  
    17  package core
    18  
    19  import (
    20  	"math/big"
    21  	"testing"
    22  
    23  	"github.com/ethereum/go-ethereum/consensus/ethash"
    24  	"github.com/ethereum/go-ethereum/core/vm"
    25  	"github.com/ethereum/go-ethereum/ethdb"
    26  	"github.com/ethereum/go-ethereum/params"
    27  )
    28  
    29  // Tests that DAO-fork enabled clients can properly filter out fork-commencing
    30  // blocks based on their extradata fields.
    31  func TestDAOForkRangeExtradata(t *testing.T) {
    32  	forkBlock := big.NewInt(32)
    33  
    34  	// Generate a common prefix for both pro-forkers and non-forkers
    35  	db, _ := ethdb.NewMemDatabase()
    36  	gspec := new(Genesis)
    37  	genesis := gspec.MustCommit(db)
    38  	prefix, _ := GenerateChain(params.TestChainConfig, genesis, ethash.NewFaker(), db, int(forkBlock.Int64()-1), func(i int, gen *BlockGen) {})
    39  
    40  	// Create the concurrent, conflicting two nodes
    41  	proDb, _ := ethdb.NewMemDatabase()
    42  	gspec.MustCommit(proDb)
    43  
    44  	proConf := *params.TestChainConfig
    45  	proConf.DAOForkBlock = forkBlock
    46  	proConf.DAOForkSupport = true
    47  
    48  	proBc, _ := NewBlockChain(proDb, &proConf, ethash.NewFaker(), vm.Config{})
    49  	defer proBc.Stop()
    50  
    51  	conDb, _ := ethdb.NewMemDatabase()
    52  	gspec.MustCommit(conDb)
    53  
    54  	conConf := *params.TestChainConfig
    55  	conConf.DAOForkBlock = forkBlock
    56  	conConf.DAOForkSupport = false
    57  
    58  	conBc, _ := NewBlockChain(conDb, &conConf, ethash.NewFaker(), vm.Config{})
    59  	defer conBc.Stop()
    60  
    61  	if _, err := proBc.InsertChain(prefix); err != nil {
    62  		t.Fatalf("pro-fork: failed to import chain prefix: %v", err)
    63  	}
    64  	if _, err := conBc.InsertChain(prefix); err != nil {
    65  		t.Fatalf("con-fork: failed to import chain prefix: %v", err)
    66  	}
    67  	// Try to expand both pro-fork and non-fork chains iteratively with other camp's blocks
    68  	for i := int64(0); i < params.DAOForkExtraRange.Int64(); i++ {
    69  		// Create a pro-fork block, and try to feed into the no-fork chain
    70  		db, _ = ethdb.NewMemDatabase()
    71  		gspec.MustCommit(db)
    72  		bc, _ := NewBlockChain(db, &conConf, ethash.NewFaker(), vm.Config{})
    73  		defer bc.Stop()
    74  
    75  		blocks := conBc.GetBlocksFromHash(conBc.CurrentBlock().Hash(), int(conBc.CurrentBlock().NumberU64()))
    76  		for j := 0; j < len(blocks)/2; j++ {
    77  			blocks[j], blocks[len(blocks)-1-j] = blocks[len(blocks)-1-j], blocks[j]
    78  		}
    79  		if _, err := bc.InsertChain(blocks); err != nil {
    80  			t.Fatalf("failed to import contra-fork chain for expansion: %v", err)
    81  		}
    82  		blocks, _ = GenerateChain(&proConf, conBc.CurrentBlock(), ethash.NewFaker(), db, 1, func(i int, gen *BlockGen) {})
    83  		if _, err := conBc.InsertChain(blocks); err == nil {
    84  			t.Fatalf("contra-fork chain accepted pro-fork block: %v", blocks[0])
    85  		}
    86  		// Create a proper no-fork block for the contra-forker
    87  		blocks, _ = GenerateChain(&conConf, conBc.CurrentBlock(), ethash.NewFaker(), db, 1, func(i int, gen *BlockGen) {})
    88  		if _, err := conBc.InsertChain(blocks); err != nil {
    89  			t.Fatalf("contra-fork chain didn't accepted no-fork block: %v", err)
    90  		}
    91  		// Create a no-fork block, and try to feed into the pro-fork chain
    92  		db, _ = ethdb.NewMemDatabase()
    93  		gspec.MustCommit(db)
    94  		bc, _ = NewBlockChain(db, &proConf, ethash.NewFaker(), vm.Config{})
    95  		defer bc.Stop()
    96  
    97  		blocks = proBc.GetBlocksFromHash(proBc.CurrentBlock().Hash(), int(proBc.CurrentBlock().NumberU64()))
    98  		for j := 0; j < len(blocks)/2; j++ {
    99  			blocks[j], blocks[len(blocks)-1-j] = blocks[len(blocks)-1-j], blocks[j]
   100  		}
   101  		if _, err := bc.InsertChain(blocks); err != nil {
   102  			t.Fatalf("failed to import pro-fork chain for expansion: %v", err)
   103  		}
   104  		blocks, _ = GenerateChain(&conConf, proBc.CurrentBlock(), ethash.NewFaker(), db, 1, func(i int, gen *BlockGen) {})
   105  		if _, err := proBc.InsertChain(blocks); err == nil {
   106  			t.Fatalf("pro-fork chain accepted contra-fork block: %v", blocks[0])
   107  		}
   108  		// Create a proper pro-fork block for the pro-forker
   109  		blocks, _ = GenerateChain(&proConf, proBc.CurrentBlock(), ethash.NewFaker(), db, 1, func(i int, gen *BlockGen) {})
   110  		if _, err := proBc.InsertChain(blocks); err != nil {
   111  			t.Fatalf("pro-fork chain didn't accepted pro-fork block: %v", err)
   112  		}
   113  	}
   114  	// Verify that contra-forkers accept pro-fork extra-datas after forking finishes
   115  	db, _ = ethdb.NewMemDatabase()
   116  	gspec.MustCommit(db)
   117  	bc, _ := NewBlockChain(db, &conConf, ethash.NewFaker(), vm.Config{})
   118  	defer bc.Stop()
   119  
   120  	blocks := conBc.GetBlocksFromHash(conBc.CurrentBlock().Hash(), int(conBc.CurrentBlock().NumberU64()))
   121  	for j := 0; j < len(blocks)/2; j++ {
   122  		blocks[j], blocks[len(blocks)-1-j] = blocks[len(blocks)-1-j], blocks[j]
   123  	}
   124  	if _, err := bc.InsertChain(blocks); err != nil {
   125  		t.Fatalf("failed to import contra-fork chain for expansion: %v", err)
   126  	}
   127  	blocks, _ = GenerateChain(&proConf, conBc.CurrentBlock(), ethash.NewFaker(), db, 1, func(i int, gen *BlockGen) {})
   128  	if _, err := conBc.InsertChain(blocks); err != nil {
   129  		t.Fatalf("contra-fork chain didn't accept pro-fork block post-fork: %v", err)
   130  	}
   131  	// Verify that pro-forkers accept contra-fork extra-datas after forking finishes
   132  	db, _ = ethdb.NewMemDatabase()
   133  	gspec.MustCommit(db)
   134  	bc, _ = NewBlockChain(db, &proConf, ethash.NewFaker(), vm.Config{})
   135  	defer bc.Stop()
   136  
   137  	blocks = proBc.GetBlocksFromHash(proBc.CurrentBlock().Hash(), int(proBc.CurrentBlock().NumberU64()))
   138  	for j := 0; j < len(blocks)/2; j++ {
   139  		blocks[j], blocks[len(blocks)-1-j] = blocks[len(blocks)-1-j], blocks[j]
   140  	}
   141  	if _, err := bc.InsertChain(blocks); err != nil {
   142  		t.Fatalf("failed to import pro-fork chain for expansion: %v", err)
   143  	}
   144  	blocks, _ = GenerateChain(&conConf, proBc.CurrentBlock(), ethash.NewFaker(), db, 1, func(i int, gen *BlockGen) {})
   145  	if _, err := proBc.InsertChain(blocks); err != nil {
   146  		t.Fatalf("pro-fork chain didn't accept contra-fork block post-fork: %v", err)
   147  	}
   148  }