| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // Copyright 2014 The go-ethereum Authors | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // This file is part of the go-ethereum library. | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2015-07-23 18:35:11 +02:00
										 |  |  | // The go-ethereum library is free software: you can redistribute it and/or modify | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02: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 18:48:40 +02:00
										 |  |  | // The go-ethereum library is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02: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 18:48:40 +02:00
										 |  |  | // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | package tests | 
					
						
							| 
									
										
										
										
											2014-10-15 00:41:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2015-08-11 00:27:30 +02:00
										 |  |  | 	"os" | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	"path/filepath" | 
					
						
							| 
									
										
										
										
											2014-10-15 00:41:00 +02:00
										 |  |  | 	"testing" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-17 23:09:36 +02:00
										 |  |  | func BenchmarkVmAckermann32Tests(b *testing.B) { | 
					
						
							|  |  |  | 	fn := filepath.Join(vmTestDir, "vmPerformanceTest.json") | 
					
						
							| 
									
										
										
										
											2015-08-30 10:19:10 +02:00
										 |  |  | 	if err := BenchVmTest(fn, bconf{"ackermann32", os.Getenv("JITFORCE") == "true", os.Getenv("JITVM") == "true"}, b); err != nil { | 
					
						
							| 
									
										
										
										
											2015-07-17 23:09:36 +02:00
										 |  |  | 		b.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func BenchmarkVmFibonacci16Tests(b *testing.B) { | 
					
						
							|  |  |  | 	fn := filepath.Join(vmTestDir, "vmPerformanceTest.json") | 
					
						
							| 
									
										
										
										
											2015-08-30 10:19:10 +02:00
										 |  |  | 	if err := BenchVmTest(fn, bconf{"fibonacci16", os.Getenv("JITFORCE") == "true", os.Getenv("JITVM") == "true"}, b); err != nil { | 
					
						
							| 
									
										
										
										
											2015-07-17 23:09:36 +02:00
										 |  |  | 		b.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-15 17:12:26 +02: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. | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | func TestVmVMArithmetic(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(vmTestDir, "vmArithmeticTest.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunVmTest(fn, VmSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-10-15 17:12:26 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | func TestVmBitwiseLogicOperation(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(vmTestDir, "vmBitwiseLogicOperationTest.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunVmTest(fn, VmSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-10-16 18:27:05 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | func TestVmBlockInfo(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(vmTestDir, "vmBlockInfoTest.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunVmTest(fn, VmSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-10-16 18:27:05 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | func TestVmEnvironmentalInfo(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(vmTestDir, "vmEnvironmentalInfoTest.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunVmTest(fn, VmSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-10-16 18:27:05 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-10-16 13:40:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | func TestVmFlowOperation(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(vmTestDir, "vmIOandFlowOperationsTest.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunVmTest(fn, VmSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-10-15 17:12:26 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-10-16 13:40:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | func TestVmLogTest(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(vmTestDir, "vmLogTest.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunVmTest(fn, VmSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-03-02 17:55:45 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | func TestVmPerformance(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(vmTestDir, "vmPerformanceTest.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunVmTest(fn, VmSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-03-02 17:55:45 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | func TestVmPushDupSwap(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(vmTestDir, "vmPushDupSwapTest.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunVmTest(fn, VmSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-10-16 18:27:05 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | func TestVmVMSha3(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(vmTestDir, "vmSha3Test.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunVmTest(fn, VmSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-10-16 13:40:46 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-16 18:27:05 +02:00
										 |  |  | func TestVm(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(vmTestDir, "vmtests.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunVmTest(fn, VmSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-10-16 13:40:46 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-12-02 00:03:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-03 12:21:12 +01:00
										 |  |  | func TestVmLog(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(vmTestDir, "vmLogTest.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunVmTest(fn, VmSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-12-03 12:21:12 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | func TestVmInputLimits(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(vmTestDir, "vmInputLimits.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunVmTest(fn, VmSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-05-15 18:49:31 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | func TestVmInputLimitsLight(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(vmTestDir, "vmInputLimitsLight.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunVmTest(fn, VmSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-04-22 12:09:21 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | func TestVmVMRandom(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fns, _ := filepath.Glob(filepath.Join(baseDir, "RandomTests", "*")) | 
					
						
							| 
									
										
										
										
											2015-05-21 23:04:46 +02:00
										 |  |  | 	for _, fn := range fns { | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 		if err := RunVmTest(fn, VmSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 			t.Error(err) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-05-21 23:04:46 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-05-15 19:17:40 +02:00
										 |  |  | } |