2015-07-06 19:54:22 -05:00
|
|
|
// Copyright 2014 The go-ethereum Authors
|
2015-07-22 11:48:40 -05:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-06 19:54:22 -05:00
|
|
|
//
|
2015-07-23 11:35:11 -05:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-06 19:54:22 -05:00
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2015-07-22 11:48:40 -05:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-06 19:54:22 -05:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 11:48:40 -05:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-06 19:54:22 -05:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 11:48:40 -05:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-06 19:54:22 -05:00
|
|
|
|
2015-06-10 11:04:56 -05:00
|
|
|
package tests
|
2014-10-14 17:41:00 -05:00
|
|
|
|
|
|
|
import (
|
2015-08-10 17:27:30 -05:00
|
|
|
"os"
|
2015-06-10 11:34:38 -05:00
|
|
|
"path/filepath"
|
2014-10-14 17:41:00 -05:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2015-07-17 16:09:36 -05:00
|
|
|
func BenchmarkVmAckermann32Tests(b *testing.B) {
|
|
|
|
fn := filepath.Join(vmTestDir, "vmPerformanceTest.json")
|
2015-08-30 03:19:10 -05:00
|
|
|
if err := BenchVmTest(fn, bconf{"ackermann32", os.Getenv("JITFORCE") == "true", os.Getenv("JITVM") == "true"}, b); err != nil {
|
2015-07-17 16:09:36 -05:00
|
|
|
b.Error(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkVmFibonacci16Tests(b *testing.B) {
|
|
|
|
fn := filepath.Join(vmTestDir, "vmPerformanceTest.json")
|
2015-08-30 03:19:10 -05:00
|
|
|
if err := BenchVmTest(fn, bconf{"fibonacci16", os.Getenv("JITFORCE") == "true", os.Getenv("JITVM") == "true"}, b); err != nil {
|
2015-07-17 16:09:36 -05:00
|
|
|
b.Error(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-15 10:12:26 -05:00
|
|
|
// I've created a new function for each tests so it's easier to identify where the problem lies if any of them fail.
|
2014-10-16 11:27:05 -05:00
|
|
|
func TestVMArithmetic(t *testing.T) {
|
2015-06-10 11:34:38 -05:00
|
|
|
fn := filepath.Join(vmTestDir, "vmArithmeticTest.json")
|
2015-06-19 04:38:23 -05:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 15:10:33 -05:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2014-10-15 10:12:26 -05:00
|
|
|
}
|
|
|
|
|
2014-10-16 11:27:05 -05:00
|
|
|
func TestBitwiseLogicOperation(t *testing.T) {
|
2015-06-10 11:34:38 -05:00
|
|
|
fn := filepath.Join(vmTestDir, "vmBitwiseLogicOperationTest.json")
|
2015-06-19 04:38:23 -05:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 15:10:33 -05:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2014-10-16 11:27:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestBlockInfo(t *testing.T) {
|
2015-06-10 11:34:38 -05:00
|
|
|
fn := filepath.Join(vmTestDir, "vmBlockInfoTest.json")
|
2015-06-19 04:38:23 -05:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 15:10:33 -05:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2014-10-16 11:27:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestEnvironmentalInfo(t *testing.T) {
|
2015-06-10 11:34:38 -05:00
|
|
|
fn := filepath.Join(vmTestDir, "vmEnvironmentalInfoTest.json")
|
2015-06-19 04:38:23 -05:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 15:10:33 -05:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2014-10-16 11:27:05 -05:00
|
|
|
}
|
2014-10-16 06:40:46 -05:00
|
|
|
|
2014-10-16 11:27:05 -05:00
|
|
|
func TestFlowOperation(t *testing.T) {
|
2015-06-10 11:34:38 -05:00
|
|
|
fn := filepath.Join(vmTestDir, "vmIOandFlowOperationsTest.json")
|
2015-06-19 04:38:23 -05:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 15:10:33 -05:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2014-10-15 10:12:26 -05:00
|
|
|
}
|
2014-10-16 06:40:46 -05:00
|
|
|
|
2015-03-02 10:55:45 -06:00
|
|
|
func TestLogTest(t *testing.T) {
|
2015-06-10 11:34:38 -05:00
|
|
|
fn := filepath.Join(vmTestDir, "vmLogTest.json")
|
2015-06-19 04:38:23 -05:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 15:10:33 -05:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2015-03-02 10:55:45 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestPerformance(t *testing.T) {
|
2015-06-10 11:34:38 -05:00
|
|
|
fn := filepath.Join(vmTestDir, "vmPerformanceTest.json")
|
2015-06-19 04:38:23 -05:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 15:10:33 -05:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2015-03-02 10:55:45 -06:00
|
|
|
}
|
|
|
|
|
2014-10-16 11:27:05 -05:00
|
|
|
func TestPushDupSwap(t *testing.T) {
|
2015-06-10 11:34:38 -05:00
|
|
|
fn := filepath.Join(vmTestDir, "vmPushDupSwapTest.json")
|
2015-06-19 04:38:23 -05:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 15:10:33 -05:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2014-10-16 11:27:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestVMSha3(t *testing.T) {
|
2015-06-10 11:34:38 -05:00
|
|
|
fn := filepath.Join(vmTestDir, "vmSha3Test.json")
|
2015-06-19 04:38:23 -05:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 15:10:33 -05:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2014-10-16 06:40:46 -05:00
|
|
|
}
|
|
|
|
|
2014-10-16 11:27:05 -05:00
|
|
|
func TestVm(t *testing.T) {
|
2015-06-10 11:34:38 -05:00
|
|
|
fn := filepath.Join(vmTestDir, "vmtests.json")
|
2015-06-19 04:38:23 -05:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 15:10:33 -05:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2014-10-16 06:40:46 -05:00
|
|
|
}
|
2014-12-01 17:03:53 -06:00
|
|
|
|
2014-12-03 05:21:12 -06:00
|
|
|
func TestVmLog(t *testing.T) {
|
2015-06-10 11:34:38 -05:00
|
|
|
fn := filepath.Join(vmTestDir, "vmLogTest.json")
|
2015-06-19 04:38:23 -05:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 15:10:33 -05:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2014-12-03 05:21:12 -06:00
|
|
|
}
|
|
|
|
|
2015-05-15 11:49:31 -05:00
|
|
|
func TestInputLimits(t *testing.T) {
|
2015-06-10 11:34:38 -05:00
|
|
|
fn := filepath.Join(vmTestDir, "vmInputLimits.json")
|
2015-06-19 04:38:23 -05:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 15:10:33 -05:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2015-05-15 11:49:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestInputLimitsLight(t *testing.T) {
|
2015-06-10 11:34:38 -05:00
|
|
|
fn := filepath.Join(vmTestDir, "vmInputLimitsLight.json")
|
2015-06-19 04:38:23 -05:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 15:10:33 -05:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2015-04-22 05:09:21 -05:00
|
|
|
}
|
|
|
|
|
2015-05-21 16:04:46 -05:00
|
|
|
func TestVMRandom(t *testing.T) {
|
2015-06-10 11:34:38 -05:00
|
|
|
fns, _ := filepath.Glob(filepath.Join(baseDir, "RandomTests", "*"))
|
2015-05-21 16:04:46 -05:00
|
|
|
for _, fn := range fns {
|
2015-06-19 04:38:23 -05:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 15:10:33 -05:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2015-05-21 16:04:46 -05:00
|
|
|
}
|
2015-05-15 12:17:40 -05:00
|
|
|
}
|