2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00: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 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00: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 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2015-04-20 16:14:57 +00:00
|
|
|
package tests
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2017-07-11 11:49:14 +00:00
|
|
|
)
|
2016-10-05 21:55:47 +00:00
|
|
|
|
2017-07-11 11:49:14 +00:00
|
|
|
func TestBlockchain(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
bt := new(testMatcher)
|
|
|
|
// General state tests are 'exported' as blockchain tests, but we can run them natively.
|
2019-08-15 12:59:46 +00:00
|
|
|
bt.skipLoad(`^ValidBlocks/bcStateTests/`)
|
2017-07-11 11:49:14 +00:00
|
|
|
// Skip random failures due to selfish mining test.
|
2019-08-15 12:59:46 +00:00
|
|
|
bt.skipLoad(`.*bcForgedTest/bcForkUncle\.json`)
|
|
|
|
bt.skipLoad(`.*bcMultiChainTest/(ChainAtoChainB_blockorder|CallContractFromNotBestBlock)`)
|
|
|
|
bt.skipLoad(`.*bcTotalDifficultyTest/(lotsOfLeafs|lotsOfBranches|sideChainWithMoreTransactions)`)
|
|
|
|
|
|
|
|
// These are not formatted like the rest -- due to the large postState, the postState
|
|
|
|
// was replaced by a hash, instead of a genesisAlloc map
|
|
|
|
// See https://github.com/ethereum/tests/pull/616
|
|
|
|
bt.skipLoad(`.*bcExploitTest/ShanghaiLove.json`)
|
|
|
|
bt.skipLoad(`.*bcExploitTest/SuicideIssue.json`)
|
2017-07-11 11:49:14 +00:00
|
|
|
|
2019-08-15 12:59:46 +00: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-15 22:26:47 +00:00
|
|
|
|
2017-07-11 11:49:14 +00:00
|
|
|
bt.walk(t, blockTestDir, func(t *testing.T, name string, test *BlockTest) {
|
2017-08-10 09:38:17 +00:00
|
|
|
if err := bt.checkFailure(t, name, test.Run()); err != nil {
|
2017-07-11 11:49:14 +00:00
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
})
|
2016-10-05 21:55:47 +00:00
|
|
|
}
|