mirror of https://github.com/gorilla/websocket.git
Added tests for subprotocol selection
This commit is contained in:
parent
17f407278f
commit
f78ed9f987
|
@ -56,6 +56,36 @@ func TestIsWebSocketUpgrade(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestSubProtocolSelection(t *testing.T) {
|
||||||
|
upgrader := Upgrader{
|
||||||
|
Subprotocols: []string{"foo", "bar", "baz"},
|
||||||
|
}
|
||||||
|
|
||||||
|
r := http.Request{Header: http.Header{"Sec-Websocket-Protocol": {"foo", "bar"}}}
|
||||||
|
s := upgrader.selectSubprotocol(&r, nil)
|
||||||
|
if s != "foo" {
|
||||||
|
t.Errorf("Upgrader.selectSubprotocol returned %v, want %v", s, "foo")
|
||||||
|
}
|
||||||
|
|
||||||
|
r = http.Request{Header: http.Header{"Sec-Websocket-Protocol": {"bar", "foo"}}}
|
||||||
|
s = upgrader.selectSubprotocol(&r, nil)
|
||||||
|
if s != "bar" {
|
||||||
|
t.Errorf("Upgrader.selectSubprotocol returned %v, want %v", s, "bar")
|
||||||
|
}
|
||||||
|
|
||||||
|
r = http.Request{Header: http.Header{"Sec-Websocket-Protocol": {"baz"}}}
|
||||||
|
s = upgrader.selectSubprotocol(&r, nil)
|
||||||
|
if s != "baz" {
|
||||||
|
t.Errorf("Upgrader.selectSubprotocol returned %v, want %v", s, "baz")
|
||||||
|
}
|
||||||
|
|
||||||
|
r = http.Request{Header: http.Header{"Sec-Websocket-Protocol": {"quux"}}}
|
||||||
|
s = upgrader.selectSubprotocol(&r, nil)
|
||||||
|
if s != "" {
|
||||||
|
t.Errorf("Upgrader.selectSubprotocol returned %v, want %v", s, "empty string")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
var checkSameOriginTests = []struct {
|
var checkSameOriginTests = []struct {
|
||||||
ok bool
|
ok bool
|
||||||
r *http.Request
|
r *http.Request
|
||||||
|
|
Loading…
Reference in New Issue