| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // Copyright 2015 The go-ethereum Authors | 
					
						
							|  |  |  | // This file is part of go-ethereum. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // go-ethereum is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  | // 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. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // go-ethereum is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | // GNU Lesser General Public License for more details. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // You should have received a copy of the GNU Lesser General Public License | 
					
						
							|  |  |  | // along with go-ethereum.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | package tests | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | import ( | 
					
						
							|  |  |  | 	"os" | 
					
						
							|  |  |  | 	"path/filepath" | 
					
						
							|  |  |  | 	"testing" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | func TestStateSystemOperations(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stSystemOperationsTest.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunStateTest(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) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stExample.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunStateTest(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) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stPreCompiledContracts.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunStateTest(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) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stRecursiveCreate.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunStateTest(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) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stSpecialTest.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunStateTest(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) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stRefundTest.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunStateTest(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) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stBlockHashTest.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunStateTest(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) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stInitCodeTest.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunStateTest(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) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stLogTests.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunStateTest(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) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stTransactionTest.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunStateTest(fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestCallCreateCallCode(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stCallCreateCallCodeTest.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunStateTest(fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		t.Error(err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestMemory(t *testing.T) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stMemoryTest.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunStateTest(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) { | 
					
						
							|  |  |  | 	if os.Getenv("TEST_VM_COMPLEX") == "" { | 
					
						
							|  |  |  | 		t.Skip() | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stMemoryStressTest.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunStateTest(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) { | 
					
						
							|  |  |  | 	if os.Getenv("TEST_VM_COMPLEX") == "" { | 
					
						
							|  |  |  | 		t.Skip() | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stQuadraticComplexityTest.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunStateTest(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) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stSolidityTest.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunStateTest(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) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:34:38 -04:00
										 |  |  | 	fn := filepath.Join(stateTestDir, "stWalletTest.json") | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 	if err := RunStateTest(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) { | 
					
						
							| 
									
										
										
										
											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 { | 
					
						
							| 
									
										
										
										
											2015-06-19 11:38:23 +02:00
										 |  |  | 		if err := RunStateTest(fn, StateSkipTests); err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 			t.Error(err) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-06-10 12:04:56 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | } |