github.com/alanchchen/go-ethereum@v1.6.6-0.20170601190819-6171d01b1195/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/event" 27 "github.com/ethereum/go-ethereum/params" 28 ) 29 30 // Tests that DAO-fork enabled clients can properly filter out fork-commencing 31 // blocks based on their extradata fields. 32 func TestDAOForkRangeExtradata(t *testing.T) { 33 forkBlock := big.NewInt(32) 34 35 // Generate a common prefix for both pro-forkers and non-forkers 36 db, _ := ethdb.NewMemDatabase() 37 gspec := new(Genesis) 38 genesis := gspec.MustCommit(db) 39 prefix, _ := GenerateChain(params.TestChainConfig, genesis, db, int(forkBlock.Int64()-1), func(i int, gen *BlockGen) {}) 40 41 // Create the concurrent, conflicting two nodes 42 proDb, _ := ethdb.NewMemDatabase() 43 gspec.MustCommit(proDb) 44 proConf := ¶ms.ChainConfig{HomesteadBlock: big.NewInt(0), DAOForkBlock: forkBlock, DAOForkSupport: true} 45 proBc, _ := NewBlockChain(proDb, proConf, ethash.NewFaker(), new(event.TypeMux), vm.Config{}) 46 47 conDb, _ := ethdb.NewMemDatabase() 48 gspec.MustCommit(conDb) 49 conConf := ¶ms.ChainConfig{HomesteadBlock: big.NewInt(0), DAOForkBlock: forkBlock, DAOForkSupport: false} 50 conBc, _ := NewBlockChain(conDb, conConf, ethash.NewFaker(), new(event.TypeMux), vm.Config{}) 51 52 if _, err := proBc.InsertChain(prefix); err != nil { 53 t.Fatalf("pro-fork: failed to import chain prefix: %v", err) 54 } 55 if _, err := conBc.InsertChain(prefix); err != nil { 56 t.Fatalf("con-fork: failed to import chain prefix: %v", err) 57 } 58 // Try to expand both pro-fork and non-fork chains iteratively with other camp's blocks 59 for i := int64(0); i < params.DAOForkExtraRange.Int64(); i++ { 60 // Create a pro-fork block, and try to feed into the no-fork chain 61 db, _ = ethdb.NewMemDatabase() 62 gspec.MustCommit(db) 63 bc, _ := NewBlockChain(db, conConf, ethash.NewFaker(), new(event.TypeMux), vm.Config{}) 64 65 blocks := conBc.GetBlocksFromHash(conBc.CurrentBlock().Hash(), int(conBc.CurrentBlock().NumberU64())) 66 for j := 0; j < len(blocks)/2; j++ { 67 blocks[j], blocks[len(blocks)-1-j] = blocks[len(blocks)-1-j], blocks[j] 68 } 69 if _, err := bc.InsertChain(blocks); err != nil { 70 t.Fatalf("failed to import contra-fork chain for expansion: %v", err) 71 } 72 blocks, _ = GenerateChain(proConf, conBc.CurrentBlock(), db, 1, func(i int, gen *BlockGen) {}) 73 if _, err := conBc.InsertChain(blocks); err == nil { 74 t.Fatalf("contra-fork chain accepted pro-fork block: %v", blocks[0]) 75 } 76 // Create a proper no-fork block for the contra-forker 77 blocks, _ = GenerateChain(conConf, conBc.CurrentBlock(), db, 1, func(i int, gen *BlockGen) {}) 78 if _, err := conBc.InsertChain(blocks); err != nil { 79 t.Fatalf("contra-fork chain didn't accepted no-fork block: %v", err) 80 } 81 // Create a no-fork block, and try to feed into the pro-fork chain 82 db, _ = ethdb.NewMemDatabase() 83 gspec.MustCommit(db) 84 bc, _ = NewBlockChain(db, proConf, ethash.NewFaker(), new(event.TypeMux), vm.Config{}) 85 86 blocks = proBc.GetBlocksFromHash(proBc.CurrentBlock().Hash(), int(proBc.CurrentBlock().NumberU64())) 87 for j := 0; j < len(blocks)/2; j++ { 88 blocks[j], blocks[len(blocks)-1-j] = blocks[len(blocks)-1-j], blocks[j] 89 } 90 if _, err := bc.InsertChain(blocks); err != nil { 91 t.Fatalf("failed to import pro-fork chain for expansion: %v", err) 92 } 93 blocks, _ = GenerateChain(conConf, proBc.CurrentBlock(), db, 1, func(i int, gen *BlockGen) {}) 94 if _, err := proBc.InsertChain(blocks); err == nil { 95 t.Fatalf("pro-fork chain accepted contra-fork block: %v", blocks[0]) 96 } 97 // Create a proper pro-fork block for the pro-forker 98 blocks, _ = GenerateChain(proConf, proBc.CurrentBlock(), db, 1, func(i int, gen *BlockGen) {}) 99 if _, err := proBc.InsertChain(blocks); err != nil { 100 t.Fatalf("pro-fork chain didn't accepted pro-fork block: %v", err) 101 } 102 } 103 // Verify that contra-forkers accept pro-fork extra-datas after forking finishes 104 db, _ = ethdb.NewMemDatabase() 105 gspec.MustCommit(db) 106 bc, _ := NewBlockChain(db, conConf, ethash.NewFaker(), new(event.TypeMux), vm.Config{}) 107 108 blocks := conBc.GetBlocksFromHash(conBc.CurrentBlock().Hash(), int(conBc.CurrentBlock().NumberU64())) 109 for j := 0; j < len(blocks)/2; j++ { 110 blocks[j], blocks[len(blocks)-1-j] = blocks[len(blocks)-1-j], blocks[j] 111 } 112 if _, err := bc.InsertChain(blocks); err != nil { 113 t.Fatalf("failed to import contra-fork chain for expansion: %v", err) 114 } 115 blocks, _ = GenerateChain(proConf, conBc.CurrentBlock(), db, 1, func(i int, gen *BlockGen) {}) 116 if _, err := conBc.InsertChain(blocks); err != nil { 117 t.Fatalf("contra-fork chain didn't accept pro-fork block post-fork: %v", err) 118 } 119 // Verify that pro-forkers accept contra-fork extra-datas after forking finishes 120 db, _ = ethdb.NewMemDatabase() 121 gspec.MustCommit(db) 122 bc, _ = NewBlockChain(db, proConf, ethash.NewFaker(), new(event.TypeMux), vm.Config{}) 123 124 blocks = proBc.GetBlocksFromHash(proBc.CurrentBlock().Hash(), int(proBc.CurrentBlock().NumberU64())) 125 for j := 0; j < len(blocks)/2; j++ { 126 blocks[j], blocks[len(blocks)-1-j] = blocks[len(blocks)-1-j], blocks[j] 127 } 128 if _, err := bc.InsertChain(blocks); err != nil { 129 t.Fatalf("failed to import pro-fork chain for expansion: %v", err) 130 } 131 blocks, _ = GenerateChain(conConf, proBc.CurrentBlock(), db, 1, func(i int, gen *BlockGen) {}) 132 if _, err := proBc.InsertChain(blocks); err != nil { 133 t.Fatalf("pro-fork chain didn't accept contra-fork block post-fork: %v", err) 134 } 135 }