github.com/JFJun/bsc@v1.0.0/cmd/geth/genesis_test.go (about)

     1  // Copyright 2016 The go-ethereum Authors
     2  // This file is part of go-ethereum.
     3  //
     4  // go-ethereum is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU 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  // go-ethereum 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 General Public License for more details.
    13  //
    14  // You should have received a copy of the GNU General Public License
    15  // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  package main
    18  
    19  import (
    20  	"io/ioutil"
    21  	"os"
    22  	"path/filepath"
    23  	"testing"
    24  )
    25  
    26  var customGenesisTests = []struct {
    27  	genesis string
    28  	query   string
    29  	result  string
    30  }{
    31  	// Genesis file with an empty chain configuration (ensure missing fields work)
    32  	{
    33  		genesis: `{
    34  			"alloc"      : {},
    35  			"coinbase"   : "0x0000000000000000000000000000000000000000",
    36  			"difficulty" : "0x20000",
    37  			"extraData"  : "",
    38  			"gasLimit"   : "0x2fefd8",
    39  			"nonce"      : "0x0000000000001338",
    40  			"mixhash"    : "0x0000000000000000000000000000000000000000000000000000000000000000",
    41  			"parentHash" : "0x0000000000000000000000000000000000000000000000000000000000000000",
    42  			"timestamp"  : "0x00",
    43  			"config"     : {}
    44  		}`,
    45  		query:  "eth.getBlock(0).nonce",
    46  		result: "0x0000000000001338",
    47  	},
    48  	// Genesis file with specific chain configurations
    49  	{
    50  		genesis: `{
    51  			"alloc"      : {},
    52  			"coinbase"   : "0x0000000000000000000000000000000000000000",
    53  			"difficulty" : "0x20000",
    54  			"extraData"  : "",
    55  			"gasLimit"   : "0x2fefd8",
    56  			"nonce"      : "0x0000000000001339",
    57  			"mixhash"    : "0x0000000000000000000000000000000000000000000000000000000000000000",
    58  			"parentHash" : "0x0000000000000000000000000000000000000000000000000000000000000000",
    59  			"timestamp"  : "0x00",
    60  			"config"     : {
    61  				"homesteadBlock" : 314,
    62  				"daoForkBlock"   : 141,
    63  				"daoForkSupport" : true
    64  			}
    65  		}`,
    66  		query:  "eth.getBlock(0).nonce",
    67  		result: "0x0000000000001339",
    68  	},
    69  }
    70  
    71  // Tests that initializing Geth with a custom genesis block and chain definitions
    72  // work properly.
    73  func TestCustomGenesis(t *testing.T) {
    74  	for i, tt := range customGenesisTests {
    75  		// Create a temporary data directory to use and inspect later
    76  		datadir := tmpdir(t)
    77  		defer os.RemoveAll(datadir)
    78  
    79  		// Initialize the data directory with the custom genesis block
    80  		json := filepath.Join(datadir, "genesis.json")
    81  		if err := ioutil.WriteFile(json, []byte(tt.genesis), 0600); err != nil {
    82  			t.Fatalf("test %d: failed to write genesis file: %v", i, err)
    83  		}
    84  		runGeth(t, "--nousb", "--datadir", datadir, "init", json).WaitExit()
    85  
    86  		// Query the custom genesis block
    87  		geth := runGeth(t, "--nousb",
    88  			"--datadir", datadir, "--maxpeers", "0", "--port", "0",
    89  			"--nodiscover", "--nat", "none", "--ipcdisable",
    90  			"--exec", tt.query, "console")
    91  		geth.ExpectRegexp(tt.result)
    92  		geth.ExpectExit()
    93  	}
    94  }