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