-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain_test.go
72 lines (61 loc) · 2.07 KB
/
main_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
package main
import (
"testing"
// "github.com/jetstack/cert-manager/test/acme/dns"
"github.com/stretchr/testify/assert"
corev1 "k8s.io/api/core/v1"
)
// var (
// zone = "test-domain.com."
// )
func CreatesClientFromSecretValues(t *testing.T) {
configJson := corev1.Secret{
Data: map[string][]byte{
"username": []byte("user"),
"password": []byte("password"),
"apiToken": []byte("apiToken"),
},
}
client, err := CreateClientFromSecretValues(&configJson, "zone", "cpanel")
if err != nil {
t.Error("Unexpected error")
}
assert.Equal(t, "username", client.Username)
assert.Equal(t, "password", client.Password)
assert.Equal(t, "apiToken", client.ApiToken)
assert.Equal(t, "zone", client.DnsZone)
assert.Equal(t, "cpanel", client.CpanelUrl)
}
func ReturnsErrorDueToMissingUsername(t *testing.T) {
emptyConfig := corev1.Secret{
Data: map[string][]byte{
"password": []byte("password"),
},
}
_, err := CreateClientFromSecretValues(&emptyConfig, "zone", "cpanel")
assert.EqualError(t, err, "username field not present in secret")
}
func ReturnsErrorDueToMissingCredentials(t *testing.T) {
emptyConfig := corev1.Secret{
Data: map[string][]byte{
"username": []byte("user"),
},
}
_, err := CreateClientFromSecretValues(&emptyConfig, "zone", "cpanel")
assert.EqualError(t, err, "username field not present in secret")
}
func TestRunsSuite(t *testing.T) {
// TODO(jamesorlakin): Need to test main webhook logic. Not sure how to fake a k8s client secret?
// The manifest path should contain a file named config.json that is a
// snippet of valid configuration that should be included on the
// ChallengeRequest passed as part of the test cases.
// fixture := dns.NewFixture(&customDNSProviderSolver{},
// dns.SetResolvedZone(zone),
// dns.SetAllowAmbientCredentials(false),
// dns.SetManifestPath("testdata/my-custom-solver"),
// )
//need to uncomment and RunConformance delete runBasic and runExtended once https://github.com/cert-manager/cert-manager/pull/4835 is merged
//fixture.RunConformance(t)
// fixture.RunBasic(t)
// fixture.RunExtended(t)
}