mirror of https://github.com/tailscale/tailscale/
ipn/ipnlocal: support https+insecure:// backend proxy targets
Updates tailscale/corp#7515 Change-Id: Ie50295c09e4a16959b37087d8165c4d7360db37f Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>pull/6271/head
parent
9dfb0916c2
commit
d7bfef12cf
@ -0,0 +1,33 @@
|
|||||||
|
// Copyright (c) 2022 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 ipnlocal
|
||||||
|
|
||||||
|
import "testing"
|
||||||
|
|
||||||
|
func TestExpandProxyArg(t *testing.T) {
|
||||||
|
type res struct {
|
||||||
|
target string
|
||||||
|
insecure bool
|
||||||
|
}
|
||||||
|
tests := []struct {
|
||||||
|
in string
|
||||||
|
want res
|
||||||
|
}{
|
||||||
|
{"", res{}},
|
||||||
|
{"3030", res{"http://127.0.0.1:3030", false}},
|
||||||
|
{"localhost:3030", res{"http://localhost:3030", false}},
|
||||||
|
{"10.2.3.5:3030", res{"http://10.2.3.5:3030", false}},
|
||||||
|
{"http://foo.com", res{"http://foo.com", false}},
|
||||||
|
{"https://foo.com", res{"https://foo.com", false}},
|
||||||
|
{"https+insecure://10.2.3.4", res{"https://10.2.3.4", true}},
|
||||||
|
}
|
||||||
|
for _, tt := range tests {
|
||||||
|
target, insecure := expandProxyArg(tt.in)
|
||||||
|
got := res{target, insecure}
|
||||||
|
if got != tt.want {
|
||||||
|
t.Errorf("expandProxyArg(%q) = %v, want %v", tt.in, got, tt.want)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue