github.com/ubiq/go-ethereum@v3.0.1+incompatible/tests/difficulty_test.go (about)

     1  // Copyright 2017 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 tests
    18  
    19  import (
    20  	"math/big"
    21  	"testing"
    22  
    23  	"github.com/ubiq/go-ubiq/common"
    24  	"github.com/ubiq/go-ubiq/params"
    25  )
    26  
    27  var (
    28  	mainnetChainConfig = params.ChainConfig{
    29  		ChainID:        big.NewInt(1),
    30  		HomesteadBlock: big.NewInt(1150000),
    31  		EIP150Block:    big.NewInt(2463000),
    32  		EIP150Hash:     common.HexToHash("0x2086799aeebeae135c246c65021c82b4e15a2c451340993aacfd2751886514f0"),
    33  		EIP155Block:    big.NewInt(2675000),
    34  		EIP158Block:    big.NewInt(2675000),
    35  		ByzantiumBlock: big.NewInt(4370000),
    36  	}
    37  )
    38  
    39  func TestDifficulty(t *testing.T) {
    40  	t.Parallel()
    41  
    42  	dt := new(testMatcher)
    43  	// Not difficulty-tests
    44  	dt.skipLoad("hexencodetest.*")
    45  	dt.skipLoad("crypto.*")
    46  	dt.skipLoad("blockgenesistest\\.json")
    47  	dt.skipLoad("genesishashestest\\.json")
    48  	dt.skipLoad("keyaddrtest\\.json")
    49  	dt.skipLoad("txtest\\.json")
    50  
    51  	// files are 2 years old, contains strange values
    52  	dt.skipLoad("difficultyCustomHomestead\\.json")
    53  	dt.skipLoad("difficultyMorden\\.json")
    54  	dt.skipLoad("difficultyOlimpic\\.json")
    55  
    56  	dt.config("Ropsten", *params.TestnetChainConfig)
    57  	dt.config("Morden", *params.TestnetChainConfig)
    58  	dt.config("Frontier", params.ChainConfig{})
    59  
    60  	dt.config("Homestead", params.ChainConfig{
    61  		HomesteadBlock: big.NewInt(0),
    62  	})
    63  
    64  	dt.config("Byzantium", params.ChainConfig{
    65  		ByzantiumBlock: big.NewInt(0),
    66  	})
    67  
    68  	dt.config("Frontier", *params.TestnetChainConfig)
    69  	dt.config("MainNetwork", mainnetChainConfig)
    70  	dt.config("CustomMainNetwork", mainnetChainConfig)
    71  	dt.config("Constantinople", params.ChainConfig{
    72  		ConstantinopleBlock: big.NewInt(0),
    73  	})
    74  	dt.config("difficulty.json", mainnetChainConfig)
    75  
    76  	dt.walk(t, difficultyTestDir, func(t *testing.T, name string, test *DifficultyTest) {
    77  		cfg := dt.findConfig(name)
    78  		if test.ParentDifficulty.Cmp(params.MinimumDifficulty) < 0 {
    79  			t.Skip("difficulty below minimum")
    80  			return
    81  		}
    82  		if err := dt.checkFailure(t, name, test.Run(cfg)); err != nil {
    83  			t.Error(err)
    84  		}
    85  	})
    86  }