Official Go implementation of the Ethereum protocol
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-ethereum/tests/init.go

56 lines
1020 B

package tests
10 years ago
import (
"encoding/json"
"io"
"io/ioutil"
"net/http"
"os"
10 years ago
"path/filepath"
10 years ago
)
10 years ago
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 {
10 years ago
data, err := ioutil.ReadAll(reader)
err = json.Unmarshal(data, &value)
if err != nil {
return err
10 years ago
}
return nil
10 years ago
}
func CreateHttpTests(uri string, value interface{}) error {
10 years ago
resp, err := http.Get(uri)
if err != nil {
return err
10 years ago
}
defer resp.Body.Close()
err = readJSON(resp.Body, value)
if err != nil {
return err
}
return nil
10 years ago
}
func CreateFileTests(fn string, value interface{}) error {
10 years ago
file, err := os.Open(fn)
if err != nil {
return err
10 years ago
}
defer file.Close()
err = readJSON(file, value)
if err != nil {
return err
}
return nil
}