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.
|
|
|
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
|
|
|
|
}
|