mirror of https://github.com/gorilla/websocket
Mirror of https://github.com/gorilla/websocket
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
119 lines
3.2 KiB
119 lines
3.2 KiB
// 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) |
|
} |
|
} |
|
}
|
|
|