consolecmd_test.go 5.68 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// 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 (
20 21
	"crypto/rand"
	"math/big"
22 23 24 25 26 27 28 29
	"os"
	"path/filepath"
	"runtime"
	"strconv"
	"strings"
	"testing"
	"time"

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 39 40 41 42 43
)

// Tests that a node embedded within a console can be started up properly and
// then terminated by closing the input stream.
func TestConsoleWelcome(t *testing.T) {
	coinbase := "0x8605cdbbdb6d264aa742e77020dcbc58fcdce182"

	// Start a geth console, make sure it's cleaned up and terminate the console
44 45
	geth := runGeth(t,
		"--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 51 52
	geth.SetTemplateFunc("goos", func() string { return runtime.GOOS })
	geth.SetTemplateFunc("goarch", func() string { return runtime.GOARCH })
	geth.SetTemplateFunc("gover", runtime.Version)
53
	geth.SetTemplateFunc("gethver", func() string { return params.VersionWithCommit("", "") })
54 55 56
	geth.SetTemplateFunc("niltime", func() string {
		return time.Unix(0, 0).Format("Mon Jan 02 2006 15:04:05 GMT-0700 (MST)")
	})
57
	geth.SetTemplateFunc("apis", func() string { return ipcAPIs })
58 59

	// Verify the actual welcome message to the required template
60
	geth.Expect(`
61 62
Welcome to the Geth JavaScript console!

63
instance: Geth/v{{gethver}}/{{goos}}-{{goarch}}/{{gover}}
64 65 66
coinbase: {{.Etherbase}}
at block: 0 ({{niltime}})
 datadir: {{.Datadir}}
67
 modules: {{apis}}
68

69
To exit, press ctrl-d
70
> {{.InputLine "exit"}}
71
`)
72
	geth.ExpectExit()
73 74 75 76
}

// Tests that a console can be attached to a running node via various means.
func TestIPCAttachWelcome(t *testing.T) {
77
	// Configure the instance for IPC attachment
78 79 80
	coinbase := "0x8605cdbbdb6d264aa742e77020dcbc58fcdce182"
	var ipc string
	if runtime.GOOS == "windows" {
81
		ipc = `\\.\pipe\geth` + strconv.Itoa(trulyRandInt(100000, 999999))
82 83 84 85 86
	} else {
		ws := tmpdir(t)
		defer os.RemoveAll(ws)
		ipc = filepath.Join(ws, "geth.ipc")
	}
87 88
	geth := runGeth(t,
		"--port", "0", "--maxpeers", "0", "--nodiscover", "--nat", "none",
89
		"--etherbase", coinbase, "--ipcpath", ipc)
90

91 92 93 94 95
	defer func() {
		geth.Interrupt()
		geth.ExpectExit()
	}()

96
	waitForEndpoint(t, ipc, 3*time.Second)
97
	testAttachWelcome(t, geth, "ipc:"+ipc, ipcAPIs)
98

99 100 101 102
}

func TestHTTPAttachWelcome(t *testing.T) {
	coinbase := "0x8605cdbbdb6d264aa742e77020dcbc58fcdce182"
103
	port := strconv.Itoa(trulyRandInt(1024, 65536)) // Yeah, sometimes this will fail, sorry :P
104 105
	geth := runGeth(t,
		"--port", "0", "--maxpeers", "0", "--nodiscover", "--nat", "none",
106
		"--etherbase", coinbase, "--http", "--http.port", port)
107 108 109 110
	defer func() {
		geth.Interrupt()
		geth.ExpectExit()
	}()
111

112 113 114
	endpoint := "http://127.0.0.1:" + port
	waitForEndpoint(t, endpoint, 3*time.Second)
	testAttachWelcome(t, geth, endpoint, httpAPIs)
115 116 117 118
}

func TestWSAttachWelcome(t *testing.T) {
	coinbase := "0x8605cdbbdb6d264aa742e77020dcbc58fcdce182"
119
	port := strconv.Itoa(trulyRandInt(1024, 65536)) // Yeah, sometimes this will fail, sorry :P
120

121 122
	geth := runGeth(t,
		"--port", "0", "--maxpeers", "0", "--nodiscover", "--nat", "none",
123
		"--etherbase", coinbase, "--ws", "--ws.port", port)
124 125 126 127
	defer func() {
		geth.Interrupt()
		geth.ExpectExit()
	}()
128

129 130 131
	endpoint := "ws://127.0.0.1:" + port
	waitForEndpoint(t, endpoint, 3*time.Second)
	testAttachWelcome(t, geth, endpoint, httpAPIs)
132 133
}

134
func testAttachWelcome(t *testing.T, geth *testgeth, endpoint, apis string) {
135 136
	// Attach to a running geth note and terminate immediately
	attach := runGeth(t, "attach", endpoint)
137 138
	defer attach.ExpectExit()
	attach.CloseStdin()
139 140

	// Gather all the infos the welcome message needs to contain
141 142 143
	attach.SetTemplateFunc("goos", func() string { return runtime.GOOS })
	attach.SetTemplateFunc("goarch", func() string { return runtime.GOARCH })
	attach.SetTemplateFunc("gover", runtime.Version)
144
	attach.SetTemplateFunc("gethver", func() string { return params.VersionWithCommit("", "") })
145
	attach.SetTemplateFunc("etherbase", func() string { return geth.Etherbase })
146 147 148
	attach.SetTemplateFunc("niltime", func() string {
		return time.Unix(0, 0).Format("Mon Jan 02 2006 15:04:05 GMT-0700 (MST)")
	})
149 150 151
	attach.SetTemplateFunc("ipc", func() bool { return strings.HasPrefix(endpoint, "ipc") })
	attach.SetTemplateFunc("datadir", func() string { return geth.Datadir })
	attach.SetTemplateFunc("apis", func() string { return apis })
152 153

	// Verify the actual welcome message to the required template
154
	attach.Expect(`
155 156
Welcome to the Geth JavaScript console!

157
instance: Geth/v{{gethver}}/{{goos}}-{{goarch}}/{{gover}}
158 159 160
coinbase: {{etherbase}}
at block: 0 ({{niltime}}){{if ipc}}
 datadir: {{datadir}}{{end}}
161
 modules: {{apis}}
162

163
To exit, press ctrl-d
164
> {{.InputLine "exit" }}
165
`)
166
	attach.ExpectExit()
167
}
168 169 170 171 172 173 174

// trulyRandInt generates a crypto random integer used by the console tests to
// not clash network ports with other tests running cocurrently.
func trulyRandInt(lo, hi int) int {
	num, _ := rand.Int(rand.Reader, big.NewInt(int64(hi-lo)))
	return int(num.Int64()) + lo
}