| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // Copyright 2015 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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | import ( | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 	"math/big" | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	"os" | 
					
						
							|  |  |  | 	"path/filepath" | 
					
						
							|  |  |  | 	"testing" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-17 23:09:36 +02:00
										 |  |  | func BenchmarkStateCall1024(b *testing.B) { | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "stCallCreateCallCodeTest.json") | 
					
						
							| 
									
										
										
										
											2015-08-11 00:27:30 +02:00
										 |  |  | 	if err := BenchVmTest(fn, bconf{"Call1024BalanceTooLow", true, os.Getenv("JITVM") == "true"}, b); err != nil { | 
					
						
							| 
									
										
										
										
											2015-07-17 23:09:36 +02:00
										 |  |  | 		b.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | func TestStateSystemOperations(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 		HomesteadBlock: big.NewInt(1150000), | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stSystemOperationsTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestStateExample(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 		HomesteadBlock: big.NewInt(1150000), | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stExample.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestStatePreCompiledContracts(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 		HomesteadBlock: big.NewInt(1150000), | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stPreCompiledContracts.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestStateRecursiveCreate(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 		HomesteadBlock: big.NewInt(1150000), | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stRecursiveCreate.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestStateSpecial(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 		HomesteadBlock: big.NewInt(1150000), | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stSpecialTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestStateRefund(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 		HomesteadBlock: big.NewInt(1150000), | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stRefundTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestStateBlockHash(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 		HomesteadBlock: big.NewInt(1150000), | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stBlockHashTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestStateInitCode(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 		HomesteadBlock: big.NewInt(1150000), | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stInitCodeTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestStateLog(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 		HomesteadBlock: big.NewInt(1150000), | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stLogTests.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestStateTransaction(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 		HomesteadBlock: big.NewInt(1150000), | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stTransactionTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-19 23:50:00 +01:00
										 |  |  | func TestStateTransition(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 		HomesteadBlock: big.NewInt(1150000), | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:50:00 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "stTransitionTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2016-01-19 23:50:00 +01:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | func TestCallCreateCallCode(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 		HomesteadBlock: big.NewInt(1150000), | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stCallCreateCallCodeTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-21 11:34:02 +02:00
										 |  |  | func TestCallCodes(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 		HomesteadBlock: big.NewInt(1150000), | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-21 11:34:02 +02:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stCallCodes.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-09-21 11:34:02 +02:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-27 15:40:29 +01:00
										 |  |  | func TestDelegateCall(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 		HomesteadBlock: big.NewInt(1150000), | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-11-27 15:40:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stDelegatecallTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-11-27 15:40:29 +01:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | func TestMemory(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 		HomesteadBlock: big.NewInt(1150000), | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stMemoryTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestMemoryStress(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 		HomesteadBlock: big.NewInt(1150000), | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | 	if os.Getenv("TEST_VM_COMPLEX") == "" { | 
					
						
							|  |  |  | 		t.Skip() | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stMemoryStressTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestQuadraticComplexity(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 		HomesteadBlock: big.NewInt(1150000), | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | 	if os.Getenv("TEST_VM_COMPLEX") == "" { | 
					
						
							|  |  |  | 		t.Skip() | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stQuadraticComplexityTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestSolidity(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 		HomesteadBlock: big.NewInt(1150000), | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stSolidityTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestWallet(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 		HomesteadBlock: big.NewInt(1150000), | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stWalletTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestStateTestsRandom(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 		HomesteadBlock: big.NewInt(1150000), | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fns, _ := filepath.Glob("./files/StateTests/RandomTests/*") | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | 	for _, fn := range fns { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 		if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 			t.Error(fn, err) | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | // homestead tests | 
					
						
							|  |  |  | func TestHomesteadStateSystemOperations(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock: new(big.Int), | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "Homestead", "stSystemOperationsTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestHomesteadStatePreCompiledContracts(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock: new(big.Int), | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "Homestead", "stPreCompiledContracts.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestHomesteadStateRecursiveCreate(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock: new(big.Int), | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "Homestead", "stSpecialTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestHomesteadStateRefund(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock: new(big.Int), | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "Homestead", "stRefundTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestHomesteadStateInitCode(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock: new(big.Int), | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "Homestead", "stInitCodeTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestHomesteadStateLog(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock: new(big.Int), | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "Homestead", "stLogTests.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestHomesteadStateTransaction(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock: new(big.Int), | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "Homestead", "stTransactionTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestHomesteadCallCreateCallCode(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock: new(big.Int), | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "Homestead", "stCallCreateCallCodeTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestHomesteadCallCodes(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock: new(big.Int), | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "Homestead", "stCallCodes.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestHomesteadMemory(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock: new(big.Int), | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "Homestead", "stMemoryTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestHomesteadMemoryStress(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock: new(big.Int), | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if os.Getenv("TEST_VM_COMPLEX") == "" { | 
					
						
							|  |  |  | 		t.Skip() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "Homestead", "stMemoryStressTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestHomesteadQuadraticComplexity(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock: new(big.Int), | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if os.Getenv("TEST_VM_COMPLEX") == "" { | 
					
						
							|  |  |  | 		t.Skip() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "Homestead", "stQuadraticComplexityTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestHomesteadWallet(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock: new(big.Int), | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "Homestead", "stWalletTest.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestHomesteadDelegateCodes(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock: new(big.Int), | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "Homestead", "stCallDelegateCodes.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestHomesteadDelegateCodesCallCode(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock: new(big.Int), | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "Homestead", "stCallDelegateCodesCallCode.json") | 
					
						
							| 
									
										
										
										
											2016-03-01 23:32:43 +01:00
										 |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2016-01-19 23:48:50 +01:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-10-05 23:55:47 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | func TestHomesteadBounds(t *testing.T) { | 
					
						
							|  |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock: new(big.Int), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "Homestead", "stBoundsTest.json") | 
					
						
							|  |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							|  |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-10-08 00:23:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | // EIP150 tests | 
					
						
							|  |  |  | func TestEIP150Specific(t *testing.T) { | 
					
						
							|  |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock:           new(big.Int), | 
					
						
							|  |  |  | 		HomesteadGasRepriceBlock: big.NewInt(2457000), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "EIP150", "stEIPSpecificTest.json") | 
					
						
							|  |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							|  |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestEIP150SingleCodeGasPrice(t *testing.T) { | 
					
						
							|  |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock:           new(big.Int), | 
					
						
							|  |  |  | 		HomesteadGasRepriceBlock: big.NewInt(2457000), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "EIP150", "stEIPSingleCodeGasPrices.json") | 
					
						
							|  |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							|  |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestEIP150MemExpandingCalls(t *testing.T) { | 
					
						
							|  |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock:           new(big.Int), | 
					
						
							|  |  |  | 		HomesteadGasRepriceBlock: big.NewInt(2457000), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "EIP150", "stMemExpandingEIPCalls.json") | 
					
						
							|  |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							|  |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestEIP150HomesteadStateSystemOperations(t *testing.T) { | 
					
						
							|  |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock:           new(big.Int), | 
					
						
							|  |  |  | 		HomesteadGasRepriceBlock: big.NewInt(2457000), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "EIP150", "Homestead", "stSystemOperationsTest.json") | 
					
						
							|  |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							|  |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestEIP150HomesteadStatePreCompiledContracts(t *testing.T) { | 
					
						
							|  |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock:           new(big.Int), | 
					
						
							|  |  |  | 		HomesteadGasRepriceBlock: big.NewInt(2457000), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "EIP150", "Homestead", "stPreCompiledContracts.json") | 
					
						
							|  |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							|  |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestEIP150HomesteadStateRecursiveCreate(t *testing.T) { | 
					
						
							|  |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock:           new(big.Int), | 
					
						
							|  |  |  | 		HomesteadGasRepriceBlock: big.NewInt(2457000), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "EIP150", "Homestead", "stSpecialTest.json") | 
					
						
							|  |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							|  |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestEIP150HomesteadStateRefund(t *testing.T) { | 
					
						
							|  |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock:           new(big.Int), | 
					
						
							|  |  |  | 		HomesteadGasRepriceBlock: big.NewInt(2457000), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "EIP150", "Homestead", "stRefundTest.json") | 
					
						
							|  |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							|  |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestEIP150HomesteadStateInitCode(t *testing.T) { | 
					
						
							|  |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock:           new(big.Int), | 
					
						
							|  |  |  | 		HomesteadGasRepriceBlock: big.NewInt(2457000), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "EIP150", "Homestead", "stInitCodeTest.json") | 
					
						
							|  |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							|  |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestEIP150HomesteadStateLog(t *testing.T) { | 
					
						
							|  |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock:           new(big.Int), | 
					
						
							|  |  |  | 		HomesteadGasRepriceBlock: big.NewInt(2457000), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "EIP150", "Homestead", "stLogTests.json") | 
					
						
							|  |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							|  |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestEIP150HomesteadStateTransaction(t *testing.T) { | 
					
						
							|  |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock:           new(big.Int), | 
					
						
							|  |  |  | 		HomesteadGasRepriceBlock: big.NewInt(2457000), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "EIP150", "Homestead", "stTransactionTest.json") | 
					
						
							|  |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							|  |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestEIP150HomesteadCallCreateCallCode(t *testing.T) { | 
					
						
							|  |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock:           new(big.Int), | 
					
						
							|  |  |  | 		HomesteadGasRepriceBlock: big.NewInt(2457000), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "EIP150", "Homestead", "stCallCreateCallCodeTest.json") | 
					
						
							|  |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							|  |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestEIP150HomesteadCallCodes(t *testing.T) { | 
					
						
							|  |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock:           new(big.Int), | 
					
						
							|  |  |  | 		HomesteadGasRepriceBlock: big.NewInt(2457000), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "EIP150", "Homestead", "stCallCodes.json") | 
					
						
							|  |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							|  |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestEIP150HomesteadMemory(t *testing.T) { | 
					
						
							|  |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock:           new(big.Int), | 
					
						
							|  |  |  | 		HomesteadGasRepriceBlock: big.NewInt(2457000), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "EIP150", "Homestead", "stMemoryTest.json") | 
					
						
							|  |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							|  |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestEIP150HomesteadMemoryStress(t *testing.T) { | 
					
						
							|  |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock:           new(big.Int), | 
					
						
							|  |  |  | 		HomesteadGasRepriceBlock: big.NewInt(2457000), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if os.Getenv("TEST_VM_COMPLEX") == "" { | 
					
						
							|  |  |  | 		t.Skip() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "EIP150", "Homestead", "stMemoryStressTest.json") | 
					
						
							|  |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							|  |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestEIP150HomesteadQuadraticComplexity(t *testing.T) { | 
					
						
							|  |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock:           new(big.Int), | 
					
						
							|  |  |  | 		HomesteadGasRepriceBlock: big.NewInt(2457000), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if os.Getenv("TEST_VM_COMPLEX") == "" { | 
					
						
							|  |  |  | 		t.Skip() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "EIP150", "Homestead", "stQuadraticComplexityTest.json") | 
					
						
							|  |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							|  |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestEIP150HomesteadWallet(t *testing.T) { | 
					
						
							|  |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock:           new(big.Int), | 
					
						
							|  |  |  | 		HomesteadGasRepriceBlock: big.NewInt(2457000), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "EIP150", "Homestead", "stWalletTest.json") | 
					
						
							|  |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							|  |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestEIP150HomesteadDelegateCodes(t *testing.T) { | 
					
						
							|  |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock:           new(big.Int), | 
					
						
							|  |  |  | 		HomesteadGasRepriceBlock: big.NewInt(2457000), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "EIP150", "Homestead", "stCallDelegateCodes.json") | 
					
						
							|  |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							|  |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestEIP150HomesteadDelegateCodesCallCode(t *testing.T) { | 
					
						
							|  |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock:           new(big.Int), | 
					
						
							|  |  |  | 		HomesteadGasRepriceBlock: big.NewInt(2457000), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "EIP150", "Homestead", "stCallDelegateCodesCallCode.json") | 
					
						
							|  |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							|  |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestEIP150HomesteadBounds(t *testing.T) { | 
					
						
							|  |  |  | 	ruleSet := RuleSet{ | 
					
						
							|  |  |  | 		HomesteadBlock:           new(big.Int), | 
					
						
							|  |  |  | 		HomesteadGasRepriceBlock: big.NewInt(2457000), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fn := filepath.Join(stateTestDir, "EIP150", "Homestead", "stBoundsTest.json") | 
					
						
							|  |  |  | 	if err := RunStateTest(ruleSet, fn, StateSkipTests); err != nil { | 
					
						
							|  |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |