This repository has been archived by the owner on Dec 9, 2022. It is now read-only.
Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
websocket/server_test.go
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
119 lines (107 sloc)
3.22 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. | |
// Use of this source code is governed by a BSD-style | |
// license that can be found in the LICENSE file. | |
package websocket | |
import ( | |
"bufio" | |
"bytes" | |
"net" | |
"net/http" | |
"reflect" | |
"strings" | |
"testing" | |
) | |
var subprotocolTests = []struct { | |
h string | |
protocols []string | |
}{ | |
{"", nil}, | |
{"foo", []string{"foo"}}, | |
{"foo,bar", []string{"foo", "bar"}}, | |
{"foo, bar", []string{"foo", "bar"}}, | |
{" foo, bar", []string{"foo", "bar"}}, | |
{" foo, bar ", []string{"foo", "bar"}}, | |
} | |
func TestSubprotocols(t *testing.T) { | |
for _, st := range subprotocolTests { | |
r := http.Request{Header: http.Header{"Sec-Websocket-Protocol": {st.h}}} | |
protocols := Subprotocols(&r) | |
if !reflect.DeepEqual(st.protocols, protocols) { | |
t.Errorf("SubProtocols(%q) returned %#v, want %#v", st.h, protocols, st.protocols) | |
} | |
} | |
} | |
var isWebSocketUpgradeTests = []struct { | |
ok bool | |
h http.Header | |
}{ | |
{false, http.Header{"Upgrade": {"websocket"}}}, | |
{false, http.Header{"Connection": {"upgrade"}}}, | |
{true, http.Header{"Connection": {"upgRade"}, "Upgrade": {"WebSocket"}}}, | |
} | |
func TestIsWebSocketUpgrade(t *testing.T) { | |
for _, tt := range isWebSocketUpgradeTests { | |
ok := IsWebSocketUpgrade(&http.Request{Header: tt.h}) | |
if tt.ok != ok { | |
t.Errorf("IsWebSocketUpgrade(%v) returned %v, want %v", tt.h, ok, tt.ok) | |
} | |
} | |
} | |
var checkSameOriginTests = []struct { | |
ok bool | |
r *http.Request | |
}{ | |
{false, &http.Request{Host: "example.org", Header: map[string][]string{"Origin": {"https://other.org"}}}}, | |
{true, &http.Request{Host: "example.org", Header: map[string][]string{"Origin": {"https://example.org"}}}}, | |
{true, &http.Request{Host: "Example.org", Header: map[string][]string{"Origin": {"https://example.org"}}}}, | |
} | |
func TestCheckSameOrigin(t *testing.T) { | |
for _, tt := range checkSameOriginTests { | |
ok := checkSameOrigin(tt.r) | |
if tt.ok != ok { | |
t.Errorf("checkSameOrigin(%+v) returned %v, want %v", tt.r, ok, tt.ok) | |
} | |
} | |
} | |
type reuseTestResponseWriter struct { | |
brw *bufio.ReadWriter | |
http.ResponseWriter | |
} | |
func (resp *reuseTestResponseWriter) Hijack() (net.Conn, *bufio.ReadWriter, error) { | |
return fakeNetConn{strings.NewReader(""), &bytes.Buffer{}}, resp.brw, nil | |
} | |
var bufioReuseTests = []struct { | |
n int | |
reuse bool | |
}{ | |
{4096, true}, | |
{128, false}, | |
} | |
func TestBufioReuse(t *testing.T) { | |
for i, tt := range bufioReuseTests { | |
br := bufio.NewReaderSize(strings.NewReader(""), tt.n) | |
bw := bufio.NewWriterSize(&bytes.Buffer{}, tt.n) | |
resp := &reuseTestResponseWriter{ | |
brw: bufio.NewReadWriter(br, bw), | |
} | |
upgrader := Upgrader{} | |
c, err := upgrader.Upgrade(resp, &http.Request{ | |
Method: http.MethodGet, | |
Header: http.Header{ | |
"Upgrade": []string{"websocket"}, | |
"Connection": []string{"upgrade"}, | |
"Sec-Websocket-Key": []string{"dGhlIHNhbXBsZSBub25jZQ=="}, | |
"Sec-Websocket-Version": []string{"13"}, | |
}}, nil) | |
if err != nil { | |
t.Fatal(err) | |
} | |
if reuse := c.br == br; reuse != tt.reuse { | |
t.Errorf("%d: buffered reader reuse=%v, want %v", i, reuse, tt.reuse) | |
} | |
writeBuf := bufioWriterBuffer(c.NetConn(), bw) | |
if reuse := &c.writeBuf[0] == &writeBuf[0]; reuse != tt.reuse { | |
t.Errorf("%d: write buffer reuse=%v, want %v", i, reuse, tt.reuse) | |
} | |
} | |
} |