mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-07 08:44:38 +00:00
45 lines
864 B
Go
45 lines
864 B
Go
// Copyright (c) 2021 Tailscale Inc & 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 cli
|
|
|
|
import "testing"
|
|
|
|
func TestUrlOfListenAddr(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
in, want string
|
|
}{
|
|
{
|
|
name: "TestLocalhost",
|
|
in: "localhost:8088",
|
|
want: "http://localhost:8088",
|
|
},
|
|
{
|
|
name: "TestNoHost",
|
|
in: ":8088",
|
|
want: "http://127.0.0.1:8088",
|
|
},
|
|
{
|
|
name: "TestExplicitHost",
|
|
in: "127.0.0.2:8088",
|
|
want: "http://127.0.0.2:8088",
|
|
},
|
|
{
|
|
name: "TestIPv6",
|
|
in: "[::1]:8088",
|
|
want: "http://[::1]:8088",
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
url := urlOfListenAddr(tt.in)
|
|
if url != tt.want {
|
|
t.Errorf("expected url: %q, got: %q", tt.want, url)
|
|
}
|
|
})
|
|
}
|
|
}
|