2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00:00
|
|
|
// 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.
|
|
|
|
//
|
2015-07-22 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2015-02-18 12:14:21 +00:00
|
|
|
package core
|
|
|
|
|
|
|
|
import (
|
2015-06-08 10:12:13 +00:00
|
|
|
"fmt"
|
2015-02-18 12:14:21 +00:00
|
|
|
"math/big"
|
|
|
|
"testing"
|
|
|
|
|
2015-03-18 12:38:47 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2015-05-22 20:44:51 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/state"
|
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2015-08-30 08:19:10 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/vm"
|
2015-02-18 12:14:21 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
|
|
|
"github.com/ethereum/go-ethereum/event"
|
2016-07-08 15:48:17 +00:00
|
|
|
"github.com/ethereum/go-ethereum/params"
|
2015-03-06 19:07:35 +00:00
|
|
|
"github.com/ethereum/go-ethereum/pow/ezp"
|
2015-02-18 12:14:21 +00:00
|
|
|
)
|
|
|
|
|
2016-03-01 22:32:43 +00:00
|
|
|
func testChainConfig() *ChainConfig {
|
2016-03-31 15:43:41 +00:00
|
|
|
return &ChainConfig{HomesteadBlock: big.NewInt(0)}
|
2016-03-01 22:32:43 +00:00
|
|
|
}
|
|
|
|
|
2015-10-19 14:08:17 +00:00
|
|
|
func proc() (Validator, *BlockChain) {
|
2015-02-18 12:14:21 +00:00
|
|
|
db, _ := ethdb.NewMemDatabase()
|
|
|
|
var mux event.TypeMux
|
|
|
|
|
2015-11-17 16:33:25 +00:00
|
|
|
WriteTestNetGenesisBlock(db)
|
2016-03-01 22:32:43 +00:00
|
|
|
blockchain, err := NewBlockChain(db, testChainConfig(), thePow(), &mux)
|
2015-06-08 10:12:13 +00:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
}
|
2015-10-19 14:08:17 +00:00
|
|
|
return blockchain.validator, blockchain
|
2015-02-18 12:14:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestNumber(t *testing.T) {
|
2015-06-18 09:37:30 +00:00
|
|
|
pow := ezp.New()
|
2015-06-18 23:57:16 +00:00
|
|
|
_, chain := proc()
|
2015-06-18 09:37:30 +00:00
|
|
|
|
2015-10-06 14:35:55 +00:00
|
|
|
statedb, _ := state.New(chain.Genesis().Root(), chain.chainDb)
|
2015-06-18 23:57:16 +00:00
|
|
|
header := makeHeader(chain.Genesis(), statedb)
|
2015-06-16 10:41:50 +00:00
|
|
|
header.Number = big.NewInt(3)
|
2016-03-01 22:32:43 +00:00
|
|
|
cfg := testChainConfig()
|
|
|
|
err := ValidateHeader(cfg, pow, header, chain.Genesis().Header(), false, false)
|
2015-02-18 12:14:21 +00:00
|
|
|
if err != BlockNumberErr {
|
2015-06-16 10:41:50 +00:00
|
|
|
t.Errorf("expected block number error, got %q", err)
|
2015-02-18 12:14:21 +00:00
|
|
|
}
|
|
|
|
|
2015-06-18 23:57:16 +00:00
|
|
|
header = makeHeader(chain.Genesis(), statedb)
|
2016-03-01 22:32:43 +00:00
|
|
|
err = ValidateHeader(cfg, pow, header, chain.Genesis().Header(), false, false)
|
2015-02-18 12:14:21 +00:00
|
|
|
if err == BlockNumberErr {
|
|
|
|
t.Errorf("didn't expect block number error")
|
|
|
|
}
|
|
|
|
}
|
2015-05-22 20:44:51 +00:00
|
|
|
|
|
|
|
func TestPutReceipt(t *testing.T) {
|
|
|
|
db, _ := ethdb.NewMemDatabase()
|
|
|
|
|
|
|
|
var addr common.Address
|
|
|
|
addr[0] = 1
|
|
|
|
var hash common.Hash
|
|
|
|
hash[0] = 2
|
|
|
|
|
|
|
|
receipt := new(types.Receipt)
|
2015-09-29 16:36:16 +00:00
|
|
|
receipt.Logs = vm.Logs{&vm.Log{
|
2015-09-30 16:23:31 +00:00
|
|
|
Address: addr,
|
|
|
|
Topics: []common.Hash{hash},
|
|
|
|
Data: []byte("hi"),
|
|
|
|
BlockNumber: 42,
|
|
|
|
TxHash: hash,
|
|
|
|
TxIndex: 0,
|
|
|
|
BlockHash: hash,
|
|
|
|
Index: 0,
|
2015-09-29 16:36:16 +00:00
|
|
|
}}
|
2015-05-22 20:44:51 +00:00
|
|
|
|
2015-10-22 12:43:21 +00:00
|
|
|
WriteReceipts(db, types.Receipts{receipt})
|
2015-07-04 00:25:04 +00:00
|
|
|
receipt = GetReceipt(db, common.Hash{})
|
|
|
|
if receipt == nil {
|
|
|
|
t.Error("expected to get 1 receipt, got none.")
|
2015-05-22 20:44:51 +00:00
|
|
|
}
|
|
|
|
}
|
2016-07-08 15:48:17 +00:00
|
|
|
|
|
|
|
// Tests that DAO-fork enabled clients can properly filter out fork-commencing
|
|
|
|
// blocks based on their extradata fields.
|
|
|
|
func TestDAOForkRangeExtradata(t *testing.T) {
|
|
|
|
forkBlock := big.NewInt(32)
|
|
|
|
|
|
|
|
// Generate a common prefix for both pro-forkers and non-forkers
|
|
|
|
db, _ := ethdb.NewMemDatabase()
|
|
|
|
genesis := WriteGenesisBlockForTesting(db)
|
|
|
|
prefix, _ := GenerateChain(genesis, db, int(forkBlock.Int64()-1), func(i int, gen *BlockGen) {})
|
|
|
|
|
|
|
|
// Create the concurrent, conflicting two nodes
|
|
|
|
proDb, _ := ethdb.NewMemDatabase()
|
|
|
|
WriteGenesisBlockForTesting(proDb)
|
|
|
|
proBc, _ := NewBlockChain(proDb, &ChainConfig{HomesteadBlock: big.NewInt(0), DAOForkBlock: forkBlock, DAOForkSupport: true}, new(FakePow), new(event.TypeMux))
|
|
|
|
|
|
|
|
conDb, _ := ethdb.NewMemDatabase()
|
|
|
|
WriteGenesisBlockForTesting(conDb)
|
|
|
|
conBc, _ := NewBlockChain(conDb, &ChainConfig{HomesteadBlock: big.NewInt(0), DAOForkBlock: forkBlock, DAOForkSupport: false}, new(FakePow), new(event.TypeMux))
|
|
|
|
|
|
|
|
if _, err := proBc.InsertChain(prefix); err != nil {
|
|
|
|
t.Fatalf("pro-fork: failed to import chain prefix: %v", err)
|
|
|
|
}
|
|
|
|
if _, err := conBc.InsertChain(prefix); err != nil {
|
|
|
|
t.Fatalf("con-fork: failed to import chain prefix: %v", err)
|
|
|
|
}
|
|
|
|
// Try to expand both pro-fork and non-fork chains iteratively with other camp's blocks
|
|
|
|
for i := int64(0); i < params.DAOForkExtraRange.Int64(); i++ {
|
|
|
|
// Create a pro-fork block, and try to feed into the no-fork chain
|
|
|
|
db, _ = ethdb.NewMemDatabase()
|
|
|
|
WriteGenesisBlockForTesting(db)
|
|
|
|
bc, _ := NewBlockChain(db, &ChainConfig{HomesteadBlock: big.NewInt(0)}, new(FakePow), new(event.TypeMux))
|
|
|
|
|
|
|
|
blocks := conBc.GetBlocksFromHash(conBc.CurrentBlock().Hash(), int(conBc.CurrentBlock().NumberU64()+1))
|
|
|
|
for j := 0; j < len(blocks)/2; j++ {
|
|
|
|
blocks[j], blocks[len(blocks)-1-j] = blocks[len(blocks)-1-j], blocks[j]
|
|
|
|
}
|
|
|
|
if _, err := bc.InsertChain(blocks); err != nil {
|
|
|
|
t.Fatalf("failed to import contra-fork chain for expansion: %v", err)
|
|
|
|
}
|
|
|
|
blocks, _ = GenerateChain(conBc.CurrentBlock(), db, 1, func(i int, gen *BlockGen) { gen.SetExtra(params.DAOForkBlockExtra) })
|
|
|
|
if _, err := conBc.InsertChain(blocks); err == nil {
|
|
|
|
t.Fatalf("contra-fork chain accepted pro-fork block: %v", blocks[0])
|
|
|
|
}
|
|
|
|
// Create a proper no-fork block for the contra-forker
|
|
|
|
blocks, _ = GenerateChain(conBc.CurrentBlock(), db, 1, func(i int, gen *BlockGen) {})
|
|
|
|
if _, err := conBc.InsertChain(blocks); err != nil {
|
|
|
|
t.Fatalf("contra-fork chain didn't accepted no-fork block: %v", err)
|
|
|
|
}
|
|
|
|
// Create a no-fork block, and try to feed into the pro-fork chain
|
|
|
|
db, _ = ethdb.NewMemDatabase()
|
|
|
|
WriteGenesisBlockForTesting(db)
|
|
|
|
bc, _ = NewBlockChain(db, &ChainConfig{HomesteadBlock: big.NewInt(0)}, new(FakePow), new(event.TypeMux))
|
|
|
|
|
|
|
|
blocks = proBc.GetBlocksFromHash(proBc.CurrentBlock().Hash(), int(proBc.CurrentBlock().NumberU64()+1))
|
|
|
|
for j := 0; j < len(blocks)/2; j++ {
|
|
|
|
blocks[j], blocks[len(blocks)-1-j] = blocks[len(blocks)-1-j], blocks[j]
|
|
|
|
}
|
|
|
|
if _, err := bc.InsertChain(blocks); err != nil {
|
|
|
|
t.Fatalf("failed to import pro-fork chain for expansion: %v", err)
|
|
|
|
}
|
|
|
|
blocks, _ = GenerateChain(proBc.CurrentBlock(), db, 1, func(i int, gen *BlockGen) {})
|
|
|
|
if _, err := proBc.InsertChain(blocks); err == nil {
|
|
|
|
t.Fatalf("pro-fork chain accepted contra-fork block: %v", blocks[0])
|
|
|
|
}
|
|
|
|
// Create a proper pro-fork block for the pro-forker
|
|
|
|
blocks, _ = GenerateChain(proBc.CurrentBlock(), db, 1, func(i int, gen *BlockGen) { gen.SetExtra(params.DAOForkBlockExtra) })
|
|
|
|
if _, err := proBc.InsertChain(blocks); err != nil {
|
|
|
|
t.Fatalf("pro-fork chain didn't accepted pro-fork block: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Verify that contra-forkers accept pro-fork extra-datas after forking finishes
|
|
|
|
db, _ = ethdb.NewMemDatabase()
|
|
|
|
WriteGenesisBlockForTesting(db)
|
|
|
|
bc, _ := NewBlockChain(db, &ChainConfig{HomesteadBlock: big.NewInt(0)}, new(FakePow), new(event.TypeMux))
|
|
|
|
|
|
|
|
blocks := conBc.GetBlocksFromHash(conBc.CurrentBlock().Hash(), int(conBc.CurrentBlock().NumberU64()+1))
|
|
|
|
for j := 0; j < len(blocks)/2; j++ {
|
|
|
|
blocks[j], blocks[len(blocks)-1-j] = blocks[len(blocks)-1-j], blocks[j]
|
|
|
|
}
|
|
|
|
if _, err := bc.InsertChain(blocks); err != nil {
|
|
|
|
t.Fatalf("failed to import contra-fork chain for expansion: %v", err)
|
|
|
|
}
|
|
|
|
blocks, _ = GenerateChain(conBc.CurrentBlock(), db, 1, func(i int, gen *BlockGen) { gen.SetExtra(params.DAOForkBlockExtra) })
|
|
|
|
if _, err := conBc.InsertChain(blocks); err != nil {
|
|
|
|
t.Fatalf("contra-fork chain didn't accept pro-fork block post-fork: %v", err)
|
|
|
|
}
|
|
|
|
// Verify that pro-forkers accept contra-fork extra-datas after forking finishes
|
|
|
|
db, _ = ethdb.NewMemDatabase()
|
|
|
|
WriteGenesisBlockForTesting(db)
|
|
|
|
bc, _ = NewBlockChain(db, &ChainConfig{HomesteadBlock: big.NewInt(0)}, new(FakePow), new(event.TypeMux))
|
|
|
|
|
|
|
|
blocks = proBc.GetBlocksFromHash(proBc.CurrentBlock().Hash(), int(proBc.CurrentBlock().NumberU64()+1))
|
|
|
|
for j := 0; j < len(blocks)/2; j++ {
|
|
|
|
blocks[j], blocks[len(blocks)-1-j] = blocks[len(blocks)-1-j], blocks[j]
|
|
|
|
}
|
|
|
|
if _, err := bc.InsertChain(blocks); err != nil {
|
|
|
|
t.Fatalf("failed to import pro-fork chain for expansion: %v", err)
|
|
|
|
}
|
|
|
|
blocks, _ = GenerateChain(proBc.CurrentBlock(), db, 1, func(i int, gen *BlockGen) {})
|
|
|
|
if _, err := proBc.InsertChain(blocks); err != nil {
|
|
|
|
t.Fatalf("pro-fork chain didn't accept contra-fork block post-fork: %v", err)
|
|
|
|
}
|
|
|
|
}
|