forked from operator-framework/operator-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenqueue_annotation_test.go
429 lines (365 loc) · 11.3 KB
/
enqueue_annotation_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
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
// Copyright 2020 The Operator-SDK 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 handler
import (
"context"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
appsv1 "k8s.io/api/apps/v1"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/apimachinery/pkg/types"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/controller/controllertest"
"sigs.k8s.io/controller-runtime/pkg/event"
"sigs.k8s.io/controller-runtime/pkg/reconcile"
"k8s.io/client-go/util/workqueue"
)
var _ = Describe("EnqueueRequestForAnnotation", func() {
ctx := context.TODO()
var q workqueue.RateLimitingInterface
var instance EnqueueRequestForAnnotation[client.Object]
var pod *corev1.Pod
var podOwner *corev1.Pod
BeforeEach(func() {
q = &controllertest.Queue{Interface: workqueue.New()}
pod = &corev1.Pod{
ObjectMeta: metav1.ObjectMeta{
Namespace: "biz",
Name: "biz",
},
}
podOwner = &corev1.Pod{
ObjectMeta: metav1.ObjectMeta{
Namespace: "podOwnerNs",
Name: "podOwnerName",
},
}
podOwner.SetGroupVersionKind(schema.GroupVersionKind{Group: "", Kind: "Pod"})
Expect(SetOwnerAnnotations(podOwner, pod)).To(Succeed())
instance = EnqueueRequestForAnnotation[client.Object]{
Type: schema.GroupKind{
Group: "",
Kind: "Pod",
},
}
})
Describe("Create", func() {
It("should enqueue a Request with the annotations of the object in case of CreateEvent", func() {
evt := event.CreateEvent{
Object: pod,
}
instance.Create(ctx, evt, q)
Expect(q.Len()).To(Equal(1))
i, _ := q.Get()
Expect(i).To(Equal(reconcile.Request{
NamespacedName: types.NamespacedName{
Namespace: podOwner.Namespace,
Name: podOwner.Name,
},
}))
})
It("should enqueue a Request to the owner resource when the annotations are applied in child object"+
" in the Create Event", func() {
repl := &appsv1.ReplicaSet{
ObjectMeta: metav1.ObjectMeta{
Namespace: "foo",
Name: "faz",
},
}
Expect(SetOwnerAnnotations(podOwner, repl)).To(Succeed())
evt := event.CreateEvent{
Object: repl,
}
instance.Create(ctx, evt, q)
Expect(q.Len()).To(Equal(1))
i, _ := q.Get()
Expect(i).To(Equal(reconcile.Request{
NamespacedName: types.NamespacedName{
Namespace: podOwner.Namespace,
Name: podOwner.Name,
},
}))
})
It("should not enqueue a request if there are no annotations matching with the object", func() {
repl := &appsv1.ReplicaSet{
ObjectMeta: metav1.ObjectMeta{
Namespace: "foo",
Name: "faz",
},
}
evt := event.CreateEvent{
Object: repl,
}
instance.Create(ctx, evt, q)
Expect(q.Len()).To(Equal(0))
})
It("should not enqueue a Request if there is no Namespace and name annotation matching the specified object are found", func() {
repl := &appsv1.ReplicaSet{
ObjectMeta: metav1.ObjectMeta{
Namespace: "foo",
Name: "faz",
Annotations: map[string]string{
TypeAnnotation: schema.GroupKind{Group: "", Kind: "Pod"}.String(),
},
},
}
evt := event.CreateEvent{
Object: repl,
}
instance.Create(ctx, evt, q)
Expect(q.Len()).To(Equal(0))
})
It("should not enqueue a Request if there is no TypeAnnotation matching the specified Group and Kind", func() {
repl := &appsv1.ReplicaSet{
ObjectMeta: metav1.ObjectMeta{
Namespace: "foo",
Name: "faz",
Annotations: map[string]string{
NamespacedNameAnnotation: "AppService",
},
},
}
evt := event.CreateEvent{
Object: repl,
}
instance.Create(ctx, evt, q)
Expect(q.Len()).To(Equal(0))
})
It("should enqueue a Request if there are no Namespace annotation matching the object", func() {
repl := &appsv1.ReplicaSet{
ObjectMeta: metav1.ObjectMeta{
Namespace: "foo",
Name: "faz",
Annotations: map[string]string{
NamespacedNameAnnotation: "AppService",
TypeAnnotation: schema.GroupKind{Group: "", Kind: "Pod"}.String(),
},
},
}
evt := event.CreateEvent{
Object: repl,
}
instance.Create(ctx, evt, q)
Expect(q.Len()).To(Equal(1))
i, _ := q.Get()
Expect(i).To(Equal(reconcile.Request{
NamespacedName: types.NamespacedName{Namespace: "", Name: "AppService"},
}))
})
It("should enqueue a Request for an object that is cluster scoped which has the annotations", func() {
nd := &corev1.Node{
ObjectMeta: metav1.ObjectMeta{
Name: "node-1",
Annotations: map[string]string{
NamespacedNameAnnotation: "myapp",
TypeAnnotation: schema.GroupKind{Group: "apps", Kind: "ReplicaSet"}.String(),
},
},
}
instance = EnqueueRequestForAnnotation[client.Object]{Type: schema.GroupKind{Group: "apps", Kind: "ReplicaSet"}}
evt := event.CreateEvent{
Object: nd,
}
instance.Create(ctx, evt, q)
Expect(q.Len()).To(Equal(1))
i, _ := q.Get()
Expect(i).To(Equal(reconcile.Request{
NamespacedName: types.NamespacedName{Namespace: "", Name: "myapp"},
}))
})
It("should not enqueue a Request for an object that is cluster scoped which does not have annotations", func() {
nd := &corev1.Node{
ObjectMeta: metav1.ObjectMeta{Name: "node-1"},
}
instance = EnqueueRequestForAnnotation[client.Object]{Type: nd.GetObjectKind().GroupVersionKind().GroupKind()}
evt := event.CreateEvent{
Object: nd,
}
instance.Create(ctx, evt, q)
Expect(q.Len()).To(Equal(0))
})
})
Describe("Delete", func() {
It("should enqueue a Request with the annotations of the object in case of DeleteEvent", func() {
evt := event.DeleteEvent{
Object: pod,
}
instance.Delete(ctx, evt, q)
Expect(q.Len()).To(Equal(1))
i, _ := q.Get()
Expect(i).To(Equal(reconcile.Request{
NamespacedName: types.NamespacedName{
Namespace: podOwner.Namespace,
Name: podOwner.Name,
},
}))
})
})
Describe("Update", func() {
It("should enqueue a Request with annotations applied to both objects in UpdateEvent", func() {
newPod := pod.DeepCopy()
newPod.Name = pod.Name + "2"
newPod.Namespace = pod.Namespace + "2"
Expect(SetOwnerAnnotations(podOwner, pod)).To(Succeed())
evt := event.UpdateEvent{
ObjectOld: pod,
ObjectNew: newPod,
}
instance.Update(ctx, evt, q)
Expect(q.Len()).To(Equal(1))
i, _ := q.Get()
Expect(i).To(Equal(reconcile.Request{
NamespacedName: types.NamespacedName{
Namespace: podOwner.Namespace,
Name: podOwner.Name,
},
}))
})
It("should enqueue a Request with the annotations applied in one of the objects in case of UpdateEvent", func() {
newPod := pod.DeepCopy()
newPod.Name = pod.Name + "2"
newPod.Namespace = pod.Namespace + "2"
newPod.Annotations = map[string]string{}
evt := event.UpdateEvent{
ObjectOld: pod,
ObjectNew: newPod,
}
instance.Update(ctx, evt, q)
Expect(q.Len()).To(Equal(1))
i, _ := q.Get()
Expect(i).To(Equal(reconcile.Request{
NamespacedName: types.NamespacedName{
Namespace: podOwner.Namespace,
Name: podOwner.Name,
},
}))
})
It("should enqueue a Request when the annotations are applied in a different resource in case of UpdateEvent", func() {
repl := &appsv1.ReplicaSet{
ObjectMeta: metav1.ObjectMeta{
Namespace: "foo",
Name: "faz",
},
}
instance = EnqueueRequestForAnnotation[client.Object]{Type: schema.GroupKind{Group: "apps", Kind: "ReplicaSet"}}
evt := event.CreateEvent{
Object: repl,
}
instance.Create(ctx, evt, q)
Expect(q.Len()).To(Equal(0))
newRepl := repl.DeepCopy()
newRepl.Name = pod.Name + "2"
newRepl.Namespace = pod.Namespace + "2"
newRepl.Annotations = map[string]string{
TypeAnnotation: schema.GroupKind{Group: "apps", Kind: "ReplicaSet"}.String(),
NamespacedNameAnnotation: "foo/faz",
}
instance2 := EnqueueRequestForAnnotation[client.Object]{Type: schema.GroupKind{Group: "apps", Kind: "ReplicaSet"}}
evt2 := event.UpdateEvent{
ObjectOld: repl,
ObjectNew: newRepl,
}
instance2.Update(ctx, evt2, q)
Expect(q.Len()).To(Equal(1))
i, _ := q.Get()
Expect(i).To(Equal(reconcile.Request{
NamespacedName: types.NamespacedName{
Namespace: "foo",
Name: "faz",
},
}))
})
It("should enqueue multiple Update Requests when different annotations are applied to multiple objects", func() {
newPod := pod.DeepCopy()
newPod.Name = pod.Name + "2"
newPod.Namespace = pod.Namespace + "2"
Expect(SetOwnerAnnotations(podOwner, pod)).To(Succeed())
podOwner2 := &corev1.Pod{
ObjectMeta: metav1.ObjectMeta{
Namespace: "podOwnerNsTest",
Name: "podOwnerNameTest",
},
}
podOwner2.SetGroupVersionKind(schema.GroupVersionKind{Group: "", Kind: "Pod"})
Expect(SetOwnerAnnotations(podOwner2, newPod)).To(Succeed())
evt := event.UpdateEvent{
ObjectOld: pod,
ObjectNew: newPod,
}
instance.Update(ctx, evt, q)
Expect(q.Len()).To(Equal(2))
})
})
Describe("Generic", func() {
It("should enqueue a Request with the annotations of the object in case of GenericEvent", func() {
evt := event.GenericEvent{
Object: pod,
}
instance.Generic(ctx, evt, q)
Expect(q.Len()).To(Equal(1))
i, _ := q.Get()
Expect(i).To(Equal(reconcile.Request{
NamespacedName: types.NamespacedName{
Namespace: podOwner.Namespace,
Name: podOwner.Name,
},
}))
})
})
Describe("SetWatchOwnerAnnotation", func() {
It("should add the watch owner annotations without losing existing ones", func() {
nd := &corev1.Node{
ObjectMeta: metav1.ObjectMeta{
Name: "node-1",
Annotations: map[string]string{
"my-test-annotation": "should-keep",
},
},
}
Expect(SetOwnerAnnotations(podOwner, nd)).To(Succeed())
expected := map[string]string{
"my-test-annotation": "should-keep",
NamespacedNameAnnotation: "podOwnerNs/podOwnerName",
TypeAnnotation: schema.GroupKind{Group: "", Kind: "Pod"}.String(),
}
Expect(nd.GetAnnotations()).To(HaveLen(3))
Expect(nd.GetAnnotations()).To(Equal(expected))
})
It("should return error when the owner Kind is not present", func() {
nd := &corev1.Node{
ObjectMeta: metav1.ObjectMeta{
Name: "node-1",
},
}
podOwner.SetGroupVersionKind(schema.GroupVersionKind{Group: "Pod", Kind: ""})
Expect(SetOwnerAnnotations(podOwner, nd)).ToNot(Succeed())
})
It("should return an error when the owner Name is not set", func() {
nd := &corev1.Node{
ObjectMeta: metav1.ObjectMeta{
Name: "node-1",
},
}
ownerNew := &corev1.Pod{
ObjectMeta: metav1.ObjectMeta{
Namespace: "newpodOwnerNs",
},
}
ownerNew.SetGroupVersionKind(schema.GroupVersionKind{Group: "Pod", Kind: ""})
Expect(SetOwnerAnnotations(ownerNew, nd)).ToNot(Succeed())
})
})
})