2015-07-07 03:54:22 +03:00
|
|
|
// Copyright 2014 The go-ethereum Authors
|
2015-07-22 19:48:40 +03:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 03:54:22 +03:00
|
|
|
//
|
2015-07-23 19:35:11 +03:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 03:54:22 +03: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 19:48:40 +03:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 03:54:22 +03:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 19:48:40 +03:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 03:54:22 +03: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 19:48:40 +03:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 03:54:22 +03:00
|
|
|
|
2015-06-10 19:04:56 +03:00
|
|
|
package tests
|
2014-10-15 01:41:00 +03:00
|
|
|
|
|
|
|
import (
|
2015-06-10 19:34:38 +03:00
|
|
|
"path/filepath"
|
2014-10-15 01:41:00 +03:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2014-10-15 18:12:26 +03: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 19:27:05 +03:00
|
|
|
func TestVMArithmetic(t *testing.T) {
|
2015-06-10 19:34:38 +03:00
|
|
|
fn := filepath.Join(vmTestDir, "vmArithmeticTest.json")
|
2015-06-19 12:38:23 +03:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 23:10:33 +03:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2014-10-15 18:12:26 +03:00
|
|
|
}
|
|
|
|
|
2014-10-16 19:27:05 +03:00
|
|
|
func TestBitwiseLogicOperation(t *testing.T) {
|
2015-06-10 19:34:38 +03:00
|
|
|
fn := filepath.Join(vmTestDir, "vmBitwiseLogicOperationTest.json")
|
2015-06-19 12:38:23 +03:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 23:10:33 +03:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2014-10-16 19:27:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestBlockInfo(t *testing.T) {
|
2015-06-10 19:34:38 +03:00
|
|
|
fn := filepath.Join(vmTestDir, "vmBlockInfoTest.json")
|
2015-06-19 12:38:23 +03:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 23:10:33 +03:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2014-10-16 19:27:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestEnvironmentalInfo(t *testing.T) {
|
2015-06-10 19:34:38 +03:00
|
|
|
fn := filepath.Join(vmTestDir, "vmEnvironmentalInfoTest.json")
|
2015-06-19 12:38:23 +03:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 23:10:33 +03:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2014-10-16 19:27:05 +03:00
|
|
|
}
|
2014-10-16 14:40:46 +03:00
|
|
|
|
2014-10-16 19:27:05 +03:00
|
|
|
func TestFlowOperation(t *testing.T) {
|
2015-06-10 19:34:38 +03:00
|
|
|
fn := filepath.Join(vmTestDir, "vmIOandFlowOperationsTest.json")
|
2015-06-19 12:38:23 +03:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 23:10:33 +03:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2014-10-15 18:12:26 +03:00
|
|
|
}
|
2014-10-16 14:40:46 +03:00
|
|
|
|
2015-03-02 18:55:45 +02:00
|
|
|
func TestLogTest(t *testing.T) {
|
2015-06-10 19:34:38 +03:00
|
|
|
fn := filepath.Join(vmTestDir, "vmLogTest.json")
|
2015-06-19 12:38:23 +03:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 23:10:33 +03:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2015-03-02 18:55:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestPerformance(t *testing.T) {
|
2015-06-10 19:34:38 +03:00
|
|
|
fn := filepath.Join(vmTestDir, "vmPerformanceTest.json")
|
2015-06-19 12:38:23 +03:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 23:10:33 +03:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2015-03-02 18:55:45 +02:00
|
|
|
}
|
|
|
|
|
2014-10-16 19:27:05 +03:00
|
|
|
func TestPushDupSwap(t *testing.T) {
|
2015-06-10 19:34:38 +03:00
|
|
|
fn := filepath.Join(vmTestDir, "vmPushDupSwapTest.json")
|
2015-06-19 12:38:23 +03:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 23:10:33 +03:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2014-10-16 19:27:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestVMSha3(t *testing.T) {
|
2015-06-10 19:34:38 +03:00
|
|
|
fn := filepath.Join(vmTestDir, "vmSha3Test.json")
|
2015-06-19 12:38:23 +03:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 23:10:33 +03:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2014-10-16 14:40:46 +03:00
|
|
|
}
|
|
|
|
|
2014-10-16 19:27:05 +03:00
|
|
|
func TestVm(t *testing.T) {
|
2015-06-10 19:34:38 +03:00
|
|
|
fn := filepath.Join(vmTestDir, "vmtests.json")
|
2015-06-19 12:38:23 +03:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 23:10:33 +03:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2014-10-16 14:40:46 +03:00
|
|
|
}
|
2014-12-02 01:03:53 +02:00
|
|
|
|
2014-12-03 13:21:12 +02:00
|
|
|
func TestVmLog(t *testing.T) {
|
2015-06-10 19:34:38 +03:00
|
|
|
fn := filepath.Join(vmTestDir, "vmLogTest.json")
|
2015-06-19 12:38:23 +03:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 23:10:33 +03:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2014-12-03 13:21:12 +02:00
|
|
|
}
|
|
|
|
|
2015-05-15 19:49:31 +03:00
|
|
|
func TestInputLimits(t *testing.T) {
|
2015-06-10 19:34:38 +03:00
|
|
|
fn := filepath.Join(vmTestDir, "vmInputLimits.json")
|
2015-06-19 12:38:23 +03:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 23:10:33 +03:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2015-05-15 19:49:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestInputLimitsLight(t *testing.T) {
|
2015-06-10 19:34:38 +03:00
|
|
|
fn := filepath.Join(vmTestDir, "vmInputLimitsLight.json")
|
2015-06-19 12:38:23 +03:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 23:10:33 +03:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2015-04-22 13:09:21 +03:00
|
|
|
}
|
|
|
|
|
2015-05-22 00:04:46 +03:00
|
|
|
func TestVMRandom(t *testing.T) {
|
2015-06-10 19:34:38 +03:00
|
|
|
fns, _ := filepath.Glob(filepath.Join(baseDir, "RandomTests", "*"))
|
2015-05-22 00:04:46 +03:00
|
|
|
for _, fn := range fns {
|
2015-06-19 12:38:23 +03:00
|
|
|
if err := RunVmTest(fn, VmSkipTests); err != nil {
|
2015-06-10 23:10:33 +03:00
|
|
|
t.Error(err)
|
|
|
|
}
|
2015-05-22 00:04:46 +03:00
|
|
|
}
|
2015-05-15 20:17:40 +03:00
|
|
|
}
|