aboutsummaryrefslogtreecommitdiffstats
path: root/tests/init.go
blob: 326387341b9be5ad3529d4be67f8716b5f6f56bc (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
103
104
105
106
107
108
109
110
111
package tests

import (
    "encoding/json"
    "fmt"
    "io"
    "io/ioutil"
    "net/http"
    "os"
    "path/filepath"

    // "github.com/ethereum/go-ethereum/logger/glog"
)

var (
    baseDir            = filepath.Join(".", "files")
    blockTestDir       = filepath.Join(baseDir, "BlockTests")
    stateTestDir       = filepath.Join(baseDir, "StateTests")
    transactionTestDir = filepath.Join(baseDir, "TransactionTests")
    vmTestDir          = filepath.Join(baseDir, "VMTests")

    BlockSkipTests = []string{"SimpleTx3"}
    TransSkipTests = []string{"TransactionWithHihghNonce256"}
    StateSkipTests = []string{"mload32bitBound_return", "mload32bitBound_return2"}
    VmSkipTests    = []string{}
)

// type TestRunner interface {
//  // LoadTest()
//  RunTest() error
// }

// func RunTests(bt map[string]TestRunner, skipTests []string) error {
//  // map skipped tests to boolean set
//  skipTest := make(map[string]bool, len(skipTests))
//  for _, name := range skipTests {
//      skipTest[name] = true
//  }

//  for name, test := range bt {
//      // if the test should be skipped, return
//      if skipTest[name] {
//          glog.Infoln("Skipping block test", name)
//          return nil
//      }
//      // test the block
//      if err := test.RunTest(); err != nil {
//          return err
//      }
//      glog.Infoln("Block test passed: ", name)
//  }
//  return nil
// }

func readJson(reader io.Reader, value interface{}) error {
    data, err := ioutil.ReadAll(reader)
    if err != nil {
        return fmt.Errorf("Error reading JSON file", err.Error())
    }

    if err = json.Unmarshal(data, &value); err != nil {
        if syntaxerr, ok := err.(*json.SyntaxError); ok {
            line := findLine(data, syntaxerr.Offset)
            return fmt.Errorf("JSON syntax error at line %v: %v", line, err)
        }
        return fmt.Errorf("JSON unmarshal error: %v", err)
    }
    return nil
}

func readJsonHttp(uri string, value interface{}) error {
    resp, err := http.Get(uri)
    if err != nil {
        return err
    }
    defer resp.Body.Close()

    err = readJson(resp.Body, value)
    if err != nil {
        return err
    }
    return nil
}

func readJsonFile(fn string, value interface{}) error {
    file, err := os.Open(fn)
    if err != nil {
        return err
    }
    defer file.Close()

    err = readJson(file, value)
    if err != nil {
        return fmt.Errorf("%s in file %s", err.Error(), fn)
    }
    return nil
}

// findLine returns the line number for the given offset into data.
func findLine(data []byte, offset int64) (line int) {
    line = 1
    for i, r := range string(data) {
        if int64(i) >= offset {
            return
        }
        if r == '\n' {
            line++
        }
    }
    return
}