github.com/bcnmy/go-ethereum@v1.10.27/console/console_test.go (about)

     1  // Copyright 2015 The go-ethereum Authors
     2  // This file is part of the go-ethereum library.
     3  //
     4  // The go-ethereum library is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU Lesser 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  // The go-ethereum library 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 Lesser General Public License for more details.
    13  //
    14  // You should have received a copy of the GNU Lesser General Public License
    15  // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  package console
    18  
    19  import (
    20  	"bytes"
    21  	"errors"
    22  	"fmt"
    23  	"os"
    24  	"strings"
    25  	"testing"
    26  	"time"
    27  
    28  	"github.com/ethereum/go-ethereum/common"
    29  	"github.com/ethereum/go-ethereum/consensus/ethash"
    30  	"github.com/ethereum/go-ethereum/console/prompt"
    31  	"github.com/ethereum/go-ethereum/core"
    32  	"github.com/ethereum/go-ethereum/eth"
    33  	"github.com/ethereum/go-ethereum/eth/ethconfig"
    34  	"github.com/ethereum/go-ethereum/internal/jsre"
    35  	"github.com/ethereum/go-ethereum/miner"
    36  	"github.com/ethereum/go-ethereum/node"
    37  )
    38  
    39  const (
    40  	testInstance = "console-tester"
    41  	testAddress  = "0x8605cdbbdb6d264aa742e77020dcbc58fcdce182"
    42  )
    43  
    44  // hookedPrompter implements UserPrompter to simulate use input via channels.
    45  type hookedPrompter struct {
    46  	scheduler chan string
    47  }
    48  
    49  func (p *hookedPrompter) PromptInput(prompt string) (string, error) {
    50  	// Send the prompt to the tester
    51  	select {
    52  	case p.scheduler <- prompt:
    53  	case <-time.After(time.Second):
    54  		return "", errors.New("prompt timeout")
    55  	}
    56  	// Retrieve the response and feed to the console
    57  	select {
    58  	case input := <-p.scheduler:
    59  		return input, nil
    60  	case <-time.After(time.Second):
    61  		return "", errors.New("input timeout")
    62  	}
    63  }
    64  
    65  func (p *hookedPrompter) PromptPassword(prompt string) (string, error) {
    66  	return "", errors.New("not implemented")
    67  }
    68  func (p *hookedPrompter) PromptConfirm(prompt string) (bool, error) {
    69  	return false, errors.New("not implemented")
    70  }
    71  func (p *hookedPrompter) SetHistory(history []string)                     {}
    72  func (p *hookedPrompter) AppendHistory(command string)                    {}
    73  func (p *hookedPrompter) ClearHistory()                                   {}
    74  func (p *hookedPrompter) SetWordCompleter(completer prompt.WordCompleter) {}
    75  
    76  // tester is a console test environment for the console tests to operate on.
    77  type tester struct {
    78  	workspace string
    79  	stack     *node.Node
    80  	ethereum  *eth.Ethereum
    81  	console   *Console
    82  	input     *hookedPrompter
    83  	output    *bytes.Buffer
    84  }
    85  
    86  // newTester creates a test environment based on which the console can operate.
    87  // Please ensure you call Close() on the returned tester to avoid leaks.
    88  func newTester(t *testing.T, confOverride func(*ethconfig.Config)) *tester {
    89  	// Create a temporary storage for the node keys and initialize it
    90  	workspace := t.TempDir()
    91  
    92  	// Create a networkless protocol stack and start an Ethereum service within
    93  	stack, err := node.New(&node.Config{DataDir: workspace, UseLightweightKDF: true, Name: testInstance})
    94  	if err != nil {
    95  		t.Fatalf("failed to create node: %v", err)
    96  	}
    97  	ethConf := &ethconfig.Config{
    98  		Genesis: core.DeveloperGenesisBlock(15, 11_500_000, common.Address{}),
    99  		Miner: miner.Config{
   100  			Etherbase: common.HexToAddress(testAddress),
   101  		},
   102  		Ethash: ethash.Config{
   103  			PowMode: ethash.ModeTest,
   104  		},
   105  	}
   106  	if confOverride != nil {
   107  		confOverride(ethConf)
   108  	}
   109  	ethBackend, err := eth.New(stack, ethConf)
   110  	if err != nil {
   111  		t.Fatalf("failed to register Ethereum protocol: %v", err)
   112  	}
   113  	// Start the node and assemble the JavaScript console around it
   114  	if err = stack.Start(); err != nil {
   115  		t.Fatalf("failed to start test stack: %v", err)
   116  	}
   117  	client, err := stack.Attach()
   118  	if err != nil {
   119  		t.Fatalf("failed to attach to node: %v", err)
   120  	}
   121  	prompter := &hookedPrompter{scheduler: make(chan string)}
   122  	printer := new(bytes.Buffer)
   123  
   124  	console, err := New(Config{
   125  		DataDir:  stack.DataDir(),
   126  		DocRoot:  "testdata",
   127  		Client:   client,
   128  		Prompter: prompter,
   129  		Printer:  printer,
   130  		Preload:  []string{"preload.js"},
   131  	})
   132  	if err != nil {
   133  		t.Fatalf("failed to create JavaScript console: %v", err)
   134  	}
   135  	// Create the final tester and return
   136  	return &tester{
   137  		workspace: workspace,
   138  		stack:     stack,
   139  		ethereum:  ethBackend,
   140  		console:   console,
   141  		input:     prompter,
   142  		output:    printer,
   143  	}
   144  }
   145  
   146  // Close cleans up any temporary data folders and held resources.
   147  func (env *tester) Close(t *testing.T) {
   148  	if err := env.console.Stop(false); err != nil {
   149  		t.Errorf("failed to stop embedded console: %v", err)
   150  	}
   151  	if err := env.stack.Close(); err != nil {
   152  		t.Errorf("failed to tear down embedded node: %v", err)
   153  	}
   154  	os.RemoveAll(env.workspace)
   155  }
   156  
   157  // Tests that the node lists the correct welcome message, notably that it contains
   158  // the instance name, coinbase account, block number, data directory and supported
   159  // console modules.
   160  func TestWelcome(t *testing.T) {
   161  	tester := newTester(t, nil)
   162  	defer tester.Close(t)
   163  
   164  	tester.console.Welcome()
   165  
   166  	output := tester.output.String()
   167  	if want := "Welcome"; !strings.Contains(output, want) {
   168  		t.Fatalf("console output missing welcome message: have\n%s\nwant also %s", output, want)
   169  	}
   170  	if want := fmt.Sprintf("instance: %s", testInstance); !strings.Contains(output, want) {
   171  		t.Fatalf("console output missing instance: have\n%s\nwant also %s", output, want)
   172  	}
   173  	if want := fmt.Sprintf("coinbase: %s", testAddress); !strings.Contains(output, want) {
   174  		t.Fatalf("console output missing coinbase: have\n%s\nwant also %s", output, want)
   175  	}
   176  	if want := "at block: 0"; !strings.Contains(output, want) {
   177  		t.Fatalf("console output missing sync status: have\n%s\nwant also %s", output, want)
   178  	}
   179  	if want := fmt.Sprintf("datadir: %s", tester.workspace); !strings.Contains(output, want) {
   180  		t.Fatalf("console output missing coinbase: have\n%s\nwant also %s", output, want)
   181  	}
   182  }
   183  
   184  // Tests that JavaScript statement evaluation works as intended.
   185  func TestEvaluate(t *testing.T) {
   186  	tester := newTester(t, nil)
   187  	defer tester.Close(t)
   188  
   189  	tester.console.Evaluate("2 + 2")
   190  	if output := tester.output.String(); !strings.Contains(output, "4") {
   191  		t.Fatalf("statement evaluation failed: have %s, want %s", output, "4")
   192  	}
   193  }
   194  
   195  // Tests that the console can be used in interactive mode.
   196  func TestInteractive(t *testing.T) {
   197  	// Create a tester and run an interactive console in the background
   198  	tester := newTester(t, nil)
   199  	defer tester.Close(t)
   200  
   201  	go tester.console.Interactive()
   202  
   203  	// Wait for a prompt and send a statement back
   204  	select {
   205  	case <-tester.input.scheduler:
   206  	case <-time.After(time.Second):
   207  		t.Fatalf("initial prompt timeout")
   208  	}
   209  	select {
   210  	case tester.input.scheduler <- "2+2":
   211  	case <-time.After(time.Second):
   212  		t.Fatalf("input feedback timeout")
   213  	}
   214  	// Wait for the second prompt and ensure first statement was evaluated
   215  	select {
   216  	case <-tester.input.scheduler:
   217  	case <-time.After(time.Second):
   218  		t.Fatalf("secondary prompt timeout")
   219  	}
   220  	if output := tester.output.String(); !strings.Contains(output, "4") {
   221  		t.Fatalf("statement evaluation failed: have %s, want %s", output, "4")
   222  	}
   223  }
   224  
   225  // Tests that preloaded JavaScript files have been executed before user is given
   226  // input.
   227  func TestPreload(t *testing.T) {
   228  	tester := newTester(t, nil)
   229  	defer tester.Close(t)
   230  
   231  	tester.console.Evaluate("preloaded")
   232  	if output := tester.output.String(); !strings.Contains(output, "some-preloaded-string") {
   233  		t.Fatalf("preloaded variable missing: have %s, want %s", output, "some-preloaded-string")
   234  	}
   235  }
   236  
   237  // Tests that the JavaScript objects returned by statement executions are properly
   238  // pretty printed instead of just displaying "[object]".
   239  func TestPrettyPrint(t *testing.T) {
   240  	tester := newTester(t, nil)
   241  	defer tester.Close(t)
   242  
   243  	tester.console.Evaluate("obj = {int: 1, string: 'two', list: [3, 3, 3], obj: {null: null, func: function(){}}}")
   244  
   245  	// Define some specially formatted fields
   246  	var (
   247  		one   = jsre.NumberColor("1")
   248  		two   = jsre.StringColor("\"two\"")
   249  		three = jsre.NumberColor("3")
   250  		null  = jsre.SpecialColor("null")
   251  		fun   = jsre.FunctionColor("function()")
   252  	)
   253  	// Assemble the actual output we're after and verify
   254  	want := `{
   255    int: ` + one + `,
   256    list: [` + three + `, ` + three + `, ` + three + `],
   257    obj: {
   258      null: ` + null + `,
   259      func: ` + fun + `
   260    },
   261    string: ` + two + `
   262  }
   263  `
   264  	if output := tester.output.String(); output != want {
   265  		t.Fatalf("pretty print mismatch: have %s, want %s", output, want)
   266  	}
   267  }
   268  
   269  // Tests that the JavaScript exceptions are properly formatted and colored.
   270  func TestPrettyError(t *testing.T) {
   271  	tester := newTester(t, nil)
   272  	defer tester.Close(t)
   273  	tester.console.Evaluate("throw 'hello'")
   274  
   275  	want := jsre.ErrorColor("hello") + "\n\tat <eval>:1:1(1)\n\n"
   276  	if output := tester.output.String(); output != want {
   277  		t.Fatalf("pretty error mismatch: have %s, want %s", output, want)
   278  	}
   279  }
   280  
   281  // Tests that tests if the number of indents for JS input is calculated correct.
   282  func TestIndenting(t *testing.T) {
   283  	testCases := []struct {
   284  		input               string
   285  		expectedIndentCount int
   286  	}{
   287  		{`var a = 1;`, 0},
   288  		{`"some string"`, 0},
   289  		{`"some string with (parenthesis`, 0},
   290  		{`"some string with newline
   291  		("`, 0},
   292  		{`function v(a,b) {}`, 0},
   293  		{`function f(a,b) { var str = "asd("; };`, 0},
   294  		{`function f(a) {`, 1},
   295  		{`function f(a, function(b) {`, 2},
   296  		{`function f(a, function(b) {
   297  		     var str = "a)}";
   298  		  });`, 0},
   299  		{`function f(a,b) {
   300  		   var str = "a{b(" + a, ", " + b;
   301  		   }`, 0},
   302  		{`var str = "\"{"`, 0},
   303  		{`var str = "'("`, 0},
   304  		{`var str = "\\{"`, 0},
   305  		{`var str = "\\\\{"`, 0},
   306  		{`var str = 'a"{`, 0},
   307  		{`var obj = {`, 1},
   308  		{`var obj = { {a:1`, 2},
   309  		{`var obj = { {a:1}`, 1},
   310  		{`var obj = { {a:1}, b:2}`, 0},
   311  		{`var obj = {}`, 0},
   312  		{`var obj = {
   313  			a: 1, b: 2
   314  		}`, 0},
   315  		{`var test = }`, -1},
   316  		{`var str = "a\""; var obj = {`, 1},
   317  	}
   318  
   319  	for i, tt := range testCases {
   320  		counted := countIndents(tt.input)
   321  		if counted != tt.expectedIndentCount {
   322  			t.Errorf("test %d: invalid indenting: have %d, want %d", i, counted, tt.expectedIndentCount)
   323  		}
   324  	}
   325  }