forked from kubeflow/katib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generator_test.go
274 lines (259 loc) · 7.97 KB
/
generator_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
/*
Copyright 2022 The Kubeflow Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package certgenerator
import (
"context"
"os"
"path/filepath"
"strings"
"testing"
"time"
"github.com/google/go-cmp/cmp"
"github.com/google/go-cmp/cmp/cmpopts"
admissionregistration "k8s.io/api/admissionregistration/v1"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes/scheme"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/client/fake"
configv1beta1 "github.com/kubeflow/katib/pkg/apis/config/v1beta1"
"github.com/kubeflow/katib/pkg/controller.v1beta1/consts"
)
func TestGenerate(t *testing.T) {
const testNamespace = "test"
emptyVWebhookConfig := &admissionregistration.ValidatingWebhookConfiguration{
TypeMeta: metav1.TypeMeta{
APIVersion: admissionregistration.SchemeGroupVersion.String(),
Kind: "ValidatingWebhookConfiguration",
},
ObjectMeta: metav1.ObjectMeta{
Name: Webhook,
},
Webhooks: []admissionregistration.ValidatingWebhook{
{
Name: strings.Join([]string{"validator.experiment", Webhook}, "."),
ClientConfig: admissionregistration.WebhookClientConfig{},
},
},
}
emptyMWebhookConfig := &admissionregistration.MutatingWebhookConfiguration{
TypeMeta: metav1.TypeMeta{
APIVersion: admissionregistration.SchemeGroupVersion.String(),
Kind: "MutatingWebhookConfiguration",
},
ObjectMeta: metav1.ObjectMeta{
Name: Webhook,
},
Webhooks: []admissionregistration.MutatingWebhook{
{
Name: strings.Join([]string{"defaulter.experiment", Webhook}, "."),
ClientConfig: admissionregistration.WebhookClientConfig{},
},
{
Name: strings.Join([]string{"mutator.pod", Webhook}, "."),
ClientConfig: admissionregistration.WebhookClientConfig{},
},
},
}
webhookSecret := &corev1.Secret{
TypeMeta: metav1.TypeMeta{
Kind: "Secret",
APIVersion: corev1.SchemeGroupVersion.String(),
},
ObjectMeta: metav1.ObjectMeta{
Name: "katib-test-secret",
Namespace: testNamespace,
},
}
controllerService := &corev1.Service{
TypeMeta: metav1.TypeMeta{
Kind: "Service",
APIVersion: corev1.SchemeGroupVersion.String(),
},
ObjectMeta: metav1.ObjectMeta{
Name: configv1beta1.DefaultWebhookServiceName,
Namespace: testNamespace,
},
}
tests := map[string]struct {
objects []client.Object
opts *CertGenerator
wantError error
}{
"Generate successfully": {
opts: &CertGenerator{
namespace: testNamespace,
webhookServiceName: "katib-controller",
webhookSecretName: "katib-test-secret",
},
objects: []client.Object{
emptyVWebhookConfig,
emptyMWebhookConfig,
controllerService,
webhookSecret,
},
},
"There is not ValidatingWebhookConfiguration": {
opts: &CertGenerator{
namespace: testNamespace,
webhookServiceName: "katib-controller",
webhookSecretName: "katib-test-secret",
},
objects: []client.Object{
emptyMWebhookConfig,
controllerService,
webhookSecret,
},
wantError: errInjectCertError,
},
"There is not MutatingWebhookConfiguration": {
opts: &CertGenerator{
namespace: testNamespace,
webhookServiceName: "katib-controller",
webhookSecretName: "katib-test-secret",
},
objects: []client.Object{
emptyVWebhookConfig,
controllerService,
webhookSecret,
},
wantError: errInjectCertError,
},
"There is not Service katib-controller": {
opts: &CertGenerator{
namespace: testNamespace,
webhookServiceName: "katib-controller",
webhookSecretName: "katib-test-secret",
},
objects: []client.Object{
emptyVWebhookConfig,
emptyMWebhookConfig,
webhookSecret,
},
wantError: errServiceNotFound,
},
"There is not Secret katib-webhook-cert": {
opts: &CertGenerator{
namespace: testNamespace,
webhookServiceName: "katib-controller",
webhookSecretName: "katib-test-secret",
},
objects: []client.Object{
emptyVWebhookConfig,
emptyMWebhookConfig,
controllerService,
},
wantError: errCertCheckFail,
},
}
for name, tc := range tests {
t.Run(name, func(t *testing.T) {
kc := buildFakeClient(tc.objects)
tc.opts.kubeClient = kc
err := tc.opts.generate(context.Background())
if diff := cmp.Diff(tc.wantError, err, cmpopts.EquateErrors()); len(diff) != 0 {
t.Errorf("Unexpected error from generate() (-want,+got):\n%s", diff)
}
if tc.wantError == nil {
secret := &corev1.Secret{}
if err = kc.Get(context.Background(), client.ObjectKey{Name: tc.opts.webhookSecretName, Namespace: testNamespace}, secret); err != nil {
t.Fatalf("Failed to get a webhookSecret: %v", err)
}
if len(secret.Data[serverKeyName]) == 0 {
t.Errorf("Unexpected tls.key embedded in secret: %v", secret.Data)
}
if len(secret.Data[serverCertName]) == 0 {
t.Errorf("Unexpected tls.crt embedded in secret: %v", secret.Data)
}
vConfig := &admissionregistration.ValidatingWebhookConfiguration{}
if err = kc.Get(context.Background(), client.ObjectKey{Name: Webhook}, vConfig); err != nil {
t.Fatalf("Failed to get a ValidatingWebhookConfiguration: %v", err)
}
if len(vConfig.Webhooks[0].ClientConfig.CABundle) == 0 {
t.Errorf("Unexpected tls.crt embedded in ValidatingWebhookConfiguration: %v", vConfig.Webhooks)
}
mConfig := &admissionregistration.MutatingWebhookConfiguration{}
if err = kc.Get(context.Background(), client.ObjectKey{Name: Webhook}, mConfig); err != nil {
t.Fatalf("Failed to get a MutatingWebhookConfiguration: %v", err)
}
if len(mConfig.Webhooks[0].ClientConfig.CABundle) == 0 || len(mConfig.Webhooks[1].ClientConfig.CABundle) == 0 {
t.Errorf("Unexpected tls.crt embedded in MutatingWebhookConfiguration: %v", mConfig.Webhooks)
}
}
})
}
}
func buildFakeClient(kubeResources []client.Object) client.Client {
fakeClientBuilder := fake.NewClientBuilder().WithScheme(scheme.Scheme)
if len(kubeResources) > 0 {
fakeClientBuilder.WithObjects(kubeResources...)
}
return fakeClientBuilder.Build()
}
func TestEnsureCertMounted(t *testing.T) {
tests := map[string]struct {
keyExist bool
certExist bool
wantExist bool
}{
"key and cert exist": {
keyExist: true,
certExist: true,
wantExist: true,
},
"key doesn't exist": {
keyExist: false,
certExist: true,
wantExist: false,
},
"cert doesn't exist": {
keyExist: true,
certExist: false,
wantExist: false,
},
"all files doesn't exist": {
keyExist: false,
certExist: false,
wantExist: false,
},
}
for name, tc := range tests {
t.Run(name, func(t *testing.T) {
if tc.keyExist || tc.certExist {
if err := os.MkdirAll(consts.CertDir, 0760); err != nil {
t.Fatalf("Failed to set up directory: %v", err)
}
defer func() {
if err := os.RemoveAll(consts.CertDir); err != nil {
t.Fatalf("Failed to clean up directory: %v", err)
}
}()
}
if tc.keyExist {
if _, err := os.Create(filepath.Join(consts.CertDir, serverKeyName)); err != nil {
t.Fatalf("Failed to create tls.key: %v", err)
}
}
if tc.certExist {
if _, err := os.Create(filepath.Join(consts.CertDir, serverCertName)); err != nil {
t.Fatalf("Failed to create tls.crt: %v", err)
}
}
ensureFunc := ensureCertMounted(time.Now())
got, _ := ensureFunc(context.Background())
if tc.wantExist != got {
t.Errorf("Unexpected value from ensureCertMounted: \n(want: %v, got: %v)\n", tc.wantExist, got)
}
})
}
}