aboutsummaryrefslogtreecommitdiffstats
path: root/tests/init.go
blob: e6644ae60d4a8ec0a7064a83fdba157f463130c0 (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
package tests

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

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")
)

func readJSON(reader io.Reader, value interface{}) error {
    data, err := ioutil.ReadAll(reader)
    err = json.Unmarshal(data, &value)
    if err != nil {
        return err
    }
    return nil
}

func CreateHttpTests(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 CreateFileTests(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 err
    }
    return nil
}