2014-11-11 22:14:22 +00:00
|
|
|
/*
|
|
|
|
This file is part of go-ethereum
|
|
|
|
|
|
|
|
go-ethereum is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
go-ethereum is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
/**
|
2014-11-14 23:29:27 +00:00
|
|
|
* @authors:
|
2014-11-11 22:14:22 +00:00
|
|
|
* Jeffrey Wilcke <i@jev.io>
|
2015-06-12 13:13:39 +00:00
|
|
|
* Taylor Gerring <taylor.gerring@gmail.com>
|
2014-11-11 22:14:22 +00:00
|
|
|
*/
|
|
|
|
|
2014-10-16 19:34:59 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2015-06-12 03:08:44 +00:00
|
|
|
"fmt"
|
2015-06-11 19:23:49 +00:00
|
|
|
"io/ioutil"
|
2014-10-16 19:34:59 +00:00
|
|
|
"os"
|
2015-06-12 03:08:44 +00:00
|
|
|
"path/filepath"
|
2014-10-16 19:34:59 +00:00
|
|
|
|
2015-06-12 03:08:44 +00:00
|
|
|
"github.com/codegangsta/cli"
|
2015-04-10 17:59:07 +00:00
|
|
|
"github.com/ethereum/go-ethereum/logger/glog"
|
2015-06-10 22:14:04 +00:00
|
|
|
"github.com/ethereum/go-ethereum/tests"
|
2014-10-16 19:34:59 +00:00
|
|
|
)
|
|
|
|
|
2015-06-12 03:08:44 +00:00
|
|
|
var (
|
|
|
|
continueOnError = false
|
|
|
|
testExtension = ".json"
|
|
|
|
defaultTest = "all"
|
|
|
|
defaultDir = "."
|
|
|
|
allTests = []string{"BlockTests", "StateTests", "TransactionTests", "VMTests"}
|
|
|
|
|
|
|
|
TestFlag = cli.StringFlag{
|
|
|
|
Name: "test",
|
|
|
|
Usage: "Test type (string): VMTests, TransactionTests, StateTests, BlockTests",
|
|
|
|
Value: defaultTest,
|
|
|
|
}
|
|
|
|
FileFlag = cli.StringFlag{
|
|
|
|
Name: "file",
|
|
|
|
Usage: "Test file or directory. Directories are searched for .json files 1 level deep",
|
|
|
|
Value: defaultDir,
|
|
|
|
EnvVar: "ETHEREUM_TEST_PATH",
|
|
|
|
}
|
|
|
|
ContinueOnErrorFlag = cli.BoolFlag{
|
|
|
|
Name: "continue",
|
2015-06-12 13:13:39 +00:00
|
|
|
Usage: "Continue running tests on error (true) or [default] exit immediately (false)",
|
2015-06-12 03:08:44 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
func runTest(test, file string) error {
|
|
|
|
// glog.Infoln("runTest", test, file)
|
|
|
|
var err error
|
|
|
|
switch test {
|
|
|
|
case "bc", "BlockTest", "BlockTests", "BlockChainTest":
|
|
|
|
err = tests.RunBlockTest(file)
|
|
|
|
case "st", "state", "StateTest", "StateTests":
|
|
|
|
err = tests.RunStateTest(file)
|
|
|
|
case "tx", "TransactionTest", "TransactionTests":
|
|
|
|
err = tests.RunTransactionTests(file)
|
|
|
|
case "vm", "VMTest", "VMTests":
|
|
|
|
err = tests.RunVmTest(file)
|
|
|
|
default:
|
|
|
|
err = fmt.Errorf("Invalid test type specified:", test)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-06-11 19:23:49 +00:00
|
|
|
func getFiles(path string) ([]string, error) {
|
2015-06-12 13:13:39 +00:00
|
|
|
// glog.Infoln("getFiles", path)
|
2015-06-11 19:23:49 +00:00
|
|
|
var files []string
|
|
|
|
f, err := os.Open(path)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
fi, err := f.Stat()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
switch mode := fi.Mode(); {
|
|
|
|
case mode.IsDir():
|
|
|
|
fi, _ := ioutil.ReadDir(path)
|
|
|
|
files = make([]string, len(fi))
|
|
|
|
for i, v := range fi {
|
|
|
|
// only go 1 depth and leave directory entires blank
|
2015-06-12 03:08:44 +00:00
|
|
|
if !v.IsDir() && v.Name()[len(v.Name())-len(testExtension):len(v.Name())] == testExtension {
|
|
|
|
files[i] = filepath.Join(path, v.Name())
|
2015-06-12 13:13:39 +00:00
|
|
|
// glog.Infoln("Found file", files[i])
|
2015-06-11 19:23:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
case mode.IsRegular():
|
|
|
|
files = make([]string, 1)
|
|
|
|
files[0] = path
|
|
|
|
}
|
|
|
|
|
|
|
|
return files, nil
|
|
|
|
}
|
|
|
|
|
2015-06-12 13:13:39 +00:00
|
|
|
func runSuite(test, file string) {
|
2015-06-12 03:08:44 +00:00
|
|
|
var tests []string
|
2015-06-08 20:03:21 +00:00
|
|
|
|
2015-06-12 13:13:39 +00:00
|
|
|
if test == defaultTest {
|
2015-06-12 03:08:44 +00:00
|
|
|
tests = allTests
|
|
|
|
} else {
|
2015-06-12 13:13:39 +00:00
|
|
|
tests = []string{test}
|
2015-06-11 19:23:49 +00:00
|
|
|
}
|
2015-06-08 20:03:21 +00:00
|
|
|
|
2015-06-12 03:08:44 +00:00
|
|
|
for _, curTest := range tests {
|
2015-06-12 13:13:39 +00:00
|
|
|
// glog.Infoln("runSuite", curTest, file)
|
2015-06-12 03:08:44 +00:00
|
|
|
var err error
|
|
|
|
var files []string
|
2015-06-12 13:13:39 +00:00
|
|
|
if test == defaultTest {
|
|
|
|
files, err = getFiles(filepath.Join(file, curTest))
|
2015-06-11 19:23:49 +00:00
|
|
|
|
2015-06-12 03:08:44 +00:00
|
|
|
} else {
|
2015-06-12 13:13:39 +00:00
|
|
|
files, err = getFiles(file)
|
2015-06-08 20:03:21 +00:00
|
|
|
}
|
2015-06-12 03:08:44 +00:00
|
|
|
if err != nil {
|
|
|
|
glog.Fatalln(err)
|
2015-06-10 22:14:04 +00:00
|
|
|
}
|
2015-06-11 19:23:49 +00:00
|
|
|
|
2015-06-12 03:08:44 +00:00
|
|
|
if len(files) == 0 {
|
|
|
|
glog.Warningln("No files matched path")
|
|
|
|
}
|
|
|
|
for _, testfile := range files {
|
|
|
|
// Skip blank entries
|
|
|
|
if len(testfile) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO allow io.Reader to be passed so Stdin can be piped
|
|
|
|
// RunVmTest(strings.NewReader(os.Args[2]))
|
|
|
|
// RunVmTest(os.Stdin)
|
|
|
|
err := runTest(curTest, testfile)
|
|
|
|
if err != nil {
|
|
|
|
if continueOnError {
|
|
|
|
glog.Errorln(err)
|
|
|
|
} else {
|
|
|
|
glog.Fatalln(err)
|
|
|
|
}
|
2015-06-10 22:14:04 +00:00
|
|
|
}
|
2015-06-12 03:08:44 +00:00
|
|
|
|
2015-06-10 22:14:04 +00:00
|
|
|
}
|
2015-06-08 20:03:21 +00:00
|
|
|
}
|
2014-10-16 19:34:59 +00:00
|
|
|
}
|
2015-06-12 03:08:44 +00:00
|
|
|
|
2015-06-12 13:13:39 +00:00
|
|
|
func setupApp(c *cli.Context) {
|
|
|
|
flagTest := c.GlobalString(TestFlag.Name)
|
|
|
|
flagFile := c.GlobalString(FileFlag.Name)
|
|
|
|
continueOnError = c.GlobalBool(ContinueOnErrorFlag.Name)
|
|
|
|
|
|
|
|
runSuite(flagTest, flagFile)
|
|
|
|
}
|
|
|
|
|
2015-06-12 03:08:44 +00:00
|
|
|
func main() {
|
|
|
|
glog.SetToStderr(true)
|
|
|
|
|
|
|
|
app := cli.NewApp()
|
|
|
|
app.Name = "ethtest"
|
|
|
|
app.Usage = "go-ethereum test interface"
|
2015-06-12 13:13:39 +00:00
|
|
|
app.Action = setupApp
|
|
|
|
app.Version = "0.2.0"
|
|
|
|
app.Author = "go-ethereum team"
|
|
|
|
|
2015-06-12 03:08:44 +00:00
|
|
|
app.Flags = []cli.Flag{
|
|
|
|
TestFlag,
|
|
|
|
FileFlag,
|
|
|
|
ContinueOnErrorFlag,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := app.Run(os.Args); err != nil {
|
|
|
|
glog.Fatalln(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|