github.com/kaleido-io/go-ethereum@v1.9.7/rpc/websocket_test.go (about)

     1  // Copyright 2018 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 rpc
    18  
    19  import (
    20  	"context"
    21  	"net"
    22  	"net/http"
    23  	"net/http/httptest"
    24  	"reflect"
    25  	"strings"
    26  	"testing"
    27  	"time"
    28  
    29  	"github.com/gorilla/websocket"
    30  )
    31  
    32  func TestWebsocketClientHeaders(t *testing.T) {
    33  	t.Parallel()
    34  
    35  	endpoint, header, err := wsClientHeaders("wss://testuser:test-PASS_01@example.com:1234", "https://example.com")
    36  	if err != nil {
    37  		t.Fatalf("wsGetConfig failed: %s", err)
    38  	}
    39  	if endpoint != "wss://example.com:1234" {
    40  		t.Fatal("User should have been stripped from the URL")
    41  	}
    42  	if header.Get("authorization") != "Basic dGVzdHVzZXI6dGVzdC1QQVNTXzAx" {
    43  		t.Fatal("Basic auth header is incorrect")
    44  	}
    45  	if header.Get("origin") != "https://example.com" {
    46  		t.Fatal("Origin not set")
    47  	}
    48  }
    49  
    50  // This test checks that the server rejects connections from disallowed origins.
    51  func TestWebsocketOriginCheck(t *testing.T) {
    52  	t.Parallel()
    53  
    54  	var (
    55  		srv     = newTestServer()
    56  		httpsrv = httptest.NewServer(srv.WebsocketHandler([]string{"http://example.com"}))
    57  		wsURL   = "ws:" + strings.TrimPrefix(httpsrv.URL, "http:")
    58  	)
    59  	defer srv.Stop()
    60  	defer httpsrv.Close()
    61  
    62  	client, err := DialWebsocket(context.Background(), wsURL, "http://ekzample.com")
    63  	if err == nil {
    64  		client.Close()
    65  		t.Fatal("no error for wrong origin")
    66  	}
    67  	wantErr := wsHandshakeError{websocket.ErrBadHandshake, "403 Forbidden"}
    68  	if !reflect.DeepEqual(err, wantErr) {
    69  		t.Fatalf("wrong error for wrong origin: %q", err)
    70  	}
    71  
    72  	// Connections without origin header should work.
    73  	client, err = DialWebsocket(context.Background(), wsURL, "")
    74  	if err != nil {
    75  		t.Fatal("error for empty origin")
    76  	}
    77  	client.Close()
    78  }
    79  
    80  // This test checks whether calls exceeding the request size limit are rejected.
    81  func TestWebsocketLargeCall(t *testing.T) {
    82  	t.Parallel()
    83  
    84  	var (
    85  		srv     = newTestServer()
    86  		httpsrv = httptest.NewServer(srv.WebsocketHandler([]string{"*"}))
    87  		wsURL   = "ws:" + strings.TrimPrefix(httpsrv.URL, "http:")
    88  	)
    89  	defer srv.Stop()
    90  	defer httpsrv.Close()
    91  
    92  	client, err := DialWebsocket(context.Background(), wsURL, "")
    93  	if err != nil {
    94  		t.Fatalf("can't dial: %v", err)
    95  	}
    96  	defer client.Close()
    97  
    98  	// This call sends slightly less than the limit and should work.
    99  	var result Result
   100  	arg := strings.Repeat("x", maxRequestContentLength-200)
   101  	if err := client.Call(&result, "test_echo", arg, 1); err != nil {
   102  		t.Fatalf("valid call didn't work: %v", err)
   103  	}
   104  	if result.String != arg {
   105  		t.Fatal("wrong string echoed")
   106  	}
   107  
   108  	// This call sends twice the allowed size and shouldn't work.
   109  	arg = strings.Repeat("x", maxRequestContentLength*2)
   110  	err = client.Call(&result, "test_echo", arg)
   111  	if err == nil {
   112  		t.Fatal("no error for too large call")
   113  	}
   114  }
   115  
   116  // This test checks that client handles WebSocket ping frames correctly.
   117  func TestClientWebsocketPing(t *testing.T) {
   118  	t.Parallel()
   119  
   120  	var (
   121  		sendPing    = make(chan struct{})
   122  		server      = wsPingTestServer(t, sendPing)
   123  		ctx, cancel = context.WithTimeout(context.Background(), 1*time.Second)
   124  	)
   125  	defer cancel()
   126  	defer server.Shutdown(ctx)
   127  
   128  	client, err := DialContext(ctx, "ws://"+server.Addr)
   129  	if err != nil {
   130  		t.Fatalf("client dial error: %v", err)
   131  	}
   132  	resultChan := make(chan int)
   133  	sub, err := client.EthSubscribe(ctx, resultChan, "foo")
   134  	if err != nil {
   135  		t.Fatalf("client subscribe error: %v", err)
   136  	}
   137  
   138  	// Wait for the context's deadline to be reached before proceeding.
   139  	// This is important for reproducing https://github.com/ethereum/go-ethereum/issues/19798
   140  	<-ctx.Done()
   141  	close(sendPing)
   142  
   143  	// Wait for the subscription result.
   144  	timeout := time.NewTimer(5 * time.Second)
   145  	for {
   146  		select {
   147  		case err := <-sub.Err():
   148  			t.Error("client subscription error:", err)
   149  		case result := <-resultChan:
   150  			t.Log("client got result:", result)
   151  			return
   152  		case <-timeout.C:
   153  			t.Error("didn't get any result within the test timeout")
   154  			return
   155  		}
   156  	}
   157  }
   158  
   159  // wsPingTestServer runs a WebSocket server which accepts a single subscription request.
   160  // When a value arrives on sendPing, the server sends a ping frame, waits for a matching
   161  // pong and finally delivers a single subscription result.
   162  func wsPingTestServer(t *testing.T, sendPing <-chan struct{}) *http.Server {
   163  	var srv http.Server
   164  	shutdown := make(chan struct{})
   165  	srv.RegisterOnShutdown(func() {
   166  		close(shutdown)
   167  	})
   168  	srv.Handler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
   169  		// Upgrade to WebSocket.
   170  		upgrader := websocket.Upgrader{
   171  			CheckOrigin: func(r *http.Request) bool { return true },
   172  		}
   173  		conn, err := upgrader.Upgrade(w, r, nil)
   174  		if err != nil {
   175  			t.Errorf("server WS upgrade error: %v", err)
   176  			return
   177  		}
   178  		defer conn.Close()
   179  
   180  		// Handle the connection.
   181  		wsPingTestHandler(t, conn, shutdown, sendPing)
   182  	})
   183  
   184  	// Start the server.
   185  	listener, err := net.Listen("tcp", "127.0.0.1:0")
   186  	if err != nil {
   187  		t.Fatal("can't listen:", err)
   188  	}
   189  	srv.Addr = listener.Addr().String()
   190  	go srv.Serve(listener)
   191  	return &srv
   192  }
   193  
   194  func wsPingTestHandler(t *testing.T, conn *websocket.Conn, shutdown, sendPing <-chan struct{}) {
   195  	// Canned responses for the eth_subscribe call in TestClientWebsocketPing.
   196  	const (
   197  		subResp   = `{"jsonrpc":"2.0","id":1,"result":"0x00"}`
   198  		subNotify = `{"jsonrpc":"2.0","method":"eth_subscription","params":{"subscription":"0x00","result":1}}`
   199  	)
   200  
   201  	// Handle subscribe request.
   202  	if _, _, err := conn.ReadMessage(); err != nil {
   203  		t.Errorf("server read error: %v", err)
   204  		return
   205  	}
   206  	if err := conn.WriteMessage(websocket.TextMessage, []byte(subResp)); err != nil {
   207  		t.Errorf("server write error: %v", err)
   208  		return
   209  	}
   210  
   211  	// Read from the connection to process control messages.
   212  	var pongCh = make(chan string)
   213  	conn.SetPongHandler(func(d string) error {
   214  		t.Logf("server got pong: %q", d)
   215  		pongCh <- d
   216  		return nil
   217  	})
   218  	go func() {
   219  		for {
   220  			typ, msg, err := conn.ReadMessage()
   221  			if err != nil {
   222  				return
   223  			}
   224  			t.Logf("server got message (%d): %q", typ, msg)
   225  		}
   226  	}()
   227  
   228  	// Write messages.
   229  	var (
   230  		sendResponse <-chan time.Time
   231  		wantPong     string
   232  	)
   233  	for {
   234  		select {
   235  		case _, open := <-sendPing:
   236  			if !open {
   237  				sendPing = nil
   238  			}
   239  			t.Logf("server sending ping")
   240  			conn.WriteMessage(websocket.PingMessage, []byte("ping"))
   241  			wantPong = "ping"
   242  		case data := <-pongCh:
   243  			if wantPong == "" {
   244  				t.Errorf("unexpected pong")
   245  			} else if data != wantPong {
   246  				t.Errorf("got pong with wrong data %q", data)
   247  			}
   248  			wantPong = ""
   249  			sendResponse = time.NewTimer(200 * time.Millisecond).C
   250  		case <-sendResponse:
   251  			t.Logf("server sending response")
   252  			conn.WriteMessage(websocket.TextMessage, []byte(subNotify))
   253  			sendResponse = nil
   254  		case <-shutdown:
   255  			conn.Close()
   256  			return
   257  		}
   258  	}
   259  }