github.com/XinFinOrg/xdcchain@v1.1.0/cmd/XDC/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/ethereum/go-ethereum/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 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 := "xdc8605cdbbdb6d264aa742e77020dcbc58fcdce182" 42 43 // Start a XDC console, make sure it's cleaned up and terminate the console 44 XDC := runXDC(t, 45 "--port", "0", "--maxpeers", "0", "--nodiscover", "--nat", "none", 46 "--etherbase", coinbase, 47 "console") 48 49 // Gather all the infos the welcome message needs to contain 50 XDC.SetTemplateFunc("goos", func() string { return runtime.GOOS }) 51 XDC.SetTemplateFunc("goarch", func() string { return runtime.GOARCH }) 52 XDC.SetTemplateFunc("gover", runtime.Version) 53 XDC.SetTemplateFunc("XDCver", func() string { return params.VersionWithMeta }) 54 XDC.SetTemplateFunc("niltime", func() string { return time.Unix(0, 0).Format(time.RFC1123) }) 55 XDC.SetTemplateFunc("apis", func() string { return ipcAPIs }) 56 57 // Verify the actual welcome message to the required template 58 XDC.Expect(` 59 Welcome to the XDC JavaScript console! 60 61 instance: XDC/v{{XDCver}}/{{goos}}-{{goarch}}/{{gover}} 62 coinbase: {{.Etherbase}} 63 at block: 0 ({{niltime}}) 64 datadir: {{.Datadir}} 65 modules: {{apis}} 66 67 > {{.InputLine "exit"}} 68 `) 69 XDC.ExpectExit() 70 } 71 72 // Tests that a console can be attached to a running node via various means. 73 func TestIPCAttachWelcome(t *testing.T) { 74 // Configure the instance for IPC attachement 75 coinbase := "xdc8605cdbbdb6d264aa742e77020dcbc58fcdce182" 76 var ipc string 77 if runtime.GOOS == "windows" { 78 ipc = `\\.\pipe\XDC` + strconv.Itoa(trulyRandInt(100000, 999999)) 79 } else { 80 ws := tmpdir(t) 81 defer os.RemoveAll(ws) 82 ipc = filepath.Join(ws, "XDC.ipc") 83 } 84 XDC := runXDC(t, 85 "--port", "0", "--maxpeers", "0", "--nodiscover", "--nat", "none", 86 "--etherbase", coinbase, "--ipcpath", ipc) 87 88 time.Sleep(2 * time.Second) // Simple way to wait for the RPC endpoint to open 89 testAttachWelcome(t, XDC, "ipc:"+ipc, ipcAPIs) 90 91 XDC.Interrupt() 92 XDC.ExpectExit() 93 } 94 95 func TestHTTPAttachWelcome(t *testing.T) { 96 coinbase := "xdc8605cdbbdb6d264aa742e77020dcbc58fcdce182" 97 port := strconv.Itoa(trulyRandInt(1024, 65536)) // Yeah, sometimes this will fail, sorry :P 98 XDC := runXDC(t, 99 "--port", "0", "--maxpeers", "0", "--nodiscover", "--nat", "none", 100 "--etherbase", coinbase, "--rpc", "--rpcport", port) 101 102 time.Sleep(2 * time.Second) // Simple way to wait for the RPC endpoint to open 103 testAttachWelcome(t, XDC, "http://localhost:"+port, httpAPIs) 104 105 XDC.Interrupt() 106 XDC.ExpectExit() 107 } 108 109 func TestWSAttachWelcome(t *testing.T) { 110 coinbase := "xdc8605cdbbdb6d264aa742e77020dcbc58fcdce182" 111 port := strconv.Itoa(trulyRandInt(1024, 65536)) // Yeah, sometimes this will fail, sorry :P 112 113 XDC := runXDC(t, 114 "--port", "0", "--maxpeers", "0", "--nodiscover", "--nat", "none", 115 "--etherbase", coinbase, "--ws", "--wsport", port) 116 117 time.Sleep(2 * time.Second) // Simple way to wait for the RPC endpoint to open 118 testAttachWelcome(t, XDC, "ws://localhost:"+port, httpAPIs) 119 120 XDC.Interrupt() 121 XDC.ExpectExit() 122 } 123 124 func testAttachWelcome(t *testing.T, XDC *testXDC, endpoint, apis string) { 125 // Attach to a running XDC note and terminate immediately 126 attach := runXDC(t, "attach", endpoint) 127 defer attach.ExpectExit() 128 attach.CloseStdin() 129 130 // Gather all the infos the welcome message needs to contain 131 attach.SetTemplateFunc("goos", func() string { return runtime.GOOS }) 132 attach.SetTemplateFunc("goarch", func() string { return runtime.GOARCH }) 133 attach.SetTemplateFunc("gover", runtime.Version) 134 attach.SetTemplateFunc("XDCver", func() string { return params.VersionWithMeta }) 135 attach.SetTemplateFunc("etherbase", func() string { return XDC.Etherbase }) 136 attach.SetTemplateFunc("niltime", func() string { return time.Unix(0, 0).Format(time.RFC1123) }) 137 attach.SetTemplateFunc("ipc", func() bool { return strings.HasPrefix(endpoint, "ipc") }) 138 attach.SetTemplateFunc("datadir", func() string { return XDC.Datadir }) 139 attach.SetTemplateFunc("apis", func() string { return apis }) 140 141 // Verify the actual welcome message to the required template 142 attach.Expect(` 143 Welcome to the XDC JavaScript console! 144 145 instance: XDC/v{{XDCver}}/{{goos}}-{{goarch}}/{{gover}} 146 coinbase: {{etherbase}} 147 at block: 0 ({{niltime}}){{if ipc}} 148 datadir: {{datadir}}{{end}} 149 modules: {{apis}} 150 151 > {{.InputLine "exit" }} 152 `) 153 attach.ExpectExit() 154 } 155 156 // trulyRandInt generates a crypto random integer used by the console tests to 157 // not clash network ports with other tests running cocurrently. 158 func trulyRandInt(lo, hi int) int { 159 num, _ := rand.Int(rand.Reader, big.NewInt(int64(hi-lo))) 160 return int(num.Int64()) + lo 161 }