forked from gardener/gardener
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreconciler_test.go
More file actions
487 lines (402 loc) · 19.1 KB
/
Copy pathreconciler_test.go
File metadata and controls
487 lines (402 loc) · 19.1 KB
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and Gardener contributors
//
// SPDX-License-Identifier: Apache-2.0
package certificatesigningrequest_test
import (
"context"
"crypto/rand"
"crypto/rsa"
"crypto/x509/pkix"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
authorizationv1 "k8s.io/api/authorization/v1"
certificatesv1 "k8s.io/api/certificates/v1"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
fakeclientset "k8s.io/client-go/kubernetes/fake"
certificatesclientv1 "k8s.io/client-go/kubernetes/typed/certificates/v1"
certutil "k8s.io/client-go/util/cert"
bootstraptokenapi "k8s.io/cluster-bootstrap/token/api"
bootstraptokenutil "k8s.io/cluster-bootstrap/token/util"
"sigs.k8s.io/controller-runtime/pkg/client"
fakeclient "sigs.k8s.io/controller-runtime/pkg/client/fake"
"sigs.k8s.io/controller-runtime/pkg/client/interceptor"
"sigs.k8s.io/controller-runtime/pkg/reconcile"
v1beta1constants "github.com/gardener/gardener/pkg/apis/core/v1beta1/constants"
"github.com/gardener/gardener/pkg/client/kubernetes"
. "github.com/gardener/gardener/pkg/controllermanager/controller/certificatesigningrequest"
"github.com/gardener/gardener/pkg/utils/kubernetes/bootstraptoken"
secretsutils "github.com/gardener/gardener/pkg/utils/secrets"
)
var _ = Describe("Reconciler", func() {
var (
ctx = context.TODO()
c client.Client
fakeCertificatesClient certificatesclientv1.CertificateSigningRequestInterface
csr *certificatesv1.CertificateSigningRequest
reconciler reconcile.Reconciler
privateKey *rsa.PrivateKey
certificateSubject *pkix.Name
)
BeforeEach(func() {
fakeClientset := fakeclientset.NewSimpleClientset()
fakeCertificatesClient = fakeClientset.CertificatesV1().CertificateSigningRequests()
privateKey, _ = secretsutils.FakeGenerateKey(rand.Reader, 4096)
csr = &certificatesv1.CertificateSigningRequest{
TypeMeta: metav1.TypeMeta{Kind: "CertificateSigningRequest"},
ObjectMeta: metav1.ObjectMeta{
Name: "test-csr",
},
Spec: certificatesv1.CertificateSigningRequestSpec{
Usages: []certificatesv1.KeyUsage{
certificatesv1.UsageDigitalSignature,
certificatesv1.UsageKeyEncipherment,
certificatesv1.UsageClientAuth,
},
SignerName: certificatesv1.KubeAPIServerClientSignerName,
},
}
c = fakeclient.NewClientBuilder().WithScheme(kubernetes.GardenScheme).Build()
reconciler = &Reconciler{Client: c, CertificatesClient: fakeCertificatesClient}
})
It("should return nil because object not found", func() {
result, err := reconciler.Reconcile(ctx, reconcile.Request{NamespacedName: types.NamespacedName{Name: csr.Name}})
Expect(result).To(Equal(reconcile.Result{}))
Expect(err).NotTo(HaveOccurred())
})
Context("when csr is in final state", func() {
It("should ignore it because certificate is present in the status field", func() {
csr.Status.Certificate = []byte("test-certificate")
Expect(c.Create(ctx, csr.DeepCopy())).To(Succeed())
result, err := reconciler.Reconcile(ctx, reconcile.Request{NamespacedName: types.NamespacedName{Name: csr.Name}})
Expect(result).To(Equal(reconcile.Result{}))
Expect(err).NotTo(HaveOccurred())
})
It("should ignore it because csr is Approved", func() {
csr.Status.Conditions = append(csr.Status.Conditions, certificatesv1.CertificateSigningRequestCondition{
Type: certificatesv1.CertificateApproved,
})
Expect(c.Create(ctx, csr.DeepCopy())).To(Succeed())
result, err := reconciler.Reconcile(ctx, reconcile.Request{NamespacedName: types.NamespacedName{Name: csr.Name}})
Expect(result).To(Equal(reconcile.Result{}))
Expect(err).NotTo(HaveOccurred())
})
})
Context("non seedclient csr", func() {
BeforeEach(func() {
certificateSubject = &pkix.Name{
Organization: []string{"foo"},
}
csrData, err := certutil.MakeCSR(privateKey, certificateSubject, nil, nil)
Expect(err).NotTo(HaveOccurred())
csr.Spec.Request = csrData
Expect(c.Create(ctx, csr.DeepCopy())).To(Succeed())
})
It("should ignore the csr because csr does not match the requirements for a client certificate for a seed", func() {
result, err := reconciler.Reconcile(ctx, reconcile.Request{NamespacedName: types.NamespacedName{Name: csr.Name}})
Expect(result).To(Equal(reconcile.Result{}))
Expect(err).NotTo(HaveOccurred())
})
})
Context("seedclient csr", func() {
BeforeEach(func() {
certificateSubject = &pkix.Name{
Organization: []string{v1beta1constants.SeedsGroup},
CommonName: v1beta1constants.SeedUserNamePrefix + "csr-test",
}
csrData, err := certutil.MakeCSR(privateKey, certificateSubject, nil, nil)
Expect(err).NotTo(HaveOccurred())
csr.Spec.Request = csrData
// Build client with SAR interceptor that allows admin
c = fakeclient.NewClientBuilder().
WithScheme(kubernetes.GardenScheme).
WithInterceptorFuncs(interceptor.Funcs{
Create: func(ctx context.Context, cl client.WithWatch, obj client.Object, opts ...client.CreateOption) error {
if sar, ok := obj.(*authorizationv1.SubjectAccessReview); ok {
if sar.Spec.User == "admin" {
sar.Status = authorizationv1.SubjectAccessReviewStatus{Allowed: true}
} else {
sar.Status = authorizationv1.SubjectAccessReviewStatus{Allowed: false}
}
return nil
}
return cl.Create(ctx, obj, opts...)
},
}).
Build()
reconciler = &Reconciler{Client: c, CertificatesClient: fakeCertificatesClient}
})
It("should result an error when user does not have authorization for seedclient subresource (sar.Status.Allowed is false)", func() {
csrObj := csr.DeepCopy()
csrObj.Spec.Username = "foo"
Expect(c.Create(ctx, csrObj)).To(Succeed())
result, err := reconciler.Reconcile(ctx, reconcile.Request{NamespacedName: types.NamespacedName{Name: csr.Name}})
Expect(result).To(Equal(reconcile.Result{}))
Expect(err).To(MatchError(ContainSubstring("recognized CSR but SubjectAccessReview was not allowed")))
})
It("should approve the csr when user has authorization for seedclient subresource (sar.Status.Allowed is true)", func() {
_, err := fakeCertificatesClient.Create(ctx, csr, metav1.CreateOptions{})
Expect(err).NotTo(HaveOccurred())
csrObj := csr.DeepCopy()
csrObj.Spec.Username = "admin"
Expect(c.Create(ctx, csrObj)).To(Succeed())
result, err := reconciler.Reconcile(ctx, reconcile.Request{NamespacedName: types.NamespacedName{Name: csr.Name}})
Expect(result).To(Equal(reconcile.Result{}))
Expect(err).NotTo(HaveOccurred())
})
})
Context("shootclient csr", func() {
var (
shootNamespace = "test-namespace"
shootName = "test-shoot"
bootstrapTokenID = "abcdef"
bootstrapTokenName = bootstraptokenutil.BootstrapTokenSecretName(bootstrapTokenID)
bootstrapUsername = bootstraptokenapi.BootstrapUserPrefix + bootstrapTokenID
)
BeforeEach(func() {
certificateSubject = &pkix.Name{
Organization: []string{v1beta1constants.ShootsGroup},
CommonName: v1beta1constants.ShootUserNamePrefix + shootNamespace + ":" + shootName,
}
csrData, err := certutil.MakeCSR(privateKey, certificateSubject, nil, nil)
Expect(err).NotTo(HaveOccurred())
csr.Spec.Request = csrData
})
buildClientWithSAR := func(bootstrapUser string) client.Client {
cl := fakeclient.NewClientBuilder().
WithScheme(kubernetes.GardenScheme).
WithInterceptorFuncs(interceptor.Funcs{
Create: func(ctx context.Context, cl client.WithWatch, obj client.Object, opts ...client.CreateOption) error {
if sar, ok := obj.(*authorizationv1.SubjectAccessReview); ok {
if sar.Spec.User == bootstrapUser {
sar.Status = authorizationv1.SubjectAccessReviewStatus{Allowed: true}
} else {
sar.Status = authorizationv1.SubjectAccessReviewStatus{Allowed: false}
}
return nil
}
return cl.Create(ctx, obj, opts...)
},
}).
Build()
return cl
}
When("CSR is not requested via bootstrap token", func() {
It("should result an error when username does not have bootstrap token prefix", func() {
_, err := fakeCertificatesClient.Create(ctx, csr, metav1.CreateOptions{})
Expect(err).NotTo(HaveOccurred())
csrObj := csr.DeepCopy()
csrObj.Spec.Username = "regular-user"
csrObj.Spec.Groups = []string{"system:authenticated"}
c = buildClientWithSAR(bootstrapUsername)
Expect(c.Create(ctx, csrObj)).To(Succeed())
reconciler = &Reconciler{Client: c, CertificatesClient: fakeCertificatesClient}
result, err := reconciler.Reconcile(ctx, reconcile.Request{NamespacedName: types.NamespacedName{Name: csr.Name}})
Expect(result).To(Equal(reconcile.Result{}))
Expect(err).NotTo(HaveOccurred())
// Verify the CSR was denied
updatedCSR, err := fakeCertificatesClient.Get(ctx, csr.Name, metav1.GetOptions{})
Expect(err).NotTo(HaveOccurred())
Expect(updatedCSR.Status.Conditions).To(HaveLen(1))
Expect(updatedCSR.Status.Conditions[0].Type).To(Equal(certificatesv1.CertificateDenied))
})
It("should result an error when groups do not contain bootstrap default group", func() {
_, err := fakeCertificatesClient.Create(ctx, csr, metav1.CreateOptions{})
Expect(err).NotTo(HaveOccurred())
csrObj := csr.DeepCopy()
csrObj.Spec.Username = bootstrapUsername
csrObj.Spec.Groups = []string{"system:authenticated"}
c = buildClientWithSAR(bootstrapUsername)
Expect(c.Create(ctx, csrObj)).To(Succeed())
reconciler = &Reconciler{Client: c, CertificatesClient: fakeCertificatesClient}
result, err := reconciler.Reconcile(ctx, reconcile.Request{NamespacedName: types.NamespacedName{Name: csr.Name}})
Expect(result).To(Equal(reconcile.Result{}))
Expect(err).NotTo(HaveOccurred())
// Verify the CSR was denied
updatedCSR, err := fakeCertificatesClient.Get(ctx, csr.Name, metav1.GetOptions{})
Expect(err).NotTo(HaveOccurred())
Expect(updatedCSR.Status.Conditions).To(HaveLen(1))
Expect(updatedCSR.Status.Conditions[0].Type).To(Equal(certificatesv1.CertificateDenied))
})
})
When("bootstrap token secret does not exist", func() {
It("should lead to denial of the CSR", func() {
_, err := fakeCertificatesClient.Create(ctx, csr, metav1.CreateOptions{})
Expect(err).NotTo(HaveOccurred())
csrObj := csr.DeepCopy()
csrObj.Spec.Username = bootstrapUsername
csrObj.Spec.Groups = []string{bootstraptokenapi.BootstrapDefaultGroup}
// No bootstrap token secret created
c = buildClientWithSAR(bootstrapUsername)
Expect(c.Create(ctx, csrObj)).To(Succeed())
reconciler = &Reconciler{Client: c, CertificatesClient: fakeCertificatesClient}
result, err := reconciler.Reconcile(ctx, reconcile.Request{NamespacedName: types.NamespacedName{Name: csr.Name}})
Expect(result).To(Equal(reconcile.Result{}))
Expect(err).NotTo(HaveOccurred())
// Verify the CSR was denied
updatedCSR, err := fakeCertificatesClient.Get(ctx, csr.Name, metav1.GetOptions{})
Expect(err).NotTo(HaveOccurred())
Expect(updatedCSR.Status.Conditions).To(HaveLen(1))
Expect(updatedCSR.Status.Conditions[0].Type).To(Equal(certificatesv1.CertificateDenied))
})
})
When("bootstrap token secret has invalid description", func() {
It("should lead to denial of the CSR when description does not have self-hosted shoot prefix", func() {
bootstrapTokenSecret := &corev1.Secret{
ObjectMeta: metav1.ObjectMeta{
Name: bootstrapTokenName,
Namespace: metav1.NamespaceSystem,
},
Data: map[string][]byte{
bootstraptokenapi.BootstrapTokenDescriptionKey: []byte("Invalid description"),
},
}
_, err := fakeCertificatesClient.Create(ctx, csr, metav1.CreateOptions{})
Expect(err).NotTo(HaveOccurred())
csrObj := csr.DeepCopy()
csrObj.Spec.Username = bootstrapUsername
csrObj.Spec.Groups = []string{bootstraptokenapi.BootstrapDefaultGroup}
c = buildClientWithSAR(bootstrapUsername)
Expect(c.Create(ctx, csrObj)).To(Succeed())
Expect(c.Create(ctx, bootstrapTokenSecret)).To(Succeed())
reconciler = &Reconciler{Client: c, CertificatesClient: fakeCertificatesClient}
result, err := reconciler.Reconcile(ctx, reconcile.Request{NamespacedName: types.NamespacedName{Name: csr.Name}})
Expect(result).To(Equal(reconcile.Result{}))
Expect(err).NotTo(HaveOccurred())
// Verify the CSR was denied
updatedCSR, err := fakeCertificatesClient.Get(ctx, csr.Name, metav1.GetOptions{})
Expect(err).NotTo(HaveOccurred())
Expect(updatedCSR.Status.Conditions).To(HaveLen(1))
Expect(updatedCSR.Status.Conditions[0].Type).To(Equal(certificatesv1.CertificateDenied))
})
It("should lead to denial of the CSR when description has invalid shoot metadata format", func() {
bootstrapTokenSecret := &corev1.Secret{
ObjectMeta: metav1.ObjectMeta{
Name: bootstrapTokenName,
Namespace: metav1.NamespaceSystem,
},
Data: map[string][]byte{
bootstraptokenapi.BootstrapTokenDescriptionKey: []byte(bootstraptoken.SelfHostedShootBootstrapTokenSecretDescriptionPrefix + "invalid-format"),
},
}
_, err := fakeCertificatesClient.Create(ctx, csr, metav1.CreateOptions{})
Expect(err).NotTo(HaveOccurred())
csrObj := csr.DeepCopy()
csrObj.Spec.Username = bootstrapUsername
csrObj.Spec.Groups = []string{bootstraptokenapi.BootstrapDefaultGroup}
c = buildClientWithSAR(bootstrapUsername)
Expect(c.Create(ctx, csrObj)).To(Succeed())
Expect(c.Create(ctx, bootstrapTokenSecret)).To(Succeed())
reconciler = &Reconciler{Client: c, CertificatesClient: fakeCertificatesClient}
result, err := reconciler.Reconcile(ctx, reconcile.Request{NamespacedName: types.NamespacedName{Name: csr.Name}})
Expect(result).To(Equal(reconcile.Result{}))
Expect(err).NotTo(HaveOccurred())
// Verify the CSR was denied
updatedCSR, err := fakeCertificatesClient.Get(ctx, csr.Name, metav1.GetOptions{})
Expect(err).NotTo(HaveOccurred())
Expect(updatedCSR.Status.Conditions).To(HaveLen(1))
Expect(updatedCSR.Status.Conditions[0].Type).To(Equal(certificatesv1.CertificateDenied))
})
})
When("CSR subject does not match bootstrap token description", func() {
It("should lead to denial of the CSR when common name does not match expected format", func() {
// Create CSR with mismatched subject
wrongCertificateSubject := &pkix.Name{
Organization: []string{v1beta1constants.ShootsGroup},
CommonName: v1beta1constants.ShootUserNamePrefix + "wrong-namespace:wrong-shoot",
}
wrongCSRData, err := certutil.MakeCSR(privateKey, wrongCertificateSubject, nil, nil)
Expect(err).NotTo(HaveOccurred())
_, err = fakeCertificatesClient.Create(ctx, csr, metav1.CreateOptions{})
Expect(err).NotTo(HaveOccurred())
bootstrapTokenSecret := &corev1.Secret{
ObjectMeta: metav1.ObjectMeta{
Name: bootstrapTokenName,
Namespace: metav1.NamespaceSystem,
},
Data: map[string][]byte{
bootstraptokenapi.BootstrapTokenDescriptionKey: []byte(bootstraptoken.SelfHostedShootBootstrapTokenSecretDescriptionPrefix + shootNamespace + "/" + shootName),
},
}
csrObj := csr.DeepCopy()
csrObj.Spec.Username = bootstrapUsername
csrObj.Spec.Groups = []string{bootstraptokenapi.BootstrapDefaultGroup}
csrObj.Spec.Request = wrongCSRData
c = buildClientWithSAR(bootstrapUsername)
Expect(c.Create(ctx, csrObj)).To(Succeed())
Expect(c.Create(ctx, bootstrapTokenSecret)).To(Succeed())
reconciler = &Reconciler{Client: c, CertificatesClient: fakeCertificatesClient}
result, err := reconciler.Reconcile(ctx, reconcile.Request{NamespacedName: types.NamespacedName{Name: csr.Name}})
Expect(result).To(Equal(reconcile.Result{}))
Expect(err).NotTo(HaveOccurred())
// Verify the CSR was denied
updatedCSR, err := fakeCertificatesClient.Get(ctx, csr.Name, metav1.GetOptions{})
Expect(err).NotTo(HaveOccurred())
Expect(updatedCSR.Status.Conditions).To(HaveLen(1))
Expect(updatedCSR.Status.Conditions[0].Type).To(Equal(certificatesv1.CertificateDenied))
})
})
When("user does not have authorization for shootclient subresource", func() {
It("should lead to denial of the CSR when sar.Status.Allowed is false", func() {
bootstrapTokenSecret := &corev1.Secret{
ObjectMeta: metav1.ObjectMeta{
Name: bootstrapTokenName,
Namespace: metav1.NamespaceSystem,
},
Data: map[string][]byte{
bootstraptokenapi.BootstrapTokenDescriptionKey: []byte(bootstraptoken.SelfHostedShootBootstrapTokenSecretDescriptionPrefix + shootNamespace + "/" + shootName),
},
}
_, err := fakeCertificatesClient.Create(ctx, csr, metav1.CreateOptions{})
Expect(err).NotTo(HaveOccurred())
csrObj := csr.DeepCopy()
csrObj.Spec.Username = "unauthorized-user"
csrObj.Spec.Groups = []string{bootstraptokenapi.BootstrapDefaultGroup}
c = buildClientWithSAR(bootstrapUsername)
Expect(c.Create(ctx, csrObj)).To(Succeed())
Expect(c.Create(ctx, bootstrapTokenSecret)).To(Succeed())
reconciler = &Reconciler{Client: c, CertificatesClient: fakeCertificatesClient}
result, err := reconciler.Reconcile(ctx, reconcile.Request{NamespacedName: types.NamespacedName{Name: csr.Name}})
Expect(result).To(Equal(reconcile.Result{}))
Expect(err).NotTo(HaveOccurred())
// Verify the CSR was denied
updatedCSR, err := fakeCertificatesClient.Get(ctx, csr.Name, metav1.GetOptions{})
Expect(err).NotTo(HaveOccurred())
Expect(updatedCSR.Status.Conditions).To(HaveLen(1))
Expect(updatedCSR.Status.Conditions[0].Type).To(Equal(certificatesv1.CertificateDenied))
})
})
When("all requirements are met", func() {
It("should approve the csr when user has authorization for shootclient subresource", func() {
bootstrapTokenSecret := &corev1.Secret{
ObjectMeta: metav1.ObjectMeta{
Name: bootstrapTokenName,
Namespace: metav1.NamespaceSystem,
},
Data: map[string][]byte{
bootstraptokenapi.BootstrapTokenDescriptionKey: []byte(bootstraptoken.SelfHostedShootBootstrapTokenSecretDescriptionPrefix + shootNamespace + "/" + shootName),
},
}
_, err := fakeCertificatesClient.Create(ctx, csr, metav1.CreateOptions{})
Expect(err).NotTo(HaveOccurred())
csrObj := csr.DeepCopy()
csrObj.Spec.Username = bootstrapUsername
csrObj.Spec.Groups = []string{bootstraptokenapi.BootstrapDefaultGroup}
c = buildClientWithSAR(bootstrapUsername)
Expect(c.Create(ctx, csrObj)).To(Succeed())
Expect(c.Create(ctx, bootstrapTokenSecret)).To(Succeed())
reconciler = &Reconciler{Client: c, CertificatesClient: fakeCertificatesClient}
result, err := reconciler.Reconcile(ctx, reconcile.Request{NamespacedName: types.NamespacedName{Name: csr.Name}})
Expect(result).To(Equal(reconcile.Result{}))
Expect(err).NotTo(HaveOccurred())
// Verify the CSR was approved
updatedCSR, err := fakeCertificatesClient.Get(ctx, csr.Name, metav1.GetOptions{})
Expect(err).NotTo(HaveOccurred())
Expect(updatedCSR.Status.Conditions).To(HaveLen(1))
Expect(updatedCSR.Status.Conditions[0].Type).To(Equal(certificatesv1.CertificateApproved))
Expect(updatedCSR.Status.Conditions[0].Reason).To(Equal("AutoApproved"))
})
})
})
})