plugeth/tests/vm_test.go

79 lines
1.7 KiB
Go
Raw Normal View History

2015-06-10 16:04:56 +00:00
package tests
2014-10-14 22:41:00 +00:00
import (
"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-01-22 17:00:15 +00:00
const fn = "../files/VMTests/vmArithmeticTest.json"
2014-10-18 21:28:16 +00:00
RunVmTest(fn, t)
2014-10-15 15:12:26 +00:00
}
2014-10-16 16:27:05 +00:00
func TestBitwiseLogicOperation(t *testing.T) {
2015-01-22 17:00:15 +00:00
const fn = "../files/VMTests/vmBitwiseLogicOperationTest.json"
2014-10-18 21:28:16 +00:00
RunVmTest(fn, t)
2014-10-16 16:27:05 +00:00
}
func TestBlockInfo(t *testing.T) {
2015-01-22 17:00:15 +00:00
const fn = "../files/VMTests/vmBlockInfoTest.json"
2014-10-18 21:28:16 +00:00
RunVmTest(fn, t)
2014-10-16 16:27:05 +00:00
}
func TestEnvironmentalInfo(t *testing.T) {
2015-01-22 17:00:15 +00:00
const fn = "../files/VMTests/vmEnvironmentalInfoTest.json"
2014-10-18 21:28:16 +00:00
RunVmTest(fn, t)
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-01-22 17:00:15 +00:00
const fn = "../files/VMTests/vmIOandFlowOperationsTest.json"
2014-10-18 21:28:16 +00:00
RunVmTest(fn, t)
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) {
const fn = "../files/VMTests/vmLogTest.json"
RunVmTest(fn, t)
}
func TestPerformance(t *testing.T) {
const fn = "../files/VMTests/vmPerformanceTest.json"
2015-03-02 16:55:45 +00:00
RunVmTest(fn, t)
}
2014-10-16 16:27:05 +00:00
func TestPushDupSwap(t *testing.T) {
2015-01-22 17:00:15 +00:00
const fn = "../files/VMTests/vmPushDupSwapTest.json"
2014-10-18 21:28:16 +00:00
RunVmTest(fn, t)
2014-10-16 16:27:05 +00:00
}
func TestVMSha3(t *testing.T) {
2015-01-22 17:00:15 +00:00
const fn = "../files/VMTests/vmSha3Test.json"
2014-10-18 21:28:16 +00:00
RunVmTest(fn, t)
2014-10-16 11:40:46 +00:00
}
2014-10-16 16:27:05 +00:00
func TestVm(t *testing.T) {
2015-01-22 17:00:15 +00:00
const fn = "../files/VMTests/vmtests.json"
2014-10-18 21:28:16 +00:00
RunVmTest(fn, t)
2014-10-16 11:40:46 +00:00
}
2014-12-01 23:03:53 +00:00
func TestVmLog(t *testing.T) {
2015-01-22 17:00:15 +00:00
const fn = "../files/VMTests/vmLogTest.json"
RunVmTest(fn, t)
}
func TestInputLimits(t *testing.T) {
const fn = "../files/VMTests/vmInputLimits.json"
RunVmTest(fn, t)
}
func TestInputLimitsLight(t *testing.T) {
const fn = "../files/VMTests/vmInputLimitsLight.json"
RunVmTest(fn, t)
}
func TestVMRandom(t *testing.T) {
fns, _ := filepath.Glob("../files/VMTests/RandomTests/*")
for _, fn := range fns {
RunVmTest(fn, t)
}
}