-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup_test.go
416 lines (370 loc) · 9.43 KB
/
setup_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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
package temptxt
import (
"fmt"
"testing"
"github.com/coredns/caddy"
)
func TestSetup(t *testing.T) {
c := caddy.NewTestController("dns", "temptxt")
if err := setup(c); err != nil {
t.Fatalf("Expected no errors but got: %v", err)
}
c = caddy.NewTestController("dns", `temptxt {
clean_interval 15m
}`)
if err := setup(c); err != nil {
t.Fatalf("Expected no errors but got: %v", err)
}
}
func TestConfigErrors(t *testing.T) {
tests := []string{
// 0. Extra after suffix
"temptxt prefix suffix abcd",
// 1. Invalid option
`temptxt {
invalid option
}`,
// 2. Empty listen
`temptxt {
listen
}`,
// 3. No domain
`temptxt {
txt
}`,
// 4. No users
`temptxt {
txt test.example.com
}`,
// 5. No domain
`temptxt {
txt_alias
}`,
// 6. No alias
`temptxt {
txt_alias test.example.com
}`,
// 7. No users
`temptxt {
txt_alias test.example.com alias
}`,
// 8. Unsupported lookaround in regexp
`temptxt {
txt test (?!) abc
}`,
// 9. Alias which is also a domain
`temptxt {
txt test.example.com abc def
txt_alias test2.example.com test.example.com abc def
}`,
// 10. Domain which is also an alias
`temptxt {
txt_alias test2.example.com test.example.com abc def
txt test.example.com abc def
}`,
// 11. Unexpected val to abcd
`temptxt {
fallthrough_empty abcd
}`,
// 12. No value for auth_header
`temptxt {
auth_header
}`,
// 13. Invalid duration for max_Age
`temptxt {
max_age invalid
}`,
// 14. Invalid duration for clean_interval
`temptxt {
clean_interval invalid
}`,
// 15. No duration for max_age
`temptxt {
max_age
}`,
// 16. No duration for clean_interval
`temptxt {
clean_interval
}`,
// 17. No port in listen
`temptxt {
listen 127.0.0.1
}`,
// 18. clean_interval < 60
`temptxt {
clean_interval 30s
}`,
}
for i, test := range tests {
c := caddy.NewTestController("dns", test)
if _, err := parseConfig(c); err == nil {
t.Fatalf("[%d] Expected error but got nil", i)
}
}
}
func getConfig(cfg string, t *testing.T) *TempTxt {
c := caddy.NewTestController("dns", cfg)
tt, err := parseConfig(c)
if err != nil {
t.Helper()
t.Fatalf("Got an unexpected error: %v", err)
}
return tt
}
// A minimal config without zone or block is valid
// but is useless.
func TestMinimal(t *testing.T) {
c := getConfig("temptxt", t)
if c.authHeader != defaultAuthHeader {
t.Errorf("Expected %q, but got %q", defaultAuthHeader, c.authHeader)
}
if c.maxAge != defaultMaxAge {
t.Errorf("Expected %q, but got %q", defaultMaxAge, c.maxAge)
}
if c.cleanInterval != defaultCleanInterval {
t.Errorf("Expected %q, but got %q", defaultCleanInterval, c.cleanInterval)
}
if c.listenAddr != defaultListenAddr {
t.Errorf("Expected %q, but got %q", defaultListenAddr, c.listenAddr)
}
}
func TestPrefix(t *testing.T) {
// We also test that ToLower() is called on strings
body := `temptxt _dns-challenge. {
txt test1.eXAMple.com user1
txt_alias test2.example.com alias.exaMPLe.com. user1
}`
c := getConfig(body, t)
expectedRecords := []string{
"_dns-challenge.test1.example.com.",
"_dns-challenge.test2.example.com.",
}
expectedAliases := []string{
"test1.example.com.",
"alias.example.com.",
}
if len(expectedRecords) != len(c.records) {
t.Errorf("Expected records to have length %d, but got %d", len(expectedAliases), len(c.records))
}
if len(expectedAliases) != len(c.aliases) {
t.Errorf("Expected aliases to have length %d, but got %d", len(expectedAliases), len(expectedRecords))
}
for _, r := range expectedRecords {
if _, ok := c.records[r]; !ok {
t.Errorf("Expected %q to be in records", r)
}
}
for _, a := range expectedAliases {
if _, ok := c.aliases[a]; !ok {
t.Errorf("Expected %q to be in aliases", a)
}
}
}
func TestPrefixNoTrailingDot(t *testing.T) {
body := `temptxt _dns-challenge {
txt test1.example.com user1
txt_alias test2.example.com alias.example.com. user1
}`
c := getConfig(body, t)
expectedRecords := []string{
"_dns-challenge.test1.example.com.",
"_dns-challenge.test2.example.com.",
}
expectedAliases := []string{
"test1.example.com.",
"alias.example.com.",
}
if len(expectedRecords) != len(c.records) {
t.Errorf("Expected records to have length %d, but got %d", len(expectedAliases), len(c.records))
}
if len(expectedAliases) != len(c.aliases) {
t.Errorf("Expected aliases to have length %d, but got %d", len(expectedAliases), len(expectedRecords))
}
for _, r := range expectedRecords {
if _, ok := c.records[r]; !ok {
t.Errorf("Expected %q to be in records", r)
}
}
for _, a := range expectedAliases {
if _, ok := c.aliases[a]; !ok {
t.Errorf("Expected %q to be in aliases", a)
}
}
}
func TestSuffix(t *testing.T) {
body := `temptxt "" example.com {
txt test1 user1
txt_alias test2 alias.example.com. user1
}`
c := getConfig(body, t)
expectedRecords := []string{
"test1.example.com.",
"test2.example.com.",
}
expectedAliases := []string{
"test1.example.com.",
"alias.example.com.",
}
if len(expectedRecords) != len(c.records) {
t.Errorf("Expected records to have length %d, but got %d", len(expectedAliases), len(c.records))
}
if len(expectedAliases) != len(c.aliases) {
t.Errorf("Expected aliases to have length %d, but got %d", len(expectedAliases), len(expectedRecords))
}
for _, r := range expectedRecords {
if _, ok := c.records[r]; !ok {
t.Errorf("Expected %q to be in records", r)
}
}
for _, a := range expectedAliases {
if _, ok := c.aliases[a]; !ok {
t.Errorf("Expected %q to be in aliases", a)
}
}
}
func TestPrefixAndSuffix(t *testing.T) {
body := `temptxt _dns-challenge. example.com {
txt test1 user1
txt_alias test2 alias.example.com. user1
}`
c := getConfig(body, t)
expectedRecords := []string{
"_dns-challenge.test1.example.com.",
"_dns-challenge.test2.example.com.",
}
expectedAliases := []string{
"test1.example.com.",
"alias.example.com.",
}
if len(expectedRecords) != len(c.records) {
t.Errorf("Expected records to have length %d, but got %d", len(expectedAliases), len(c.records))
}
if len(expectedAliases) != len(c.aliases) {
t.Errorf("Expected aliases to have length %d, but got %d", len(expectedAliases), len(expectedRecords))
}
for _, r := range expectedRecords {
if _, ok := c.records[r]; !ok {
t.Errorf("Expected %q to be in records", r)
}
}
for _, a := range expectedAliases {
if _, ok := c.aliases[a]; !ok {
t.Errorf("Expected %q to be in aliases", a)
}
}
}
func TestNoPrefix(t *testing.T) {
body := `temptxt {
txt test1.example.com user1
txt_alias test2.example.com alias.example.com. user1
}`
c := getConfig(body, t)
expectedRecords := []string{
"test1.example.com.",
"test2.example.com.",
}
expectedAliases := []string{
"test1.example.com.",
"alias.example.com.",
}
if len(expectedRecords) != len(c.records) {
t.Errorf("Expected records to have length %d, but got %d", len(expectedAliases), len(c.records))
}
if len(expectedAliases) != len(c.aliases) {
t.Errorf("Expected aliases to have length %d, but got %d", len(expectedAliases), len(expectedRecords))
}
for _, r := range expectedRecords {
if _, ok := c.records[r]; !ok {
t.Errorf("Expected %q to be in records", r)
}
}
for _, a := range expectedAliases {
if _, ok := c.aliases[a]; !ok {
t.Errorf("Expected %q to be in aliases", a)
}
}
}
func TestAuthHeader(t *testing.T) {
body := `temptxt {
auth_header X-Test
}`
c := getConfig(body, t)
if want := "X-Test"; c.authHeader != want {
t.Errorf("Got %s, expected %s", c.authHeader, want)
}
}
func TestMaxAge(t *testing.T) {
body := `temptxt {
max_age 15m
}`
c := getConfig(body, t)
if want := "15m0s"; c.maxAge.String() != want {
t.Errorf("Got %s, expected %s", c.maxAge, want)
}
}
func TestListen(t *testing.T) {
body := `temptxt {
listen :8080
}`
c := getConfig(body, t)
if want := ":8080"; c.listenAddr != want {
t.Errorf("Got %s, expected %s", c.listenAddr, want)
}
}
func TestCleanInterval(t *testing.T) {
body := `temptxt {
clean_interval 15m
}`
c := getConfig(body, t)
if want := "15m0s"; c.cleanInterval.String() != want {
t.Errorf("Got %s, expected %s", c.cleanInterval, want)
}
}
func TestSubdomainsOne(t *testing.T) {
body := `temptxt {
txt test.example.com user0 user1 user2
}`
c := getConfig(body, t)
if len(c.records) != 1 {
t.Errorf("Expected 1 record, got %d", len(c.records))
}
r0, ok := c.records["test.example.com."]
if !ok {
t.Fatal("Expected test.example.com. to be in records")
}
if len(r0.allowed) != 3 {
t.Errorf("Expected 3 allowed users, got %d", len(r0.allowed))
}
for i, regexp := range r0.allowed {
if want := fmt.Sprintf("^user%d$", i); regexp.String() != want {
t.Errorf("Expected regexp %q, got %q", want, regexp)
}
}
}
// Also test that we normalize to FQDNs
func TestSubdomainsTwo(t *testing.T) {
body := `temptxt {
txt test.example.com user0 user1 user2
txt test2.example.com. user0 user1 user2
}`
c := getConfig(body, t)
if len(c.records) != 2 {
t.Errorf("Expected 2 records, got %d", len(c.records))
}
if _, ok := c.records["test.example.com."]; !ok {
t.Errorf("Expected test.example.com. to be in records")
}
if _, ok := c.records["test2.example.com."]; !ok {
t.Errorf("Expected test2.example.com. to be in records")
}
for k, v := range c.records {
if len(v.allowed) != 3 {
t.Errorf("[%s] Expected 3 allowed users, got %d", k, len(v.allowed))
}
for i, regexp := range v.allowed {
if want := fmt.Sprintf("^user%d$", i); regexp.String() != want {
t.Errorf("[%s] Expected regexp %q, got %q", k, want, regexp)
}
}
}
}