|
|
@ -29,7 +29,8 @@ import ( |
|
|
|
"github.com/ethereum/go-ethereum/params" |
|
|
|
"github.com/ethereum/go-ethereum/params" |
|
|
|
) |
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
var daoNoForkGenesis = `{ |
|
|
|
// Genesis block for nodes which don't care about the DAO fork (i.e. not configured)
|
|
|
|
|
|
|
|
var daoOldGenesis = `{ |
|
|
|
"alloc" : {}, |
|
|
|
"alloc" : {}, |
|
|
|
"coinbase" : "0x0000000000000000000000000000000000000000", |
|
|
|
"coinbase" : "0x0000000000000000000000000000000000000000", |
|
|
|
"difficulty" : "0x20000", |
|
|
|
"difficulty" : "0x20000", |
|
|
@ -38,214 +39,140 @@ var daoNoForkGenesis = `{ |
|
|
|
"nonce" : "0x0000000000000042", |
|
|
|
"nonce" : "0x0000000000000042", |
|
|
|
"mixhash" : "0x0000000000000000000000000000000000000000000000000000000000000000", |
|
|
|
"mixhash" : "0x0000000000000000000000000000000000000000000000000000000000000000", |
|
|
|
"parentHash" : "0x0000000000000000000000000000000000000000000000000000000000000000", |
|
|
|
"parentHash" : "0x0000000000000000000000000000000000000000000000000000000000000000", |
|
|
|
"timestamp" : "0x00" |
|
|
|
"timestamp" : "0x00", |
|
|
|
|
|
|
|
"config" : {} |
|
|
|
}` |
|
|
|
}` |
|
|
|
var daoNoForkGenesisHash = common.HexToHash("5e1fc79cb4ffa4739177b5408045cd5d51c6cf766133f23f7cd72ee1f8d790e0") |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var daoProForkGenesis = `{ |
|
|
|
// Genesis block for nodes which actively oppose the DAO fork
|
|
|
|
|
|
|
|
var daoNoForkGenesis = `{ |
|
|
|
"alloc" : {}, |
|
|
|
"alloc" : {}, |
|
|
|
"coinbase" : "0x0000000000000000000000000000000000000000", |
|
|
|
"coinbase" : "0x0000000000000000000000000000000000000000", |
|
|
|
"difficulty" : "0x20000", |
|
|
|
"difficulty" : "0x20000", |
|
|
|
"extraData" : "", |
|
|
|
"extraData" : "", |
|
|
|
"gasLimit" : "0x2fefd8", |
|
|
|
"gasLimit" : "0x2fefd8", |
|
|
|
"nonce" : "0x0000000000000043", |
|
|
|
"nonce" : "0x0000000000000042", |
|
|
|
"mixhash" : "0x0000000000000000000000000000000000000000000000000000000000000000", |
|
|
|
"mixhash" : "0x0000000000000000000000000000000000000000000000000000000000000000", |
|
|
|
"parentHash" : "0x0000000000000000000000000000000000000000000000000000000000000000", |
|
|
|
"parentHash" : "0x0000000000000000000000000000000000000000000000000000000000000000", |
|
|
|
"timestamp" : "0x00", |
|
|
|
"timestamp" : "0x00", |
|
|
|
"config" : { |
|
|
|
"config" : { |
|
|
|
"daoForkBlock": 314 |
|
|
|
"daoForkBlock" : 314, |
|
|
|
|
|
|
|
"daoForkSupport" : false |
|
|
|
} |
|
|
|
} |
|
|
|
}` |
|
|
|
}` |
|
|
|
var daoProForkGenesisHash = common.HexToHash("c80f3c1c3d81ae6d8ea59edf35d3e4b723e4c8684ec71fdb6d4715e3f8add237") |
|
|
|
|
|
|
|
var daoProForkBlock = big.NewInt(314) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Tests that creating a new node to with or without the DAO fork flag will correctly
|
|
|
|
// Genesis block for nodes which actively support the DAO fork
|
|
|
|
// set the genesis block but with DAO support explicitly set or unset in the chain
|
|
|
|
var daoProForkGenesis = `{ |
|
|
|
// config in the database.
|
|
|
|
"alloc" : {}, |
|
|
|
func TestDAOSupportMainnet(t *testing.T) { |
|
|
|
"coinbase" : "0x0000000000000000000000000000000000000000", |
|
|
|
testDAOForkBlockNewChain(t, false, "", true, params.MainNetDAOForkBlock) |
|
|
|
"difficulty" : "0x20000", |
|
|
|
} |
|
|
|
"extraData" : "", |
|
|
|
func TestDAOSupportTestnet(t *testing.T) { |
|
|
|
"gasLimit" : "0x2fefd8", |
|
|
|
testDAOForkBlockNewChain(t, true, "", true, params.TestNetDAOForkBlock) |
|
|
|
"nonce" : "0x0000000000000042", |
|
|
|
} |
|
|
|
"mixhash" : "0x0000000000000000000000000000000000000000000000000000000000000000", |
|
|
|
func TestDAOSupportPrivnet(t *testing.T) { |
|
|
|
"parentHash" : "0x0000000000000000000000000000000000000000000000000000000000000000", |
|
|
|
testDAOForkBlockNewChain(t, false, daoProForkGenesis, false, daoProForkBlock) |
|
|
|
"timestamp" : "0x00", |
|
|
|
} |
|
|
|
"config" : { |
|
|
|
func TestDAONoSupportMainnet(t *testing.T) { |
|
|
|
"daoForkBlock" : 314, |
|
|
|
testDAOForkBlockNewChain(t, false, "", false, nil) |
|
|
|
"daoForkSupport" : true |
|
|
|
} |
|
|
|
|
|
|
|
func TestDAONoSupportTestnet(t *testing.T) { |
|
|
|
|
|
|
|
testDAOForkBlockNewChain(t, true, "", false, nil) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
func TestDAONoSupportPrivnet(t *testing.T) { |
|
|
|
|
|
|
|
testDAOForkBlockNewChain(t, false, daoNoForkGenesis, false, nil) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func testDAOForkBlockNewChain(t *testing.T, testnet bool, genesis string, fork bool, expect *big.Int) { |
|
|
|
|
|
|
|
// Create a temporary data directory to use and inspect later
|
|
|
|
|
|
|
|
datadir := tmpdir(t) |
|
|
|
|
|
|
|
defer os.RemoveAll(datadir) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Start a Geth instance with the requested flags set and immediately terminate
|
|
|
|
|
|
|
|
if genesis != "" { |
|
|
|
|
|
|
|
json := filepath.Join(datadir, "genesis.json") |
|
|
|
|
|
|
|
if err := ioutil.WriteFile(json, []byte(genesis), 0600); err != nil { |
|
|
|
|
|
|
|
t.Fatalf("failed to write genesis file: %v", err) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
runGeth(t, "--datadir", datadir, "init", json).cmd.Wait() |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
execDAOGeth(t, datadir, testnet, fork, false) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Retrieve the DAO config flag from the database
|
|
|
|
|
|
|
|
path := filepath.Join(datadir, "chaindata") |
|
|
|
|
|
|
|
if testnet { |
|
|
|
|
|
|
|
path = filepath.Join(datadir, "testnet", "chaindata") |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
db, err := ethdb.NewLDBDatabase(path, 0, 0) |
|
|
|
|
|
|
|
if err != nil { |
|
|
|
|
|
|
|
t.Fatalf("failed to open test database: %v", err) |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
defer db.Close() |
|
|
|
}` |
|
|
|
|
|
|
|
|
|
|
|
genesisHash := common.HexToHash("0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3") |
|
|
|
var daoGenesisHash = common.HexToHash("5e1fc79cb4ffa4739177b5408045cd5d51c6cf766133f23f7cd72ee1f8d790e0") |
|
|
|
if testnet { |
|
|
|
var daoGenesisForkBlock = big.NewInt(314) |
|
|
|
genesisHash = common.HexToHash("0x0cd786a2425d16f152c658316c423e6ce1181e15c3295826d7c9904cba9ce303") |
|
|
|
|
|
|
|
} else if genesis == daoNoForkGenesis { |
|
|
|
|
|
|
|
genesisHash = daoNoForkGenesisHash |
|
|
|
|
|
|
|
} else if genesis == daoProForkGenesis { |
|
|
|
|
|
|
|
genesisHash = daoProForkGenesisHash |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
config, err := core.GetChainConfig(db, genesisHash) |
|
|
|
|
|
|
|
if err != nil { |
|
|
|
|
|
|
|
t.Fatalf("failed to retrieve chain config: %v", err) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
// Validate the DAO hard-fork block number against the expected value
|
|
|
|
|
|
|
|
if config.DAOForkBlock == nil { |
|
|
|
|
|
|
|
if expect != nil { |
|
|
|
|
|
|
|
t.Fatalf("dao hard-fork block mismatch: have nil, want %v", expect) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} else if config.DAOForkBlock.Cmp(expect) != 0 { |
|
|
|
|
|
|
|
t.Fatalf("dao hard-fork block mismatch: have %v, want %v", config.DAOForkBlock, expect) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Tests that starting up an already existing node with various DAO fork override
|
|
|
|
// Tests that the DAO hard-fork number and the nodes support/opposition is correctly
|
|
|
|
// flags correctly changes the chain configs in the database.
|
|
|
|
// set in the database after various initialization procedures and invocations.
|
|
|
|
func TestDAODefaultMainnet(t *testing.T) { |
|
|
|
func TestDAODefaultMainnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, "", false, false, false, false, nil) |
|
|
|
testDAOForkBlockNewChain(t, false, "", [][2]bool{{false, false}}, params.MainNetDAOForkBlock, false) |
|
|
|
} |
|
|
|
|
|
|
|
func TestDAOStartSupportMainnet(t *testing.T) { |
|
|
|
|
|
|
|
testDAOForkBlockOldChain(t, false, "", false, true, false, false, params.MainNetDAOForkBlock) |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOContinueExplicitSupportMainnet(t *testing.T) { |
|
|
|
func TestDAOSupportMainnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, "", true, true, false, false, params.MainNetDAOForkBlock) |
|
|
|
testDAOForkBlockNewChain(t, false, "", [][2]bool{{true, false}}, params.MainNetDAOForkBlock, true) |
|
|
|
} |
|
|
|
|
|
|
|
func TestDAOContinueImplicitSupportMainnet(t *testing.T) { |
|
|
|
|
|
|
|
testDAOForkBlockOldChain(t, false, "", true, false, false, false, params.MainNetDAOForkBlock) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
func TestDAOSwitchSupportMainnet(t *testing.T) { |
|
|
|
|
|
|
|
testDAOForkBlockOldChain(t, false, "", false, true, true, false, params.MainNetDAOForkBlock) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
func TestDAOStartOpposeMainnet(t *testing.T) { |
|
|
|
|
|
|
|
testDAOForkBlockOldChain(t, false, "", false, false, false, true, nil) |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOContinueExplicitOpposeMainnet(t *testing.T) { |
|
|
|
func TestDAOOpposeMainnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, "", false, false, true, true, nil) |
|
|
|
testDAOForkBlockNewChain(t, false, "", [][2]bool{{false, true}}, params.MainNetDAOForkBlock, false) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOContinueImplicitOpposeMainnet(t *testing.T) { |
|
|
|
func TestDAOSwitchToSupportMainnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, "", false, false, true, false, nil) |
|
|
|
testDAOForkBlockNewChain(t, false, "", [][2]bool{{false, true}, {true, false}}, params.MainNetDAOForkBlock, true) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOSwitchOpposeMainnet(t *testing.T) { |
|
|
|
func TestDAOSwitchToOpposeMainnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, "", true, false, false, true, nil) |
|
|
|
testDAOForkBlockNewChain(t, false, "", [][2]bool{{true, false}, {false, true}}, params.MainNetDAOForkBlock, false) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAODefaultTestnet(t *testing.T) { |
|
|
|
func TestDAODefaultTestnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, true, "", false, false, false, false, nil) |
|
|
|
testDAOForkBlockNewChain(t, true, "", [][2]bool{{false, false}}, params.TestNetDAOForkBlock, false) |
|
|
|
} |
|
|
|
|
|
|
|
func TestDAOStartSupportTestnet(t *testing.T) { |
|
|
|
|
|
|
|
testDAOForkBlockOldChain(t, true, "", false, true, false, false, params.TestNetDAOForkBlock) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
func TestDAOContinueExplicitSupportTestnet(t *testing.T) { |
|
|
|
|
|
|
|
testDAOForkBlockOldChain(t, true, "", true, true, false, false, params.TestNetDAOForkBlock) |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOContinueImplicitSupportTestnet(t *testing.T) { |
|
|
|
func TestDAOSupportTestnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, true, "", true, false, false, false, params.TestNetDAOForkBlock) |
|
|
|
testDAOForkBlockNewChain(t, true, "", [][2]bool{{true, false}}, params.TestNetDAOForkBlock, true) |
|
|
|
} |
|
|
|
|
|
|
|
func TestDAOSwitchSupportTestnet(t *testing.T) { |
|
|
|
|
|
|
|
testDAOForkBlockOldChain(t, true, "", false, true, true, false, params.TestNetDAOForkBlock) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
func TestDAOStartOpposeTestnet(t *testing.T) { |
|
|
|
|
|
|
|
testDAOForkBlockOldChain(t, true, "", false, false, false, true, nil) |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOContinueExplicitOpposeTestnet(t *testing.T) { |
|
|
|
func TestDAOOpposeTestnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, true, "", false, false, true, true, nil) |
|
|
|
testDAOForkBlockNewChain(t, true, "", [][2]bool{{false, true}}, params.TestNetDAOForkBlock, false) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOContinueImplicitOpposeTestnet(t *testing.T) { |
|
|
|
func TestDAOSwitchToSupportTestnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, true, "", false, false, true, false, nil) |
|
|
|
testDAOForkBlockNewChain(t, true, "", [][2]bool{{false, true}, {true, false}}, params.TestNetDAOForkBlock, true) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOSwitchOpposeTestnet(t *testing.T) { |
|
|
|
func TestDAOSwitchToOpposeTestnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, true, "", true, false, false, true, nil) |
|
|
|
testDAOForkBlockNewChain(t, true, "", [][2]bool{{true, false}, {false, true}}, params.TestNetDAOForkBlock, false) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAODefaultPrivnet(t *testing.T) { |
|
|
|
func TestDAOInitOldPrivnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, daoNoForkGenesis, false, false, false, false, nil) |
|
|
|
testDAOForkBlockNewChain(t, false, daoOldGenesis, [][2]bool{}, nil, false) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOStartSupportConPrivnet(t *testing.T) { |
|
|
|
func TestDAODefaultOldPrivnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, daoNoForkGenesis, false, true, false, false, params.MainNetDAOForkBlock) |
|
|
|
testDAOForkBlockNewChain(t, false, daoOldGenesis, [][2]bool{{false, false}}, params.MainNetDAOForkBlock, false) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOContinueExplicitSupportConPrivnet(t *testing.T) { |
|
|
|
func TestDAOSupportOldPrivnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, daoNoForkGenesis, true, true, false, false, params.MainNetDAOForkBlock) |
|
|
|
testDAOForkBlockNewChain(t, false, daoOldGenesis, [][2]bool{{true, false}}, params.MainNetDAOForkBlock, true) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOContinueImplicitSupportConPrivnet(t *testing.T) { |
|
|
|
func TestDAOOpposeOldPrivnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, daoNoForkGenesis, true, false, false, false, params.MainNetDAOForkBlock) |
|
|
|
testDAOForkBlockNewChain(t, false, daoOldGenesis, [][2]bool{{false, true}}, params.MainNetDAOForkBlock, false) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOSwitchSupportConPrivnet(t *testing.T) { |
|
|
|
func TestDAOSwitchToSupportOldPrivnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, daoNoForkGenesis, false, true, true, false, params.MainNetDAOForkBlock) |
|
|
|
testDAOForkBlockNewChain(t, false, daoOldGenesis, [][2]bool{{false, true}, {true, false}}, params.MainNetDAOForkBlock, true) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOStartOpposeConPrivnet(t *testing.T) { |
|
|
|
func TestDAOSwitchToOpposeOldPrivnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, daoNoForkGenesis, false, false, false, true, nil) |
|
|
|
testDAOForkBlockNewChain(t, false, daoOldGenesis, [][2]bool{{true, false}, {false, true}}, params.MainNetDAOForkBlock, false) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOContinueExplicitOpposeConPrivnet(t *testing.T) { |
|
|
|
func TestDAOInitNoForkPrivnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, daoNoForkGenesis, false, false, true, true, nil) |
|
|
|
testDAOForkBlockNewChain(t, false, daoNoForkGenesis, [][2]bool{}, daoGenesisForkBlock, false) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOContinueImplicitOpposeConPrivnet(t *testing.T) { |
|
|
|
func TestDAODefaultNoForkPrivnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, daoNoForkGenesis, false, false, true, false, nil) |
|
|
|
testDAOForkBlockNewChain(t, false, daoNoForkGenesis, [][2]bool{{false, false}}, daoGenesisForkBlock, false) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOSwitchOpposeConPrivnet(t *testing.T) { |
|
|
|
func TestDAOSupportNoForkPrivnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, daoNoForkGenesis, true, false, false, true, nil) |
|
|
|
testDAOForkBlockNewChain(t, false, daoNoForkGenesis, [][2]bool{{true, false}}, daoGenesisForkBlock, true) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAODefaultProPrivnet(t *testing.T) { |
|
|
|
func TestDAOOpposeNoForkPrivnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, daoProForkGenesis, false, false, false, false, daoProForkBlock) |
|
|
|
testDAOForkBlockNewChain(t, false, daoNoForkGenesis, [][2]bool{{false, true}}, daoGenesisForkBlock, false) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOStartSupportProPrivnet(t *testing.T) { |
|
|
|
func TestDAOSwitchToSupportNoForkPrivnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, daoProForkGenesis, false, true, false, false, daoProForkBlock) |
|
|
|
testDAOForkBlockNewChain(t, false, daoNoForkGenesis, [][2]bool{{false, true}, {true, false}}, daoGenesisForkBlock, true) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOContinueExplicitSupportProPrivnet(t *testing.T) { |
|
|
|
func TestDAOSwitchToOpposeNoForkPrivnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, daoProForkGenesis, true, true, false, false, daoProForkBlock) |
|
|
|
testDAOForkBlockNewChain(t, false, daoNoForkGenesis, [][2]bool{{true, false}, {false, true}}, daoGenesisForkBlock, false) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOContinueImplicitSupportProPrivnet(t *testing.T) { |
|
|
|
func TestDAOInitProForkPrivnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, daoProForkGenesis, true, false, false, false, daoProForkBlock) |
|
|
|
testDAOForkBlockNewChain(t, false, daoProForkGenesis, [][2]bool{}, daoGenesisForkBlock, true) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOSwitchSupportProPrivnet(t *testing.T) { |
|
|
|
func TestDAODefaultProForkPrivnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, daoProForkGenesis, false, true, true, false, params.MainNetDAOForkBlock) |
|
|
|
testDAOForkBlockNewChain(t, false, daoProForkGenesis, [][2]bool{{false, false}}, daoGenesisForkBlock, true) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOStartOpposeProPrivnet(t *testing.T) { |
|
|
|
func TestDAOSupportProForkPrivnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, daoProForkGenesis, false, false, false, true, nil) |
|
|
|
testDAOForkBlockNewChain(t, false, daoProForkGenesis, [][2]bool{{true, false}}, daoGenesisForkBlock, true) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOContinueExplicitOpposeProPrivnet(t *testing.T) { |
|
|
|
func TestDAOOpposeProForkPrivnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, daoProForkGenesis, false, false, true, true, nil) |
|
|
|
testDAOForkBlockNewChain(t, false, daoProForkGenesis, [][2]bool{{false, true}}, daoGenesisForkBlock, false) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOContinueImplicitOpposeProPrivnet(t *testing.T) { |
|
|
|
func TestDAOSwitchToSupportProForkPrivnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, daoProForkGenesis, false, false, true, false, nil) |
|
|
|
testDAOForkBlockNewChain(t, false, daoProForkGenesis, [][2]bool{{false, true}, {true, false}}, daoGenesisForkBlock, true) |
|
|
|
} |
|
|
|
} |
|
|
|
func TestDAOSwitchOpposeProPrivnet(t *testing.T) { |
|
|
|
func TestDAOSwitchToOpposeProForkPrivnet(t *testing.T) { |
|
|
|
testDAOForkBlockOldChain(t, false, daoProForkGenesis, true, false, false, true, nil) |
|
|
|
testDAOForkBlockNewChain(t, false, daoProForkGenesis, [][2]bool{{true, false}, {false, true}}, daoGenesisForkBlock, false) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func testDAOForkBlockOldChain(t *testing.T, testnet bool, genesis string, oldSupport, newSupport, oldOppose, newOppose bool, expect *big.Int) { |
|
|
|
func testDAOForkBlockNewChain(t *testing.T, testnet bool, genesis string, votes [][2]bool, expectBlock *big.Int, expectVote bool) { |
|
|
|
// Create a temporary data directory to use and inspect later
|
|
|
|
// Create a temporary data directory to use and inspect later
|
|
|
|
datadir := tmpdir(t) |
|
|
|
datadir := tmpdir(t) |
|
|
|
defer os.RemoveAll(datadir) |
|
|
|
defer os.RemoveAll(datadir) |
|
|
|
|
|
|
|
|
|
|
|
// Cycle two Geth instances, possibly changing fork support in between
|
|
|
|
// Start a Geth instance with the requested flags set and immediately terminate
|
|
|
|
if genesis != "" { |
|
|
|
if genesis != "" { |
|
|
|
json := filepath.Join(datadir, "genesis.json") |
|
|
|
json := filepath.Join(datadir, "genesis.json") |
|
|
|
if err := ioutil.WriteFile(json, []byte(genesis), 0600); err != nil { |
|
|
|
if err := ioutil.WriteFile(json, []byte(genesis), 0600); err != nil { |
|
|
@ -253,12 +180,23 @@ func testDAOForkBlockOldChain(t *testing.T, testnet bool, genesis string, oldSup |
|
|
|
} |
|
|
|
} |
|
|
|
runGeth(t, "--datadir", datadir, "init", json).cmd.Wait() |
|
|
|
runGeth(t, "--datadir", datadir, "init", json).cmd.Wait() |
|
|
|
} |
|
|
|
} |
|
|
|
execDAOGeth(t, datadir, testnet, oldSupport, oldOppose) |
|
|
|
for _, vote := range votes { |
|
|
|
execDAOGeth(t, datadir, testnet, newSupport, newOppose) |
|
|
|
args := []string{"--port", "0", "--maxpeers", "0", "--nodiscover", "--nat", "none", "--ipcdisable", "--datadir", datadir} |
|
|
|
|
|
|
|
if testnet { |
|
|
|
|
|
|
|
args = append(args, "--testnet") |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if vote[0] { |
|
|
|
|
|
|
|
args = append(args, "--support-dao-fork") |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if vote[1] { |
|
|
|
|
|
|
|
args = append(args, "--oppose-dao-fork") |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
geth := runGeth(t, append(args, []string{"--exec", "2+2", "console"}...)...) |
|
|
|
|
|
|
|
geth.cmd.Wait() |
|
|
|
|
|
|
|
} |
|
|
|
// Retrieve the DAO config flag from the database
|
|
|
|
// Retrieve the DAO config flag from the database
|
|
|
|
path := filepath.Join(datadir, "chaindata") |
|
|
|
path := filepath.Join(datadir, "chaindata") |
|
|
|
if testnet { |
|
|
|
if testnet && genesis == "" { |
|
|
|
path = filepath.Join(datadir, "testnet", "chaindata") |
|
|
|
path = filepath.Join(datadir, "testnet", "chaindata") |
|
|
|
} |
|
|
|
} |
|
|
|
db, err := ethdb.NewLDBDatabase(path, 0, 0) |
|
|
|
db, err := ethdb.NewLDBDatabase(path, 0, 0) |
|
|
@ -270,10 +208,9 @@ func testDAOForkBlockOldChain(t *testing.T, testnet bool, genesis string, oldSup |
|
|
|
genesisHash := common.HexToHash("0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3") |
|
|
|
genesisHash := common.HexToHash("0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3") |
|
|
|
if testnet { |
|
|
|
if testnet { |
|
|
|
genesisHash = common.HexToHash("0x0cd786a2425d16f152c658316c423e6ce1181e15c3295826d7c9904cba9ce303") |
|
|
|
genesisHash = common.HexToHash("0x0cd786a2425d16f152c658316c423e6ce1181e15c3295826d7c9904cba9ce303") |
|
|
|
} else if genesis == daoNoForkGenesis { |
|
|
|
} |
|
|
|
genesisHash = daoNoForkGenesisHash |
|
|
|
if genesis != "" { |
|
|
|
} else if genesis == daoProForkGenesis { |
|
|
|
genesisHash = daoGenesisHash |
|
|
|
genesisHash = daoProForkGenesisHash |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
config, err := core.GetChainConfig(db, genesisHash) |
|
|
|
config, err := core.GetChainConfig(db, genesisHash) |
|
|
|
if err != nil { |
|
|
|
if err != nil { |
|
|
@ -281,26 +218,15 @@ func testDAOForkBlockOldChain(t *testing.T, testnet bool, genesis string, oldSup |
|
|
|
} |
|
|
|
} |
|
|
|
// Validate the DAO hard-fork block number against the expected value
|
|
|
|
// Validate the DAO hard-fork block number against the expected value
|
|
|
|
if config.DAOForkBlock == nil { |
|
|
|
if config.DAOForkBlock == nil { |
|
|
|
if expect != nil { |
|
|
|
if expectBlock != nil { |
|
|
|
t.Fatalf("dao hard-fork block mismatch: have nil, want %v", expect) |
|
|
|
t.Errorf("dao hard-fork block mismatch: have nil, want %v", expectBlock) |
|
|
|
} |
|
|
|
|
|
|
|
} else if config.DAOForkBlock.Cmp(expect) != 0 { |
|
|
|
|
|
|
|
t.Fatalf("dao hard-fork block mismatch: have %v, want %v", config.DAOForkBlock, expect) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// execDAOGeth starts a Geth instance with some DAO forks set and terminates.
|
|
|
|
|
|
|
|
func execDAOGeth(t *testing.T, datadir string, testnet bool, supportFork bool, opposeFork bool) { |
|
|
|
|
|
|
|
args := []string{"--port", "0", "--maxpeers", "0", "--nodiscover", "--nat", "none", "--ipcdisable", "--datadir", datadir} |
|
|
|
|
|
|
|
if testnet { |
|
|
|
|
|
|
|
args = append(args, "--testnet") |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
if supportFork { |
|
|
|
} else if expectBlock == nil { |
|
|
|
args = append(args, "--support-dao-fork") |
|
|
|
t.Errorf("dao hard-fork block mismatch: have %v, want nil", config.DAOForkBlock) |
|
|
|
|
|
|
|
} else if config.DAOForkBlock.Cmp(expectBlock) != 0 { |
|
|
|
|
|
|
|
t.Errorf("dao hard-fork block mismatch: have %v, want %v", config.DAOForkBlock, expectBlock) |
|
|
|
} |
|
|
|
} |
|
|
|
if opposeFork { |
|
|
|
if config.DAOForkSupport != expectVote { |
|
|
|
args = append(args, "--oppose-dao-fork") |
|
|
|
t.Errorf("dao hard-fork support mismatch: have %v, want %v", config.DAOForkSupport, expectVote) |
|
|
|
} |
|
|
|
} |
|
|
|
geth := runGeth(t, append(args, []string{"--exec", "2+2", "console"}...)...) |
|
|
|
|
|
|
|
geth.cmd.Wait() |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|