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