github.com/theQRL/go-zond@v0.1.1/tests/block_test.go (about)

     1  // Copyright 2015 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  	"testing"
    21  
    22  	"github.com/theQRL/go-zond/common"
    23  	"github.com/theQRL/go-zond/core/rawdb"
    24  )
    25  
    26  func TestBlockchain(t *testing.T) {
    27  	bt := new(testMatcher)
    28  	// General state tests are 'exported' as blockchain tests, but we can run them natively.
    29  	// For speedier CI-runs, the line below can be uncommented, so those are skipped.
    30  	// For now, in hardfork-times (Berlin), we run the tests both as StateTests and
    31  	// as blockchain tests, since the latter also covers things like receipt root
    32  	bt.skipLoad(`^GeneralStateTests/`)
    33  
    34  	// Skip random failures due to selfish mining test
    35  	bt.skipLoad(`.*bcForgedTest/bcForkUncle\.json`)
    36  
    37  	// Slow tests
    38  	bt.slow(`.*bcExploitTest/DelegateCallSpam.json`)
    39  	bt.slow(`.*bcExploitTest/ShanghaiLove.json`)
    40  	bt.slow(`.*bcExploitTest/SuicideIssue.json`)
    41  	bt.slow(`.*/bcForkStressTest/`)
    42  	bt.slow(`.*/bcGasPricerTest/RPC_API_Test.json`)
    43  	bt.slow(`.*/bcWalletTest/`)
    44  
    45  	// Very slow test
    46  	bt.skipLoad(`.*/stTimeConsuming/.*`)
    47  	// test takes a lot for time and goes easily OOM because of sha3 calculation on a huge range,
    48  	// using 4.6 TGas
    49  	bt.skipLoad(`.*randomStatetest94.json.*`)
    50  
    51  	bt.walk(t, blockTestDir, func(t *testing.T, name string, test *BlockTest) {
    52  		execBlockTest(t, bt, test)
    53  	})
    54  	// There is also a LegacyTests folder, containing blockchain tests generated
    55  	// prior to Istanbul. However, they are all derived from GeneralStateTests,
    56  	// which run natively, so there's no reason to run them here.
    57  }
    58  
    59  // TestExecutionSpec runs the test fixtures from execution-spec-tests.
    60  func TestExecutionSpec(t *testing.T) {
    61  	if !common.FileExist(executionSpecDir) {
    62  		t.Skipf("directory %s does not exist", executionSpecDir)
    63  	}
    64  	bt := new(testMatcher)
    65  
    66  	// cancun tests are not complete yet
    67  	bt.skipLoad(`^cancun/`)
    68  	bt.skipLoad(`-fork=Cancun`)
    69  
    70  	bt.walk(t, executionSpecDir, func(t *testing.T, name string, test *BlockTest) {
    71  		execBlockTest(t, bt, test)
    72  	})
    73  }
    74  
    75  func execBlockTest(t *testing.T, bt *testMatcher, test *BlockTest) {
    76  	if err := bt.checkFailure(t, test.Run(false, rawdb.HashScheme, nil)); err != nil {
    77  		t.Errorf("test in hash mode without snapshotter failed: %v", err)
    78  	}
    79  	if err := bt.checkFailure(t, test.Run(true, rawdb.HashScheme, nil)); err != nil {
    80  		t.Errorf("test in hash mode with snapshotter failed: %v", err)
    81  	}
    82  	if err := bt.checkFailure(t, test.Run(false, rawdb.PathScheme, nil)); err != nil {
    83  		t.Errorf("test in path mode without snapshotter failed: %v", err)
    84  	}
    85  	if err := bt.checkFailure(t, test.Run(true, rawdb.PathScheme, nil)); err != nil {
    86  		t.Errorf("test in path mode with snapshotter failed: %v", err)
    87  	}
    88  }