github.com/JFJun/bsc@v1.0.0/cmd/geth/consolecmd_test.go (about) 1 // Copyright 2016 The go-ethereum Authors 2 // This file is part of go-ethereum. 3 // 4 // go-ethereum is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // go-ethereum is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU General Public License for more details. 13 // 14 // You should have received a copy of the GNU General Public License 15 // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>. 16 17 package main 18 19 import ( 20 "crypto/rand" 21 "math/big" 22 "os" 23 "path/filepath" 24 "runtime" 25 "strconv" 26 "strings" 27 "testing" 28 "time" 29 30 "github.com/JFJun/bsc/params" 31 ) 32 33 const ( 34 ipcAPIs = "admin:1.0 debug:1.0 eth:1.0 ethash:1.0 miner:1.0 net:1.0 personal:1.0 rpc:1.0 shh:1.0 txpool:1.0 web3:1.0" 35 httpAPIs = "eth:1.0 net:1.0 rpc:1.0 web3:1.0" 36 ) 37 38 // Tests that a node embedded within a console can be started up properly and 39 // then terminated by closing the input stream. 40 func TestConsoleWelcome(t *testing.T) { 41 coinbase := "0x8605cdbbdb6d264aa742e77020dcbc58fcdce182" 42 43 // Start a geth console, make sure it's cleaned up and terminate the console 44 geth := runGeth(t, 45 "--port", "0", "--maxpeers", "0", "--nodiscover", "--nat", "none", 46 "--etherbase", coinbase, "--shh", 47 "console") 48 49 // Gather all the infos the welcome message needs to contain 50 geth.SetTemplateFunc("goos", func() string { return runtime.GOOS }) 51 geth.SetTemplateFunc("goarch", func() string { return runtime.GOARCH }) 52 geth.SetTemplateFunc("gover", runtime.Version) 53 geth.SetTemplateFunc("gethver", func() string { return params.VersionWithCommit("", "") }) 54 geth.SetTemplateFunc("niltime", func() string { 55 return time.Unix(0, 0).Format("Mon Jan 02 2006 15:04:05 GMT-0700 (MST)") 56 }) 57 geth.SetTemplateFunc("apis", func() string { return ipcAPIs }) 58 59 // Verify the actual welcome message to the required template 60 geth.Expect(` 61 Welcome to the Geth JavaScript console! 62 63 instance: Geth/v{{gethver}}/{{goos}}-{{goarch}}/{{gover}} 64 coinbase: {{.Etherbase}} 65 at block: 0 ({{niltime}}) 66 datadir: {{.Datadir}} 67 modules: {{apis}} 68 69 > {{.InputLine "exit"}} 70 `) 71 geth.ExpectExit() 72 } 73 74 // Tests that a console can be attached to a running node via various means. 75 func TestIPCAttachWelcome(t *testing.T) { 76 // Configure the instance for IPC attachement 77 coinbase := "0x8605cdbbdb6d264aa742e77020dcbc58fcdce182" 78 var ipc string 79 if runtime.GOOS == "windows" { 80 ipc = `\\.\pipe\geth` + strconv.Itoa(trulyRandInt(100000, 999999)) 81 } else { 82 ws := tmpdir(t) 83 defer os.RemoveAll(ws) 84 ipc = filepath.Join(ws, "geth.ipc") 85 } 86 // Note: we need --shh because testAttachWelcome checks for default 87 // list of ipc modules and shh is included there. 88 geth := runGeth(t, 89 "--port", "0", "--maxpeers", "0", "--nodiscover", "--nat", "none", 90 "--etherbase", coinbase, "--shh", "--ipcpath", ipc) 91 92 defer func() { 93 geth.Interrupt() 94 geth.ExpectExit() 95 }() 96 97 waitForEndpoint(t, ipc, 3*time.Second) 98 testAttachWelcome(t, geth, "ipc:"+ipc, ipcAPIs) 99 100 } 101 102 func TestHTTPAttachWelcome(t *testing.T) { 103 coinbase := "0x8605cdbbdb6d264aa742e77020dcbc58fcdce182" 104 port := strconv.Itoa(trulyRandInt(1024, 65536)) // Yeah, sometimes this will fail, sorry :P 105 geth := runGeth(t, 106 "--port", "0", "--maxpeers", "0", "--nodiscover", "--nat", "none", 107 "--etherbase", coinbase, "--rpc", "--rpcport", port) 108 defer func() { 109 geth.Interrupt() 110 geth.ExpectExit() 111 }() 112 113 endpoint := "http://127.0.0.1:" + port 114 waitForEndpoint(t, endpoint, 3*time.Second) 115 testAttachWelcome(t, geth, endpoint, httpAPIs) 116 } 117 118 func TestWSAttachWelcome(t *testing.T) { 119 coinbase := "0x8605cdbbdb6d264aa742e77020dcbc58fcdce182" 120 port := strconv.Itoa(trulyRandInt(1024, 65536)) // Yeah, sometimes this will fail, sorry :P 121 122 geth := runGeth(t, 123 "--port", "0", "--maxpeers", "0", "--nodiscover", "--nat", "none", 124 "--etherbase", coinbase, "--ws", "--wsport", port) 125 defer func() { 126 geth.Interrupt() 127 geth.ExpectExit() 128 }() 129 130 endpoint := "ws://127.0.0.1:" + port 131 waitForEndpoint(t, endpoint, 3*time.Second) 132 testAttachWelcome(t, geth, endpoint, httpAPIs) 133 } 134 135 func testAttachWelcome(t *testing.T, geth *testgeth, endpoint, apis string) { 136 // Attach to a running geth note and terminate immediately 137 attach := runGeth(t, "attach", endpoint) 138 defer attach.ExpectExit() 139 attach.CloseStdin() 140 141 // Gather all the infos the welcome message needs to contain 142 attach.SetTemplateFunc("goos", func() string { return runtime.GOOS }) 143 attach.SetTemplateFunc("goarch", func() string { return runtime.GOARCH }) 144 attach.SetTemplateFunc("gover", runtime.Version) 145 attach.SetTemplateFunc("gethver", func() string { return params.VersionWithCommit("", "") }) 146 attach.SetTemplateFunc("etherbase", func() string { return geth.Etherbase }) 147 attach.SetTemplateFunc("niltime", func() string { 148 return time.Unix(0, 0).Format("Mon Jan 02 2006 15:04:05 GMT-0700 (MST)") 149 }) 150 attach.SetTemplateFunc("ipc", func() bool { return strings.HasPrefix(endpoint, "ipc") }) 151 attach.SetTemplateFunc("datadir", func() string { return geth.Datadir }) 152 attach.SetTemplateFunc("apis", func() string { return apis }) 153 154 // Verify the actual welcome message to the required template 155 attach.Expect(` 156 Welcome to the Geth JavaScript console! 157 158 instance: Geth/v{{gethver}}/{{goos}}-{{goarch}}/{{gover}} 159 coinbase: {{etherbase}} 160 at block: 0 ({{niltime}}){{if ipc}} 161 datadir: {{datadir}}{{end}} 162 modules: {{apis}} 163 164 > {{.InputLine "exit" }} 165 `) 166 attach.ExpectExit() 167 } 168 169 // trulyRandInt generates a crypto random integer used by the console tests to 170 // not clash network ports with other tests running cocurrently. 171 func trulyRandInt(lo, hi int) int { 172 num, _ := rand.Int(rand.Reader, big.NewInt(int64(hi-lo))) 173 return int(num.Int64()) + lo 174 }