plugeth/tests/init.go

61 lines
1.2 KiB
Go
Raw Normal View History

2015-06-10 17:00:54 +00:00
package tests
2014-10-18 21:20:25 +00:00
import (
"encoding/json"
"io"
"io/ioutil"
"net/http"
"os"
2015-06-10 20:29:42 +00:00
"path/filepath"
2014-10-18 21:20:25 +00:00
)
2015-06-10 20:29:42 +00:00
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{}
transSkipTests = []string{"TransactionWithHihghNonce256"}
stateSkipTests = []string{"mload32bitBound_return", "mload32bitBound_return2"}
vmSkipTests = []string{}
2015-06-10 20:29:42 +00:00
)
2015-06-10 17:00:54 +00:00
func readJSON(reader io.Reader, value interface{}) error {
2014-10-18 21:20:25 +00:00
data, err := ioutil.ReadAll(reader)
err = json.Unmarshal(data, &value)
if err != nil {
return err
2014-10-18 21:20:25 +00:00
}
return nil
2014-10-18 21:20:25 +00:00
}
func CreateHttpTests(uri string, value interface{}) error {
2014-10-18 21:20:25 +00:00
resp, err := http.Get(uri)
if err != nil {
return err
2014-10-18 21:20:25 +00:00
}
defer resp.Body.Close()
err = readJSON(resp.Body, value)
if err != nil {
return err
}
return nil
2014-10-18 21:20:25 +00:00
}
func CreateFileTests(fn string, value interface{}) error {
2014-10-18 21:20:25 +00:00
file, err := os.Open(fn)
if err != nil {
return err
2014-10-18 21:20:25 +00:00
}
defer file.Close()
err = readJSON(file, value)
if err != nil {
return err
}
return nil
}