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.
32 lines
1.0 KiB
32 lines
1.0 KiB
// Copyright 2014 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 ( |
|
"net/url" |
|
"testing" |
|
) |
|
|
|
var hostPortNoPortTests = []struct { |
|
u *url.URL |
|
hostPort, hostNoPort string |
|
}{ |
|
{&url.URL{Scheme: "ws", Host: "example.com"}, "example.com:80", "example.com"}, |
|
{&url.URL{Scheme: "wss", Host: "example.com"}, "example.com:443", "example.com"}, |
|
{&url.URL{Scheme: "ws", Host: "example.com:7777"}, "example.com:7777", "example.com"}, |
|
{&url.URL{Scheme: "wss", Host: "example.com:7777"}, "example.com:7777", "example.com"}, |
|
} |
|
|
|
func TestHostPortNoPort(t *testing.T) { |
|
for _, tt := range hostPortNoPortTests { |
|
hostPort, hostNoPort := hostPortNoPort(tt.u) |
|
if hostPort != tt.hostPort { |
|
t.Errorf("hostPortNoPort(%v) returned hostPort %q, want %q", tt.u, hostPort, tt.hostPort) |
|
} |
|
if hostNoPort != tt.hostNoPort { |
|
t.Errorf("hostPortNoPort(%v) returned hostNoPort %q, want %q", tt.u, hostNoPort, tt.hostNoPort) |
|
} |
|
} |
|
}
|
|
|