aboutsummaryrefslogtreecommitdiffstats
path: root/tests/transaction_test.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@users.noreply.github.com>2017-07-11 19:49:14 +0800
committerGitHub <noreply@github.com>2017-07-11 19:49:14 +0800
commit225de7ca0a9e861696a5a43b666090b574c4c769 (patch)
tree68aff6fb74fece37626ced330fa9c5da91b483a4 /tests/transaction_test.go
parentbd01cd7183e771984fb9c008e7a7ebf0a0c3f9ba (diff)
downloadgo-tangerine-225de7ca0a9e861696a5a43b666090b574c4c769.tar
go-tangerine-225de7ca0a9e861696a5a43b666090b574c4c769.tar.gz
go-tangerine-225de7ca0a9e861696a5a43b666090b574c4c769.tar.bz2
go-tangerine-225de7ca0a9e861696a5a43b666090b574c4c769.tar.lz
go-tangerine-225de7ca0a9e861696a5a43b666090b574c4c769.tar.xz
go-tangerine-225de7ca0a9e861696a5a43b666090b574c4c769.tar.zst
go-tangerine-225de7ca0a9e861696a5a43b666090b574c4c769.zip
tests: update tests and implement general state tests (#14734)
Tests are now included as a submodule. This should make updating easier and removes ~60MB of JSON data from the working copy. State tests are replaced by General State Tests, which run the same test with multiple fork configurations. With the new test runner, consensus tests are run as subtests by walking json files. Many hex issues have been fixed upstream since the last update and most custom parsing code is replaced by existing JSON hex types. Tests can now be marked as 'expected failures', ensuring that fixes for those tests will trigger an update to test configuration. The new test runner also supports parallel execution and the -short flag.
Diffstat (limited to 'tests/transaction_test.go')
-rw-r--r--tests/transaction_test.go118
1 files changed, 23 insertions, 95 deletions
diff --git a/tests/transaction_test.go b/tests/transaction_test.go
index 317355eb3..72d43c0ec 100644
--- a/tests/transaction_test.go
+++ b/tests/transaction_test.go
@@ -18,109 +18,37 @@ package tests
import (
"math/big"
- "path/filepath"
"testing"
"github.com/ethereum/go-ethereum/params"
)
-func TestTransactions(t *testing.T) {
- config := &params.ChainConfig{}
- err := RunTransactionTests(config, filepath.Join(transactionTestDir, "ttTransactionTest.json"), TransSkipTests)
- if err != nil {
- t.Fatal(err)
- }
-}
-
-func TestWrongRLPTransactions(t *testing.T) {
- config := &params.ChainConfig{}
- err := RunTransactionTests(config, filepath.Join(transactionTestDir, "ttWrongRLPTransaction.json"), TransSkipTests)
- if err != nil {
- t.Fatal(err)
- }
-}
-
-func Test10MBTransactions(t *testing.T) {
- config := &params.ChainConfig{}
- err := RunTransactionTests(config, filepath.Join(transactionTestDir, "tt10mbDataField.json"), TransSkipTests)
- if err != nil {
- t.Fatal(err)
- }
-}
-
-// homestead tests
-func TestHomesteadTransactions(t *testing.T) {
- config := &params.ChainConfig{
- HomesteadBlock: big.NewInt(0),
- }
- err := RunTransactionTests(config, filepath.Join(transactionTestDir, "Homestead", "ttTransactionTest.json"), TransSkipTests)
- if err != nil {
- t.Fatal(err)
- }
-}
-
-func TestHomesteadWrongRLPTransactions(t *testing.T) {
- config := &params.ChainConfig{
- HomesteadBlock: big.NewInt(0),
- }
- err := RunTransactionTests(config, filepath.Join(transactionTestDir, "Homestead", "ttWrongRLPTransaction.json"), TransSkipTests)
- if err != nil {
- t.Fatal(err)
- }
-}
-
-func TestHomestead10MBTransactions(t *testing.T) {
- config := &params.ChainConfig{
- HomesteadBlock: big.NewInt(0),
- }
- err := RunTransactionTests(config, filepath.Join(transactionTestDir, "Homestead", "tt10mbDataField.json"), TransSkipTests)
- if err != nil {
- t.Fatal(err)
- }
-}
+func TestTransaction(t *testing.T) {
+ t.Parallel()
-func TestHomesteadVitalik(t *testing.T) {
- config := &params.ChainConfig{
+ txt := new(testMatcher)
+ txt.config(`^Homestead/`, params.ChainConfig{
HomesteadBlock: big.NewInt(0),
- }
- err := RunTransactionTests(config, filepath.Join(transactionTestDir, "Homestead", "ttTransactionTestEip155VitaliksTests.json"), TransSkipTests)
- if err != nil {
- t.Fatal(err)
- }
-}
-
-func TestTxEIP155Transaction(t *testing.T) {
- config := &params.ChainConfig{
- ChainId: big.NewInt(1),
+ })
+ txt.config(`^EIP155/`, params.ChainConfig{
HomesteadBlock: big.NewInt(0),
+ EIP150Block: big.NewInt(0),
EIP155Block: big.NewInt(0),
- }
- err := RunTransactionTests(config, filepath.Join(transactionTestDir, "EIP155", "ttTransactionTest.json"), TransSkipTests)
- if err != nil {
- t.Fatal(err)
- }
-}
-
-func TestTxEIP155VitaliksTests(t *testing.T) {
- config := &params.ChainConfig{
+ EIP158Block: big.NewInt(0),
ChainId: big.NewInt(1),
- HomesteadBlock: big.NewInt(0),
- EIP155Block: big.NewInt(0),
- }
- err := RunTransactionTests(config, filepath.Join(transactionTestDir, "EIP155", "ttTransactionTestEip155VitaliksTests.json"), TransSkipTests)
- if err != nil {
- t.Fatal(err)
- }
-}
-
-func TestTxEIP155VRule(t *testing.T) {
- config := &params.ChainConfig{
- ChainId: big.NewInt(1),
- HomesteadBlock: big.NewInt(0),
- EIP155Block: big.NewInt(0),
- }
- err := RunTransactionTests(config, filepath.Join(transactionTestDir, "EIP155", "ttTransactionTestVRule.json"), TransSkipTests)
- if err != nil {
- t.Fatal(err)
- }
+ })
+ txt.config(`^Metropolis/`, params.ChainConfig{
+ HomesteadBlock: big.NewInt(0),
+ EIP150Block: big.NewInt(0),
+ EIP155Block: big.NewInt(0),
+ EIP158Block: big.NewInt(0),
+ MetropolisBlock: big.NewInt(0),
+ })
+
+ txt.walk(t, transactionTestDir, func(t *testing.T, name string, test *TransactionTest) {
+ cfg := txt.findConfig(name)
+ if err := txt.checkFailure(t, name, test.Run(cfg)); err != nil {
+ t.Error(err)
+ }
+ })
}