github.com/aquanetwork/aquachain@v1.7.8/cmd/aquachain/genesis_test.go (about)

     1  // Copyright 2016 The aquachain Authors
     2  // This file is part of aquachain.
     3  //
     4  // aquachain 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  // aquachain 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 aquachain. 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  	// Plain genesis file without anything extra
    32  	{
    33  		genesis: `{
    34  			"alloc"      : {},
    35  			"coinbase"   : "0x0000000000000000000000000000000000000000",
    36  			"difficulty" : "0x20000",
    37  			"extraData"  : "",
    38  			"gasLimit"   : "0x2fefd8",
    39  			"nonce"      : "0x000000000000002a",
    40  			"mixhash"    : "0x0000000000000000000000000000000000000000000000000000000000000000",
    41  			"parentHash" : "0x0000000000000000000000000000000000000000000000000000000000000000",
    42  			"timestamp"  : "0x00"
    43  		}`,
    44  		query:  "aqua.getBlock(0).nonce",
    45  		result: "0x000000000000002a",
    46  	},
    47  	// Genesis file with an empty chain configuration (ensure missing fields work)
    48  	{
    49  		genesis: `{
    50  			"alloc"      : {},
    51  			"coinbase"   : "0x0000000000000000000000000000000000000000",
    52  			"difficulty" : "0x20000",
    53  			"extraData"  : "",
    54  			"gasLimit"   : "0x2fefd8",
    55  			"nonce"      : "0x000000000000002a",
    56  			"mixhash"    : "0x0000000000000000000000000000000000000000000000000000000000000000",
    57  			"parentHash" : "0x0000000000000000000000000000000000000000000000000000000000000000",
    58  			"timestamp"  : "0x00",
    59  			"config"     : {}
    60  		}`,
    61  		query:  "aqua.getBlock(0).nonce",
    62  		result: "0x000000000000002a",
    63  	},
    64  	// Genesis file with specific chain configurations
    65  	{
    66  		genesis: `{
    67  			"alloc"      : {},
    68  			"coinbase"   : "0x0000000000000000000000000000000000000000",
    69  			"difficulty" : "0x20000",
    70  			"extraData"  : "",
    71  			"gasLimit"   : "0x2fefd8",
    72  			"nonce"      : "0x000000000000002a",
    73  			"mixhash"    : "0x0000000000000000000000000000000000000000000000000000000000000000",
    74  			"parentHash" : "0x0000000000000000000000000000000000000000000000000000000000000000",
    75  			"timestamp"  : "0x00",
    76  			"config"     : {
    77  				"homesteadBlock" : 314,
    78  				"chainID"        : 101
    79  			},
    80  		}`,
    81  		query:  "aqua.getBlock(0).nonce",
    82  		result: "0x000000000000002a",
    83  	},
    84  }
    85  
    86  // Tests that initializing AquaChain with a custom genesis block and chain definitions
    87  // work properly.
    88  func TestCustomGenesis(t *testing.T) {
    89  	for i, tt := range customGenesisTests {
    90  		// Create a temporary data directory to use and inspect later
    91  		datadir := tmpdir(t)
    92  		defer os.RemoveAll(datadir)
    93  
    94  		// Initialize the data directory with the custom genesis block
    95  		json := filepath.Join(datadir, "genesis.json")
    96  		if err := ioutil.WriteFile(json, []byte(tt.genesis), 0600); err != nil {
    97  			t.Fatalf("test %d: failed to write genesis file: %v", i, err)
    98  		}
    99  		runAquaChain(t, "--datadir", datadir, "init", json).WaitExit()
   100  
   101  		// Query the custom genesis block
   102  		aquachain := runAquaChain(t,
   103  			"--datadir", datadir, "--maxpeers", "0", "--port", "0",
   104  			"--nodiscover", "--nat", "none", "--ipcdisable",
   105  			"--exec", tt.query, "console")
   106  		aquachain.ExpectRegexp(tt.result)
   107  		aquachain.ExpectExit()
   108  	}
   109  }