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/cmd/ethtest/main.go

188 lines
4.2 KiB

/*
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/>.
*/
/**
10 years ago
* @authors:
* Jeffrey Wilcke <i@jev.io>
9 years ago
* Taylor Gerring <taylor.gerring@gmail.com>
*/
10 years ago
package main
import (
"fmt"
"io/ioutil"
10 years ago
"os"
"path/filepath"
10 years ago
"github.com/codegangsta/cli"
10 years ago
"github.com/ethereum/go-ethereum/logger/glog"
"github.com/ethereum/go-ethereum/tests"
10 years ago
)
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",
9 years ago
Usage: "Continue running tests on error (true) or [default] exit immediately (false)",
}
)
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
}
func getFiles(path string) ([]string, error) {
9 years ago
// glog.Infoln("getFiles", path)
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
if !v.IsDir() && v.Name()[len(v.Name())-len(testExtension):len(v.Name())] == testExtension {
files[i] = filepath.Join(path, v.Name())
9 years ago
// glog.Infoln("Found file", files[i])
}
}
case mode.IsRegular():
files = make([]string, 1)
files[0] = path
}
return files, nil
}
9 years ago
func runSuite(test, file string) {
var tests []string
9 years ago
if test == defaultTest {
tests = allTests
} else {
9 years ago
tests = []string{test}
}
for _, curTest := range tests {
9 years ago
// glog.Infoln("runSuite", curTest, file)
var err error
var files []string
9 years ago
if test == defaultTest {
files, err = getFiles(filepath.Join(file, curTest))
} else {
9 years ago
files, err = getFiles(file)
}
if err != nil {
glog.Fatalln(err)
}
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)
}
}
}
}
10 years ago
}
9 years ago
func setupApp(c *cli.Context) {
flagTest := c.GlobalString(TestFlag.Name)
flagFile := c.GlobalString(FileFlag.Name)
continueOnError = c.GlobalBool(ContinueOnErrorFlag.Name)
runSuite(flagTest, flagFile)
}
func main() {
glog.SetToStderr(true)
app := cli.NewApp()
app.Name = "ethtest"
app.Usage = "go-ethereum test interface"
9 years ago
app.Action = setupApp
app.Version = "0.2.0"
app.Author = "go-ethereum team"
app.Flags = []cli.Flag{
TestFlag,
FileFlag,
ContinueOnErrorFlag,
}
if err := app.Run(os.Args); err != nil {
glog.Fatalln(err)
}
}