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

100 lines
2.1 KiB

package tests
10 years ago
import (
"encoding/json"
9 years ago
"fmt"
10 years ago
"io"
"io/ioutil"
"net/http"
"os"
9 years ago
"path/filepath"
"github.com/ethereum/go-ethereum/core"
10 years ago
)
9 years ago
var (
baseDir = filepath.Join(".", "files")
blockTestDir = filepath.Join(baseDir, "BlockchainTests")
9 years ago
stateTestDir = filepath.Join(baseDir, "StateTests")
transactionTestDir = filepath.Join(baseDir, "TransactionTests")
vmTestDir = filepath.Join(baseDir, "VMTests")
BlockSkipTests = []string{
"SimpleTx3",
// TODO: check why these fail
"BLOCK__RandomByteAtTheEnd",
"TRANSCT__RandomByteAtTheEnd",
"BLOCK__ZeroByteAtTheEnd",
"TRANSCT__ZeroByteAtTheEnd",
// TODO: why does this fail? should be check in ethash now
"DifficultyIsZero",
// TODO: why does this fail?
"wrongMixHash",
}
9 years ago
TransSkipTests = []string{"TransactionWithHihghNonce256"}
StateSkipTests = []string{"mload32bitBound_return", "mload32bitBound_return2"}
VmSkipTests = []string{}
9 years ago
)
9 years ago
func readJson(reader io.Reader, value interface{}) error {
10 years ago
data, err := ioutil.ReadAll(reader)
if err != nil {
9 years ago
return fmt.Errorf("Error reading JSON file", err.Error())
}
core.DisableBadBlockReporting = true
9 years ago
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)
10 years ago
}
return nil
10 years ago
}
9 years ago
func readJsonHttp(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()
9 years ago
err = readJson(resp.Body, value)
if err != nil {
return err
}
return nil
10 years ago
}
9 years ago
func readJsonFile(fn string, value interface{}) error {
10 years ago
file, err := os.Open(fn)
if err != nil {
return err
10 years ago
}
defer file.Close()
9 years ago
err = readJson(file, value)
if err != nil {
9 years ago
return fmt.Errorf("%s in file %s", err.Error(), fn)
}
return nil
}
9 years ago
// 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
}