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