| 
									
										
										
										
											2017-09-27 15:30:41 +02:00
										 |  |  | // Copyright 2017 The go-ethereum Authors | 
					
						
							|  |  |  | // This file is part of the go-ethereum library. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The go-ethereum library 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. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // The go-ethereum library 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 the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package tests | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"math/big" | 
					
						
							| 
									
										
										
										
											2018-10-05 21:52:05 +02:00
										 |  |  | 	"testing" | 
					
						
							| 
									
										
										
										
											2017-09-27 15:30:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/ethereum/go-ethereum/common" | 
					
						
							|  |  |  | 	"github.com/ethereum/go-ethereum/params" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ( | 
					
						
							|  |  |  | 	mainnetChainConfig = params.ChainConfig{ | 
					
						
							| 
									
										
										
										
											2018-06-05 03:31:34 -07:00
										 |  |  | 		ChainID:        big.NewInt(1), | 
					
						
							| 
									
										
										
										
											2017-09-27 15:30:41 +02:00
										 |  |  | 		HomesteadBlock: big.NewInt(1150000), | 
					
						
							|  |  |  | 		DAOForkBlock:   big.NewInt(1920000), | 
					
						
							|  |  |  | 		DAOForkSupport: true, | 
					
						
							|  |  |  | 		EIP150Block:    big.NewInt(2463000), | 
					
						
							|  |  |  | 		EIP150Hash:     common.HexToHash("0x2086799aeebeae135c246c65021c82b4e15a2c451340993aacfd2751886514f0"), | 
					
						
							|  |  |  | 		EIP155Block:    big.NewInt(2675000), | 
					
						
							|  |  |  | 		EIP158Block:    big.NewInt(2675000), | 
					
						
							|  |  |  | 		ByzantiumBlock: big.NewInt(4370000), | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestDifficulty(t *testing.T) { | 
					
						
							|  |  |  | 	t.Parallel() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dt := new(testMatcher) | 
					
						
							|  |  |  | 	// Not difficulty-tests | 
					
						
							|  |  |  | 	dt.skipLoad("hexencodetest.*") | 
					
						
							|  |  |  | 	dt.skipLoad("crypto.*") | 
					
						
							|  |  |  | 	dt.skipLoad("blockgenesistest\\.json") | 
					
						
							|  |  |  | 	dt.skipLoad("genesishashestest\\.json") | 
					
						
							|  |  |  | 	dt.skipLoad("keyaddrtest\\.json") | 
					
						
							|  |  |  | 	dt.skipLoad("txtest\\.json") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// files are 2 years old, contains strange values | 
					
						
							|  |  |  | 	dt.skipLoad("difficultyCustomHomestead\\.json") | 
					
						
							|  |  |  | 	dt.skipLoad("difficultyMorden\\.json") | 
					
						
							|  |  |  | 	dt.skipLoad("difficultyOlimpic\\.json") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-09 11:09:58 +02:00
										 |  |  | 	dt.config("Ropsten", *params.RopstenChainConfig) | 
					
						
							|  |  |  | 	dt.config("Morden", *params.RopstenChainConfig) | 
					
						
							| 
									
										
										
										
											2017-09-27 15:30:41 +02:00
										 |  |  | 	dt.config("Frontier", params.ChainConfig{}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dt.config("Homestead", params.ChainConfig{ | 
					
						
							|  |  |  | 		HomesteadBlock: big.NewInt(0), | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dt.config("Byzantium", params.ChainConfig{ | 
					
						
							|  |  |  | 		ByzantiumBlock: big.NewInt(0), | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-09 11:09:58 +02:00
										 |  |  | 	dt.config("Frontier", *params.RopstenChainConfig) | 
					
						
							| 
									
										
										
										
											2017-09-27 15:30:41 +02:00
										 |  |  | 	dt.config("MainNetwork", mainnetChainConfig) | 
					
						
							|  |  |  | 	dt.config("CustomMainNetwork", mainnetChainConfig) | 
					
						
							| 
									
										
										
										
											2018-10-16 00:26:47 +02:00
										 |  |  | 	dt.config("Constantinople", params.ChainConfig{ | 
					
						
							|  |  |  | 		ConstantinopleBlock: big.NewInt(0), | 
					
						
							|  |  |  | 	}) | 
					
						
							| 
									
										
										
										
											2020-03-10 04:55:27 -05:00
										 |  |  | 	dt.config("EIP2384", params.ChainConfig{ | 
					
						
							|  |  |  | 		MuirGlacierBlock: big.NewInt(0), | 
					
						
							|  |  |  | 	}) | 
					
						
							| 
									
										
										
										
											2017-09-27 15:30:41 +02:00
										 |  |  | 	dt.config("difficulty.json", mainnetChainConfig) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dt.walk(t, difficultyTestDir, func(t *testing.T, name string, test *DifficultyTest) { | 
					
						
							|  |  |  | 		cfg := dt.findConfig(name) | 
					
						
							|  |  |  | 		if test.ParentDifficulty.Cmp(params.MinimumDifficulty) < 0 { | 
					
						
							|  |  |  | 			t.Skip("difficulty below minimum") | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if err := dt.checkFailure(t, name, test.Run(cfg)); err != nil { | 
					
						
							|  |  |  | 			t.Error(err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | } |