github.com/theQRL/go-zond@v0.2.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 } 55 56 // TestExecutionSpec runs the test fixtures from execution-spec-tests. 57 func TestExecutionSpec(t *testing.T) { 58 if !common.FileExist(executionSpecDir) { 59 t.Skipf("directory %s does not exist", executionSpecDir) 60 } 61 bt := new(testMatcher) 62 63 bt.walk(t, executionSpecDir, func(t *testing.T, name string, test *BlockTest) { 64 execBlockTest(t, bt, test) 65 }) 66 } 67 68 func execBlockTest(t *testing.T, bt *testMatcher, test *BlockTest) { 69 if err := bt.checkFailure(t, test.Run(false, rawdb.HashScheme, nil)); err != nil { 70 t.Errorf("test in hash mode without snapshotter failed: %v", err) 71 } 72 if err := bt.checkFailure(t, test.Run(true, rawdb.HashScheme, nil)); err != nil { 73 t.Errorf("test in hash mode with snapshotter failed: %v", err) 74 } 75 if err := bt.checkFailure(t, test.Run(false, rawdb.PathScheme, nil)); err != nil { 76 t.Errorf("test in path mode without snapshotter failed: %v", err) 77 } 78 if err := bt.checkFailure(t, test.Run(true, rawdb.PathScheme, nil)); err != nil { 79 t.Errorf("test in path mode with snapshotter failed: %v", err) 80 } 81 }