2015-07-07 03:54:22 +03:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
2015-07-22 19:48:40 +03:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 03:54:22 +03:00
|
|
|
//
|
2015-07-23 19:35:11 +03:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 03:54:22 +03:00
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2015-07-22 19:48:40 +03:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 03:54:22 +03:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 19:48:40 +03:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 03:54:22 +03:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 19:48:40 +03:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 03:54:22 +03:00
|
|
|
|
2015-04-20 19:14:57 +03:00
|
|
|
package tests
|
|
|
|
|
|
|
|
import (
|
2023-11-14 20:40:16 +03:00
|
|
|
"math/rand"
|
2015-04-20 19:14:57 +03:00
|
|
|
"testing"
|
all: activate pbss as experimental feature (#26274)
* all: activate pbss
* core/rawdb: fix compilation error
* cma, core, eth, les, trie: address comments
* cmd, core, eth, trie: polish code
* core, cmd, eth: address comments
* cmd, core, eth, les, light, tests: address comment
* cmd/utils: shorten log message
* trie/triedb/pathdb: limit node buffer size to 1gb
* cmd/utils: fix opening non-existing db
* cmd/utils: rename flag name
* cmd, core: group chain history flags and fix tests
* core, eth, trie: fix memory leak in snapshot generation
* cmd, eth, internal: deprecate flags
* all: enable state tests for pathdb, fixes
* cmd, core: polish code
* trie/triedb/pathdb: limit the node buffer size to 256mb
---------
Co-authored-by: Martin Holst Swende <martin@swende.se>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2023-08-10 22:21:36 +03:00
|
|
|
|
2023-08-26 16:42:27 +03:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
all: activate pbss as experimental feature (#26274)
* all: activate pbss
* core/rawdb: fix compilation error
* cma, core, eth, les, trie: address comments
* cmd, core, eth, trie: polish code
* core, cmd, eth: address comments
* cmd, core, eth, les, light, tests: address comment
* cmd/utils: shorten log message
* trie/triedb/pathdb: limit node buffer size to 1gb
* cmd/utils: fix opening non-existing db
* cmd/utils: rename flag name
* cmd, core: group chain history flags and fix tests
* core, eth, trie: fix memory leak in snapshot generation
* cmd, eth, internal: deprecate flags
* all: enable state tests for pathdb, fixes
* cmd, core: polish code
* trie/triedb/pathdb: limit the node buffer size to 256mb
---------
Co-authored-by: Martin Holst Swende <martin@swende.se>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2023-08-10 22:21:36 +03:00
|
|
|
"github.com/ethereum/go-ethereum/core/rawdb"
|
2017-07-11 14:49:14 +03:00
|
|
|
)
|
2016-10-06 00:55:47 +03:00
|
|
|
|
2017-07-11 14:49:14 +03:00
|
|
|
func TestBlockchain(t *testing.T) {
|
|
|
|
bt := new(testMatcher)
|
2024-06-25 14:48:08 +03:00
|
|
|
|
|
|
|
// We are running most of GeneralStatetests to tests witness support, even
|
|
|
|
// though they are ran as state tests too. Still, the performance tests are
|
|
|
|
// less about state andmore about EVM number crunching, so skip those.
|
|
|
|
bt.skipLoad(`^GeneralStateTests/VMTests/vmPerformance`)
|
2021-03-03 17:50:07 +03:00
|
|
|
|
2019-10-02 11:33:51 +03:00
|
|
|
// Skip random failures due to selfish mining test
|
2019-08-15 15:59:46 +03:00
|
|
|
bt.skipLoad(`.*bcForgedTest/bcForkUncle\.json`)
|
2017-07-11 14:49:14 +03:00
|
|
|
|
2019-08-15 15:59:46 +03:00
|
|
|
// Slow tests
|
|
|
|
bt.slow(`.*bcExploitTest/DelegateCallSpam.json`)
|
|
|
|
bt.slow(`.*bcExploitTest/ShanghaiLove.json`)
|
|
|
|
bt.slow(`.*bcExploitTest/SuicideIssue.json`)
|
|
|
|
bt.slow(`.*/bcForkStressTest/`)
|
|
|
|
bt.slow(`.*/bcGasPricerTest/RPC_API_Test.json`)
|
|
|
|
bt.slow(`.*/bcWalletTest/`)
|
2018-10-16 01:26:47 +03:00
|
|
|
|
2019-10-02 11:33:51 +03:00
|
|
|
// Very slow test
|
|
|
|
bt.skipLoad(`.*/stTimeConsuming/.*`)
|
|
|
|
// test takes a lot for time and goes easily OOM because of sha3 calculation on a huge range,
|
|
|
|
// using 4.6 TGas
|
|
|
|
bt.skipLoad(`.*randomStatetest94.json.*`)
|
2022-12-20 17:56:52 +03:00
|
|
|
|
2024-09-04 16:03:06 +03:00
|
|
|
// After the merge we would accept side chains as canonical even if they have lower td
|
|
|
|
bt.skipLoad(`.*bcMultiChainTest/ChainAtoChainB_difficultyB.json`)
|
|
|
|
bt.skipLoad(`.*bcMultiChainTest/CallContractFromNotBestBlock.json`)
|
|
|
|
bt.skipLoad(`.*bcTotalDifficultyTest/uncleBlockAtBlock3afterBlock4.json`)
|
|
|
|
bt.skipLoad(`.*bcTotalDifficultyTest/lotsOfBranchesOverrideAtTheMiddle.json`)
|
|
|
|
bt.skipLoad(`.*bcTotalDifficultyTest/sideChainWithMoreTransactions.json`)
|
|
|
|
bt.skipLoad(`.*bcForkStressTest/ForkStressTest.json`)
|
|
|
|
bt.skipLoad(`.*bcMultiChainTest/lotsOfLeafs.json`)
|
|
|
|
bt.skipLoad(`.*bcFrontierToHomestead/blockChainFrontierWithLargerTDvsHomesteadBlockchain.json`)
|
|
|
|
bt.skipLoad(`.*bcFrontierToHomestead/blockChainFrontierWithLargerTDvsHomesteadBlockchain2.json`)
|
|
|
|
|
2017-07-11 14:49:14 +03:00
|
|
|
bt.walk(t, blockTestDir, func(t *testing.T, name string, test *BlockTest) {
|
2023-08-26 16:42:27 +03:00
|
|
|
execBlockTest(t, bt, test)
|
2017-07-11 14:49:14 +03:00
|
|
|
})
|
2019-10-02 11:33:51 +03:00
|
|
|
// There is also a LegacyTests folder, containing blockchain tests generated
|
|
|
|
// prior to Istanbul. However, they are all derived from GeneralStateTests,
|
|
|
|
// which run natively, so there's no reason to run them here.
|
2016-10-06 00:55:47 +03:00
|
|
|
}
|
2023-08-26 16:42:27 +03:00
|
|
|
|
2024-02-15 15:30:11 +03:00
|
|
|
// TestExecutionSpecBlocktests runs the test fixtures from execution-spec-tests.
|
|
|
|
func TestExecutionSpecBlocktests(t *testing.T) {
|
|
|
|
if !common.FileExist(executionSpecBlockchainTestDir) {
|
|
|
|
t.Skipf("directory %s does not exist", executionSpecBlockchainTestDir)
|
2023-08-26 16:42:27 +03:00
|
|
|
}
|
|
|
|
bt := new(testMatcher)
|
|
|
|
|
2024-02-15 15:30:11 +03:00
|
|
|
bt.walk(t, executionSpecBlockchainTestDir, func(t *testing.T, name string, test *BlockTest) {
|
2023-08-26 16:42:27 +03:00
|
|
|
execBlockTest(t, bt, test)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func execBlockTest(t *testing.T, bt *testMatcher, test *BlockTest) {
|
2024-06-25 14:48:08 +03:00
|
|
|
// Define all the different flag combinations we should run the tests with,
|
|
|
|
// picking only one for short tests.
|
|
|
|
//
|
|
|
|
// Note, witness building and self-testing is always enabled as it's a very
|
|
|
|
// good test to ensure that we don't break it.
|
|
|
|
var (
|
|
|
|
snapshotConf = []bool{false, true}
|
|
|
|
dbschemeConf = []string{rawdb.HashScheme, rawdb.PathScheme}
|
|
|
|
)
|
2024-03-13 20:12:23 +03:00
|
|
|
if testing.Short() {
|
2024-06-25 14:48:08 +03:00
|
|
|
snapshotConf = []bool{snapshotConf[rand.Int()%2]}
|
|
|
|
dbschemeConf = []string{dbschemeConf[rand.Int()%2]}
|
2023-08-26 16:42:27 +03:00
|
|
|
}
|
2024-06-25 14:48:08 +03:00
|
|
|
for _, snapshot := range snapshotConf {
|
|
|
|
for _, dbscheme := range dbschemeConf {
|
|
|
|
if err := bt.checkFailure(t, test.Run(snapshot, dbscheme, true, nil, nil)); err != nil {
|
|
|
|
t.Errorf("test with config {snapshotter:%v, scheme:%v} failed: %v", snapshot, dbscheme, err)
|
|
|
|
return
|
|
|
|
}
|
2024-03-13 20:12:23 +03:00
|
|
|
}
|
2023-08-26 16:42:27 +03:00
|
|
|
}
|
|
|
|
}
|