mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-16 03:31:39 +00:00
cmd/tailscale/cli: add outline of serve CLI tests
Updates tailscale/corp#7515 Change-Id: Ib3956d4756bdcea0da89238a3c520ce8ac8004ec Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
parent
74e892cbc2
commit
29bc021dcd
@ -11,6 +11,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"net/netip"
|
"net/netip"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
"runtime"
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
@ -1156,3 +1157,50 @@ func TestUpWorthWarning(t *testing.T) {
|
|||||||
t.Errorf("want false for other misc errors")
|
t.Errorf("want false for other misc errors")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestServeConfigMutations(t *testing.T) {
|
||||||
|
// Stateful mutations, starting from an empty config.
|
||||||
|
type step struct {
|
||||||
|
command []string // serve args
|
||||||
|
reset bool // if true, reset all ServeConfig state
|
||||||
|
want *ipn.ServeConfig
|
||||||
|
wantErr string
|
||||||
|
line int // line number of addStep call, for error messages
|
||||||
|
}
|
||||||
|
var steps []step
|
||||||
|
add := func(s step) {
|
||||||
|
_, _, s.line, _ = runtime.Caller(1)
|
||||||
|
steps = append(steps, s)
|
||||||
|
}
|
||||||
|
add(step{reset: true})
|
||||||
|
add(step{
|
||||||
|
want: nil,
|
||||||
|
})
|
||||||
|
var current *ipn.ServeConfig
|
||||||
|
for i, st := range steps {
|
||||||
|
t.Logf("Executing step #%d (line %v) ... ", i, st.line)
|
||||||
|
if st.reset {
|
||||||
|
t.Logf("(resetting state)")
|
||||||
|
current = nil
|
||||||
|
}
|
||||||
|
newState, err := applyServeMutation(current, st.command)
|
||||||
|
var gotErr string
|
||||||
|
if err != nil {
|
||||||
|
gotErr = err.Error()
|
||||||
|
}
|
||||||
|
if gotErr != st.wantErr {
|
||||||
|
t.Fatalf("[%d] %v: got error %q, want %q", i, st.command, gotErr, st.wantErr)
|
||||||
|
}
|
||||||
|
if !reflect.DeepEqual(newState, st.want) {
|
||||||
|
t.Fatalf("[%d] %v: bad state. got:\n%s\n\nwant:\n%s\n",
|
||||||
|
i, st.command, asJSON(newState), asJSON(st.want))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func applyServeMutation(current *ipn.ServeConfig, command []string) (*ipn.ServeConfig, error) {
|
||||||
|
if len(command) == 0 {
|
||||||
|
return current, nil
|
||||||
|
}
|
||||||
|
panic("TODO") // in cli/serve.go, not here in tests
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user