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
|
package clouddns
import (
"context"
"testing"
"github.com/coredns/caddy"
"google.golang.org/api/option"
)
func TestSetupCloudDNS(t *testing.T) {
f = func(ctx context.Context, opt option.ClientOption) (gcpDNS, error) {
return fakeGCPClient{}, nil
}
tests := []struct {
body string
expectedError bool
}{
{`clouddns`, false},
{`clouddns :`, true},
{`clouddns ::`, true},
{`clouddns example.org.:example-project:zone-name`, false},
{`clouddns example.org.:example-project:zone-name { }`, false},
{`clouddns example.org.:example-project: { }`, true},
{`clouddns example.org.:example-project:zone-name { }`, false},
{`clouddns example.org.:example-project:zone-name { wat
}`, true},
{`clouddns example.org.:example-project:zone-name {
fallthrough
}`, false},
{`clouddns example.org.:example-project:zone-name {
credentials
}`, true},
{`clouddns example.org.:example-project:zone-name example.org.:example-project:zone-name {
}`, true},
{`clouddns example.org {
}`, true},
}
for _, test := range tests {
c := caddy.NewTestController("dns", test.body)
if err := setup(c); (err == nil) == test.expectedError {
t.Errorf("Unexpected errors: %v", err)
}
}
}
|