-
Notifications
You must be signed in to change notification settings - Fork 44
/
app_test.go
145 lines (136 loc) · 2.97 KB
/
app_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
// Copyright (c) Tailscale Inc & AUTHORS
// SPDX-License-Identifier: Apache-2.0
package tscaddy
import (
"encoding/json"
"testing"
"github.com/caddyserver/caddy/v2/caddyconfig/caddyfile"
"github.com/caddyserver/caddy/v2/caddyconfig/httpcaddyfile"
"github.com/google/go-cmp/cmp"
)
func Test_ParseApp(t *testing.T) {
tests := []struct {
name string
d *caddyfile.Dispenser
want string
authKey string
wantErr bool
}{
{
name: "empty",
d: caddyfile.NewTestDispenser(`
tailscsale {}
`),
want: `{}`,
},
{
name: "auth_key",
d: caddyfile.NewTestDispenser(`
tailscsale {
auth_key tskey-default
}`),
want: `{"auth_key":"tskey-default"}`,
authKey: "tskey-default",
},
{
name: "ephemeral",
d: caddyfile.NewTestDispenser(`
tailscsale {
ephemeral
}`),
want: `{"ephemeral":true}`,
authKey: "",
},
{
name: "ephemeral: true",
d: caddyfile.NewTestDispenser(`
tailscsale {
ephemeral true
}`),
want: `{"ephemeral":true}`,
authKey: "",
},
{
name: "ephemeral: 1",
d: caddyfile.NewTestDispenser(`
tailscsale {
ephemeral 1
}`),
want: `{"ephemeral":true}`,
authKey: "",
},
{
name: "ephemeral: false",
d: caddyfile.NewTestDispenser(`
tailscsale {
ephemeral false
}`),
want: `{}`, // no value because omitempty
authKey: "",
},
{
name: "missing auth key",
d: caddyfile.NewTestDispenser(`
tailscsale {
auth_key
}`),
wantErr: true,
},
{
name: "empty server",
d: caddyfile.NewTestDispenser(`
tailscsale {
foo
}`),
want: `{"nodes":{"foo":{}}}`,
},
{
name: "tailscale with server",
d: caddyfile.NewTestDispenser(`
tailscsale {
auth_key tskey-default
foo {
auth_key tskey-node
ephemeral false
webui false
}
}`),
want: `{"auth_key":"tskey-default","nodes":{"foo":{"auth_key":"tskey-node","ephemeral":false,"webui":false}}}`,
wantErr: false,
authKey: "tskey-node",
},
}
for _, testcase := range tests {
t.Run(testcase.name, func(t *testing.T) {
got, err := parseAppConfig(testcase.d, nil)
if err != nil {
if !testcase.wantErr {
t.Errorf("parseApp() error = %v, wantErr %v", err, testcase.wantErr)
return
}
return
} else if testcase.wantErr {
t.Errorf("parseApp() err = %v, wantErr %v", err, testcase.wantErr)
return
}
gotJSON := string(got.(httpcaddyfile.App).Value)
if diff := compareJSON(gotJSON, testcase.want, t); diff != "" {
t.Errorf("parseApp() diff(-got +want):\n%s", diff)
}
app := new(App)
if err := json.Unmarshal([]byte(gotJSON), &app); err != nil {
t.Error("failed to unmarshal json into App")
}
})
}
}
func compareJSON(s1, s2 string, t *testing.T) string {
var v1, v2 map[string]any
if err := json.Unmarshal([]byte(s1), &v1); err != nil {
t.Error(err)
}
if err := json.Unmarshal([]byte(s2), &v2); err != nil {
t.Error(err)
}
return cmp.Diff(v1, v2)
}