| 
									
										
										
										
											2016-03-18 01:35:03 +01:00
										 |  |  | // Copyright 2016 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 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 General Public License for more details. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  | // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package main | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							|  |  |  | 	"io/ioutil" | 
					
						
							|  |  |  | 	"os" | 
					
						
							|  |  |  | 	"testing" | 
					
						
							| 
									
										
										
										
											2017-06-21 14:54:23 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/docker/docker/pkg/reexec" | 
					
						
							|  |  |  | 	"github.com/ethereum/go-ethereum/internal/cmdtest" | 
					
						
							| 
									
										
										
										
											2016-03-18 01:35:03 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func tmpdir(t *testing.T) string { | 
					
						
							|  |  |  | 	dir, err := ioutil.TempDir("", "geth-test") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		t.Fatal(err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return dir | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type testgeth struct { | 
					
						
							| 
									
										
										
										
											2017-06-21 14:54:23 +02:00
										 |  |  | 	*cmdtest.TestCmd | 
					
						
							| 
									
										
										
										
											2016-03-18 01:35:03 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-21 14:54:23 +02:00
										 |  |  | 	// template variables for expect | 
					
						
							|  |  |  | 	Datadir   string | 
					
						
							|  |  |  | 	Etherbase string | 
					
						
							| 
									
										
										
										
											2016-03-18 01:35:03 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func init() { | 
					
						
							| 
									
										
										
										
											2017-06-21 14:54:23 +02:00
										 |  |  | 	// Run the app if we've been exec'd as "geth-test" in runGeth. | 
					
						
							|  |  |  | 	reexec.Register("geth-test", func() { | 
					
						
							| 
									
										
										
										
											2016-06-10 11:23:00 +03:00
										 |  |  | 		if err := app.Run(os.Args); err != nil { | 
					
						
							|  |  |  | 			fmt.Fprintln(os.Stderr, err) | 
					
						
							|  |  |  | 			os.Exit(1) | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-03-18 01:35:03 +01:00
										 |  |  | 		os.Exit(0) | 
					
						
							| 
									
										
										
										
											2017-06-21 14:54:23 +02:00
										 |  |  | 	}) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestMain(m *testing.M) { | 
					
						
							|  |  |  | 	// check if we have been reexec'd | 
					
						
							|  |  |  | 	if reexec.Init() { | 
					
						
							|  |  |  | 		return | 
					
						
							| 
									
										
										
										
											2016-03-18 01:35:03 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-06-21 14:54:23 +02:00
										 |  |  | 	os.Exit(m.Run()) | 
					
						
							| 
									
										
										
										
											2016-03-18 01:35:03 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // spawns geth with the given command line args. If the args don't set --datadir, the | 
					
						
							|  |  |  | // child g gets a temporary data directory. | 
					
						
							|  |  |  | func runGeth(t *testing.T, args ...string) *testgeth { | 
					
						
							| 
									
										
										
										
											2017-06-21 14:54:23 +02:00
										 |  |  | 	tt := &testgeth{} | 
					
						
							|  |  |  | 	tt.TestCmd = cmdtest.NewTestCmd(t, tt) | 
					
						
							| 
									
										
										
										
											2016-03-18 01:35:03 +01:00
										 |  |  | 	for i, arg := range args { | 
					
						
							| 
									
										
										
										
											2016-05-06 12:40:23 +03:00
										 |  |  | 		switch { | 
					
						
							|  |  |  | 		case arg == "-datadir" || arg == "--datadir": | 
					
						
							| 
									
										
										
										
											2016-03-18 01:35:03 +01:00
										 |  |  | 			if i < len(args)-1 { | 
					
						
							|  |  |  | 				tt.Datadir = args[i+1] | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-05-06 12:40:23 +03:00
										 |  |  | 		case arg == "-etherbase" || arg == "--etherbase": | 
					
						
							|  |  |  | 			if i < len(args)-1 { | 
					
						
							|  |  |  | 				tt.Etherbase = args[i+1] | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-03-18 01:35:03 +01:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if tt.Datadir == "" { | 
					
						
							|  |  |  | 		tt.Datadir = tmpdir(t) | 
					
						
							| 
									
										
										
										
											2017-06-21 14:54:23 +02:00
										 |  |  | 		tt.Cleanup = func() { os.RemoveAll(tt.Datadir) } | 
					
						
							| 
									
										
										
										
											2016-03-18 01:35:03 +01:00
										 |  |  | 		args = append([]string{"-datadir", tt.Datadir}, args...) | 
					
						
							|  |  |  | 		// Remove the temporary datadir if something fails below. | 
					
						
							|  |  |  | 		defer func() { | 
					
						
							|  |  |  | 			if t.Failed() { | 
					
						
							| 
									
										
										
										
											2017-06-21 14:54:23 +02:00
										 |  |  | 				tt.Cleanup() | 
					
						
							| 
									
										
										
										
											2016-03-18 01:35:03 +01:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		}() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-21 14:54:23 +02:00
										 |  |  | 	// Boot "geth". This actually runs the test binary but the TestMain | 
					
						
							|  |  |  | 	// function will prevent any tests from running. | 
					
						
							|  |  |  | 	tt.Run("geth-test", args...) | 
					
						
							| 
									
										
										
										
											2016-03-18 01:35:03 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-21 14:54:23 +02:00
										 |  |  | 	return tt | 
					
						
							| 
									
										
										
										
											2016-03-18 01:35:03 +01:00
										 |  |  | } |