| 
									
										
										
										
											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-07-07 05:08:16 +02:00
										 |  |  | // Package tests implements execution of Ethereum JSON tests. | 
					
						
							| 
									
										
										
										
											2015-06-10 13:00:54 -04:00
										 |  |  | package tests | 
					
						
							| 
									
										
										
										
											2014-10-18 23:20:25 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"encoding/json" | 
					
						
							| 
									
										
										
										
											2015-06-10 18:11:30 -04:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2014-10-18 23:20:25 +02:00
										 |  |  | 	"io" | 
					
						
							|  |  |  | 	"io/ioutil" | 
					
						
							|  |  |  | 	"net/http" | 
					
						
							|  |  |  | 	"os" | 
					
						
							| 
									
										
										
										
											2015-06-10 16:29:42 -04:00
										 |  |  | 	"path/filepath" | 
					
						
							| 
									
										
										
										
											2015-07-04 17:45:18 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/ethereum/go-ethereum/core" | 
					
						
							| 
									
										
										
										
											2014-10-18 23:20:25 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 16:29:42 -04:00
										 |  |  | var ( | 
					
						
							|  |  |  | 	baseDir            = filepath.Join(".", "files") | 
					
						
							| 
									
										
										
										
											2015-07-03 09:40:07 +02:00
										 |  |  | 	blockTestDir       = filepath.Join(baseDir, "BlockchainTests") | 
					
						
							| 
									
										
										
										
											2015-06-10 16:29:42 -04:00
										 |  |  | 	stateTestDir       = filepath.Join(baseDir, "StateTests") | 
					
						
							|  |  |  | 	transactionTestDir = filepath.Join(baseDir, "TransactionTests") | 
					
						
							|  |  |  | 	vmTestDir          = filepath.Join(baseDir, "VMTests") | 
					
						
							| 
									
										
										
										
											2015-07-17 15:13:24 +02:00
										 |  |  | 	rlpTestDir         = filepath.Join(baseDir, "RLPTests") | 
					
						
							| 
									
										
										
										
											2015-06-10 17:04:06 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-03 09:40:07 +02:00
										 |  |  | 	BlockSkipTests = []string{ | 
					
						
							| 
									
										
										
										
											2015-07-06 13:56:56 +02:00
										 |  |  | 		// These tests are not valid, as they are out of scope for RLP and | 
					
						
							|  |  |  | 		// the consensus protocol. | 
					
						
							| 
									
										
										
										
											2015-07-03 09:40:07 +02:00
										 |  |  | 		"BLOCK__RandomByteAtTheEnd", | 
					
						
							|  |  |  | 		"TRANSCT__RandomByteAtTheEnd", | 
					
						
							|  |  |  | 		"BLOCK__ZeroByteAtTheEnd", | 
					
						
							|  |  |  | 		"TRANSCT__ZeroByteAtTheEnd", | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-07-06 13:56:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-07 23:57:54 +02:00
										 |  |  | 	/* Go client does not support transaction (account) nonces above 2^64. This | 
					
						
							| 
									
										
										
										
											2015-07-06 13:56:56 +02:00
										 |  |  | 	technically breaks consensus but is regarded as "reasonable | 
					
						
							|  |  |  | 	engineering constraint" as accounts cannot easily reach such high | 
					
						
							|  |  |  | 	nonce values in practice | 
					
						
							|  |  |  | 	*/ | 
					
						
							| 
									
										
										
										
											2015-06-14 17:55:03 -04:00
										 |  |  | 	TransSkipTests = []string{"TransactionWithHihghNonce256"} | 
					
						
							| 
									
										
										
										
											2015-07-06 13:56:56 +02:00
										 |  |  | 	StateSkipTests = []string{} | 
					
						
							| 
									
										
										
										
											2015-06-14 17:55:03 -04:00
										 |  |  | 	VmSkipTests    = []string{} | 
					
						
							| 
									
										
										
										
											2015-06-10 16:29:42 -04:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2015-06-10 13:00:54 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-14 17:55:03 -04:00
										 |  |  | func readJson(reader io.Reader, value interface{}) error { | 
					
						
							| 
									
										
										
										
											2014-10-18 23:20:25 +02:00
										 |  |  | 	data, err := ioutil.ReadAll(reader) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 18:11:30 -04:00
										 |  |  | 		return fmt.Errorf("Error reading JSON file", err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-04 17:45:18 +02:00
										 |  |  | 	core.DisableBadBlockReporting = true | 
					
						
							| 
									
										
										
										
											2015-06-10 18:11:30 -04:00
										 |  |  | 	if err = json.Unmarshal(data, &value); err != nil { | 
					
						
							|  |  |  | 		if syntaxerr, ok := err.(*json.SyntaxError); ok { | 
					
						
							|  |  |  | 			line := findLine(data, syntaxerr.Offset) | 
					
						
							|  |  |  | 			return fmt.Errorf("JSON syntax error at line %v: %v", line, err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return fmt.Errorf("JSON unmarshal error: %v", err) | 
					
						
							| 
									
										
										
										
											2014-10-18 23:20:25 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 	return nil | 
					
						
							| 
									
										
										
										
											2014-10-18 23:20:25 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-14 17:55:03 -04:00
										 |  |  | func readJsonHttp(uri string, value interface{}) error { | 
					
						
							| 
									
										
										
										
											2014-10-18 23:20:25 +02:00
										 |  |  | 	resp, err := http.Get(uri) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		return err | 
					
						
							| 
									
										
										
										
											2014-10-18 23:20:25 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	defer resp.Body.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-14 17:55:03 -04:00
										 |  |  | 	err = readJson(resp.Body, value) | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return nil | 
					
						
							| 
									
										
										
										
											2014-10-18 23:20:25 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-14 17:55:03 -04:00
										 |  |  | func readJsonFile(fn string, value interface{}) error { | 
					
						
							| 
									
										
										
										
											2014-10-18 23:20:25 +02:00
										 |  |  | 	file, err := os.Open(fn) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 		return err | 
					
						
							| 
									
										
										
										
											2014-10-18 23:20:25 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	defer file.Close() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-14 17:55:03 -04:00
										 |  |  | 	err = readJson(file, value) | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2015-06-10 18:11:30 -04:00
										 |  |  | 		return fmt.Errorf("%s in file %s", err.Error(), fn) | 
					
						
							| 
									
										
										
										
											2015-06-10 16:10:33 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-06-14 17:55:03 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | // findLine returns the line number for the given offset into data. | 
					
						
							|  |  |  | func findLine(data []byte, offset int64) (line int) { | 
					
						
							|  |  |  | 	line = 1 | 
					
						
							|  |  |  | 	for i, r := range string(data) { | 
					
						
							|  |  |  | 		if int64(i) >= offset { | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if r == '\n' { | 
					
						
							|  |  |  | 			line++ | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return | 
					
						
							|  |  |  | } |