-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathsync_test.go
84 lines (78 loc) · 2.21 KB
/
sync_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
package main
import (
"context"
"testing"
cloudflare "github.com/cloudflare/cloudflare-go"
"github.com/stretchr/testify/assert"
)
type mockAPI struct {
listZones func(z ...string) ([]cloudflare.Zone, error)
}
func (m mockAPI) ListZones(ctx context.Context, z ...string) ([]cloudflare.Zone, error) {
return m.listZones(z...)
}
func TestFindZoneID(t *testing.T) {
ctx := context.Background()
t.Run("subdomain", func(t *testing.T) {
zoneID, err := findZoneID(ctx, mockAPI{
listZones: func(z ...string) ([]cloudflare.Zone, error) {
return []cloudflare.Zone{
{ID: "1", Name: "example.com"},
}, nil
},
}, "kubernetes.example.com")
assert.Nil(t, err)
assert.Equal(t, "1", zoneID)
})
t.Run("domain", func(t *testing.T) {
zoneID, err := findZoneID(ctx, mockAPI{
listZones: func(z ...string) ([]cloudflare.Zone, error) {
return []cloudflare.Zone{
{ID: "1", Name: "example.com"},
}, nil
},
}, "example.com")
assert.Nil(t, err)
assert.Equal(t, "1", zoneID)
})
t.Run("partial domain", func(t *testing.T) {
zoneID, err := findZoneID(ctx, mockAPI{
listZones: func(z ...string) ([]cloudflare.Zone, error) {
return []cloudflare.Zone{
{ID: "1", Name: "example.com"}, // a bare suffix match would inadvertently match this domain
{ID: "2", Name: "anotherexample.com"},
}, nil
},
}, "anotherexample.com")
assert.Nil(t, err)
assert.Equal(t, "2", zoneID)
})
t.Run(".co.uk", func(t *testing.T) {
zoneID, err := findZoneID(ctx, mockAPI{
listZones: func(z ...string) ([]cloudflare.Zone, error) {
return []cloudflare.Zone{
{ID: "1", Name: "example.co.uk"},
}, nil
},
}, "subdomain.example.co.uk")
assert.Nil(t, err)
assert.Equal(t, "1", zoneID)
})
}
func TestNewCloudflareClient(t *testing.T) {
t.Run("token", func(t *testing.T) {
api, err := newCloudflareClient("TEST", "", "")
assert.NoError(t, err)
assert.Equal(t, "TEST", api.APIToken)
})
t.Run("email", func(t *testing.T) {
api, err := newCloudflareClient("", "EMAIL", "KEY")
assert.NoError(t, err)
assert.Equal(t, "EMAIL", api.APIEmail)
assert.Equal(t, "KEY", api.APIKey)
})
t.Run("missing", func(t *testing.T) {
_, err := newCloudflareClient("", "", "")
assert.Error(t, err)
})
}