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