mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-03 14:55:47 +00:00

move the tailscale web client out of the cmd/tailscale/cli package, into a new client/web package. The remaining cli/web.go file is still responsible for parsing CLI flags and such, and then calls into client/web. This will allow the web client to be hooked into from other contexts (for example, from a tsnet server), and provide a dedicated space to add more functionality to this client. Updates tailscale/corp#13775 Signed-off-by: Will Norris <will@tailscale.com>
46 lines
774 B
Go
46 lines
774 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
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) {
|
|
u := urlOfListenAddr(tt.in)
|
|
if u != tt.want {
|
|
t.Errorf("expected url: %q, got: %q", tt.want, u)
|
|
}
|
|
})
|
|
}
|
|
}
|