aboutsummaryrefslogtreecommitdiffstats
path: root/tests/state_test.go
blob: dbef7bd0cdf97e1df066149d7b9b97308e77a63e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package tests

import (
    "os"
    "path/filepath"
    "testing"
)

var stateTestDir = filepath.Join(baseDir, "StateTests")

func TestStateSystemOperations(t *testing.T) {
    fn := filepath.Join(stateTestDir, "stSystemOperationsTest.json")
    RunStateTest(fn, t)
}

func TestStateExample(t *testing.T) {
    fn := filepath.Join(stateTestDir, "stExample.json")
    RunStateTest(fn, t)
}

func TestStatePreCompiledContracts(t *testing.T) {
    fn := filepath.Join(stateTestDir, "stPreCompiledContracts.json")
    RunStateTest(fn, t)
}

func TestStateRecursiveCreate(t *testing.T) {
    fn := filepath.Join(stateTestDir, "stRecursiveCreate.json")
    RunStateTest(fn, t)
}

func TestStateSpecial(t *testing.T) {
    fn := filepath.Join(stateTestDir, "stSpecialTest.json")
    RunStateTest(fn, t)
}

func TestStateRefund(t *testing.T) {
    fn := filepath.Join(stateTestDir, "stRefundTest.json")
    RunStateTest(fn, t)
}

func TestStateBlockHash(t *testing.T) {
    fn := filepath.Join(stateTestDir, "stBlockHashTest.json")
    RunStateTest(fn, t)
}

func TestStateInitCode(t *testing.T) {
    fn := filepath.Join(stateTestDir, "stInitCodeTest.json")
    RunStateTest(fn, t)
}

func TestStateLog(t *testing.T) {
    fn := filepath.Join(stateTestDir, "stLogTests.json")
    RunStateTest(fn, t)
}

func TestStateTransaction(t *testing.T) {
    fn := filepath.Join(stateTestDir, "stTransactionTest.json")
    RunStateTest(fn, t)
}

func TestCallCreateCallCode(t *testing.T) {
    fn := filepath.Join(stateTestDir, "stCallCreateCallCodeTest.json")
    RunStateTest(fn, t)
}

func TestMemory(t *testing.T) {
    fn := filepath.Join(stateTestDir, "stMemoryTest.json")
    RunStateTest(fn, t)
}

func TestMemoryStress(t *testing.T) {
    if os.Getenv("TEST_VM_COMPLEX") == "" {
        t.Skip()
    }
    fn := filepath.Join(stateTestDir, "stMemoryStressTest.json")
    RunStateTest(fn, t)
}

func TestQuadraticComplexity(t *testing.T) {
    if os.Getenv("TEST_VM_COMPLEX") == "" {
        t.Skip()
    }
    fn := filepath.Join(stateTestDir, "stQuadraticComplexityTest.json")
    RunStateTest(fn, t)
}

func TestSolidity(t *testing.T) {
    fn := filepath.Join(stateTestDir, "stSolidityTest.json")
    RunStateTest(fn, t)
}

func TestWallet(t *testing.T) {
    fn := filepath.Join(stateTestDir, "stWalletTest.json")
    RunStateTest(fn, t)
}

func TestStateTestsRandom(t *testing.T) {
    fns, _ := filepath.Glob("./files/StateTests/RandomTests/*")
    for _, fn := range fns {
        RunStateTest(fn, t)
    }
}