@@ -167,6 +167,46 @@ var _ = Describe("DNSRecordReconciler_HealthChecks", func() {
167
167
}, TestTimeoutMedium , time .Second ).Should (Succeed ())
168
168
})
169
169
170
+ It ("Should create valid probe CRs and remove them when definition removed" , func () {
171
+ //Create default test dnsrecord
172
+ Expect (k8sClient .Create (ctx , dnsRecord )).To (Succeed ())
173
+
174
+ By ("Validating created probes" )
175
+ Eventually (func (g Gomega ) {
176
+ probes := & v1alpha1.DNSHealthCheckProbeList {}
177
+
178
+ g .Expect (k8sClient .List (ctx , probes , & client.ListOptions {
179
+ LabelSelector : labels .SelectorFromSet (map [string ]string {
180
+ ProbeOwnerLabel : BuildOwnerLabelValue (dnsRecord ),
181
+ }),
182
+ Namespace : dnsRecord .Namespace ,
183
+ })).To (Succeed ())
184
+
185
+ g .Expect (probes .Items ).To (HaveLen (2 ))
186
+
187
+ }, TestTimeoutMedium , time .Second ).Should (Succeed ())
188
+
189
+ By ("updating the DNSRecord and and ensuring the healthcheck is removed" )
190
+ Eventually (func (g Gomega ) {
191
+ recordCopy := & v1alpha1.DNSRecord {}
192
+ g .Expect (k8sClient .Get (ctx , client .ObjectKeyFromObject (dnsRecord ), recordCopy )).
193
+ Should (Succeed ())
194
+ recordCopy .Spec .HealthCheck = nil
195
+ g .Expect (k8sClient .Update (ctx , recordCopy )).
196
+ Should (Succeed ())
197
+ probes := & v1alpha1.DNSHealthCheckProbeList {}
198
+
199
+ g .Expect (k8sClient .List (ctx , probes , & client.ListOptions {
200
+ LabelSelector : labels .SelectorFromSet (map [string ]string {
201
+ ProbeOwnerLabel : BuildOwnerLabelValue (dnsRecord ),
202
+ }),
203
+ Namespace : dnsRecord .Namespace ,
204
+ })).To (Succeed ())
205
+
206
+ g .Expect (probes .Items ).To (HaveLen (0 ))
207
+ }, TestTimeoutMedium , time .Second ).Should (Succeed ())
208
+ })
209
+
170
210
It ("Should create valid probe CRs with default values" , func () {
171
211
//Create test dnsrecord with nils for optional fields
172
212
dnsRecord .Spec .HealthCheck = & v1alpha1.HealthCheckSpec {
@@ -495,8 +535,10 @@ var _ = Describe("DNSRecordReconciler_HealthChecks", func() {
495
535
496
536
By ("Remove health spec" )
497
537
Eventually (func (g Gomega ) {
498
- dnsRecord .Spec .HealthCheck = nil
499
- g .Expect (k8sClient .Update (ctx , dnsRecord )).To (Succeed ())
538
+ Expect (k8sClient .Get (ctx , client .ObjectKeyFromObject (dnsRecord ), dnsRecord )).To (Succeed ())
539
+ cpRecord := dnsRecord .DeepCopy ()
540
+ cpRecord .Spec .HealthCheck = nil
541
+ g .Expect (k8sClient .Update (ctx , cpRecord )).To (Succeed ())
500
542
}, TestTimeoutMedium , time .Second ).Should (Succeed ())
501
543
502
544
// we don't remove EPs if this leads to empty EPs
0 commit comments