quorum/tests/vm_test.go

124 lines
3.2 KiB
Go
Raw Normal View History

2015-07-06 17:54:22 -07:00
// Copyright 2014 The go-ethereum Authors
// 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 Lesser 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 Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
2015-06-10 09:04:56 -07:00
package tests
2014-10-14 15:41:00 -07:00
import (
2015-06-10 09:34:38 -07:00
"path/filepath"
2014-10-14 15:41:00 -07:00
"testing"
)
2014-10-15 08:12:26 -07: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 09:27:05 -07:00
func TestVMArithmetic(t *testing.T) {
2015-06-10 09:34:38 -07:00
fn := filepath.Join(vmTestDir, "vmArithmeticTest.json")
if err := RunVmTest(fn, VmSkipTests); err != nil {
t.Error(err)
}
2014-10-15 08:12:26 -07:00
}
2014-10-16 09:27:05 -07:00
func TestBitwiseLogicOperation(t *testing.T) {
2015-06-10 09:34:38 -07:00
fn := filepath.Join(vmTestDir, "vmBitwiseLogicOperationTest.json")
if err := RunVmTest(fn, VmSkipTests); err != nil {
t.Error(err)
}
2014-10-16 09:27:05 -07:00
}
func TestBlockInfo(t *testing.T) {
2015-06-10 09:34:38 -07:00
fn := filepath.Join(vmTestDir, "vmBlockInfoTest.json")
if err := RunVmTest(fn, VmSkipTests); err != nil {
t.Error(err)
}
2014-10-16 09:27:05 -07:00
}
func TestEnvironmentalInfo(t *testing.T) {
2015-06-10 09:34:38 -07:00
fn := filepath.Join(vmTestDir, "vmEnvironmentalInfoTest.json")
if err := RunVmTest(fn, VmSkipTests); err != nil {
t.Error(err)
}
2014-10-16 09:27:05 -07:00
}
2014-10-16 04:40:46 -07:00
2014-10-16 09:27:05 -07:00
func TestFlowOperation(t *testing.T) {
2015-06-10 09:34:38 -07:00
fn := filepath.Join(vmTestDir, "vmIOandFlowOperationsTest.json")
if err := RunVmTest(fn, VmSkipTests); err != nil {
t.Error(err)
}
2014-10-15 08:12:26 -07:00
}
2014-10-16 04:40:46 -07:00
2015-03-02 08:55:45 -08:00
func TestLogTest(t *testing.T) {
2015-06-10 09:34:38 -07:00
fn := filepath.Join(vmTestDir, "vmLogTest.json")
if err := RunVmTest(fn, VmSkipTests); err != nil {
t.Error(err)
}
2015-03-02 08:55:45 -08:00
}
func TestPerformance(t *testing.T) {
2015-06-10 09:34:38 -07:00
fn := filepath.Join(vmTestDir, "vmPerformanceTest.json")
if err := RunVmTest(fn, VmSkipTests); err != nil {
t.Error(err)
}
2015-03-02 08:55:45 -08:00
}
2014-10-16 09:27:05 -07:00
func TestPushDupSwap(t *testing.T) {
2015-06-10 09:34:38 -07:00
fn := filepath.Join(vmTestDir, "vmPushDupSwapTest.json")
if err := RunVmTest(fn, VmSkipTests); err != nil {
t.Error(err)
}
2014-10-16 09:27:05 -07:00
}
func TestVMSha3(t *testing.T) {
2015-06-10 09:34:38 -07:00
fn := filepath.Join(vmTestDir, "vmSha3Test.json")
if err := RunVmTest(fn, VmSkipTests); err != nil {
t.Error(err)
}
2014-10-16 04:40:46 -07:00
}
2014-10-16 09:27:05 -07:00
func TestVm(t *testing.T) {
2015-06-10 09:34:38 -07:00
fn := filepath.Join(vmTestDir, "vmtests.json")
if err := RunVmTest(fn, VmSkipTests); err != nil {
t.Error(err)
}
2014-10-16 04:40:46 -07:00
}
2014-12-01 15:03:53 -08:00
func TestVmLog(t *testing.T) {
2015-06-10 09:34:38 -07:00
fn := filepath.Join(vmTestDir, "vmLogTest.json")
if err := RunVmTest(fn, VmSkipTests); err != nil {
t.Error(err)
}
}
func TestInputLimits(t *testing.T) {
2015-06-10 09:34:38 -07:00
fn := filepath.Join(vmTestDir, "vmInputLimits.json")
if err := RunVmTest(fn, VmSkipTests); err != nil {
t.Error(err)
}
}
func TestInputLimitsLight(t *testing.T) {
2015-06-10 09:34:38 -07:00
fn := filepath.Join(vmTestDir, "vmInputLimitsLight.json")
if err := RunVmTest(fn, VmSkipTests); err != nil {
t.Error(err)
}
}
func TestVMRandom(t *testing.T) {
2015-06-10 09:34:38 -07:00
fns, _ := filepath.Glob(filepath.Join(baseDir, "RandomTests", "*"))
for _, fn := range fns {
if err := RunVmTest(fn, VmSkipTests); err != nil {
t.Error(err)
}
}
}