@@ -138,6 +138,7 @@ func TestHandle_createPodOk(t *testing.T) {
138
138
deployment , _ := deployutil .MakeDeploymentV1 (config , codec )
139
139
deployment .Annotations [deployapi .DeploymentStatusAnnotation ] = string (deployapi .DeploymentStatusNew )
140
140
deployment .Spec .Template .Spec .NodeSelector = map [string ]string {"labelKey1" : "labelValue1" , "labelKey2" : "labelValue2" }
141
+ deployment .CreationTimestamp = metav1 .Now ()
141
142
142
143
controller := okDeploymentController (client , nil , nil , true , v1 .PodUnknown )
143
144
@@ -227,6 +228,7 @@ func TestHandle_createPodFail(t *testing.T) {
227
228
config := deploytest .OkDeploymentConfig (1 )
228
229
deployment , _ := deployutil .MakeDeploymentV1 (config , codec )
229
230
deployment .Annotations [deployapi .DeploymentStatusAnnotation ] = string (deployapi .DeploymentStatusNew )
231
+ deployment .CreationTimestamp = metav1 .Now ()
230
232
231
233
controller := okDeploymentController (client , nil , nil , true , v1 .PodUnknown )
232
234
@@ -282,6 +284,7 @@ func TestHandle_deployerPodAlreadyExists(t *testing.T) {
282
284
config := deploytest .OkDeploymentConfig (1 )
283
285
deployment , _ := deployutil .MakeDeploymentV1 (config , codec )
284
286
deployment .Annotations [deployapi .DeploymentStatusAnnotation ] = string (deployapi .DeploymentStatusNew )
287
+ deployment .CreationTimestamp = metav1 .Now ()
285
288
deployerPodName := deployutil .DeployerPodNameForDeployment (deployment .Name )
286
289
287
290
client := & fake.Clientset {}
@@ -321,6 +324,7 @@ func TestHandle_unrelatedPodAlreadyExists(t *testing.T) {
321
324
322
325
config := deploytest .OkDeploymentConfig (1 )
323
326
deployment , _ := deployutil .MakeDeploymentV1 (config , codec )
327
+ deployment .CreationTimestamp = metav1 .Now ()
324
328
deployment .Annotations [deployapi .DeploymentStatusAnnotation ] = string (deployapi .DeploymentStatusNew )
325
329
326
330
client := & fake.Clientset {}
@@ -362,6 +366,7 @@ func TestHandle_unrelatedPodAlreadyExistsTestScaled(t *testing.T) {
362
366
config := deploytest .TestDeploymentConfig (deploytest .OkDeploymentConfig (1 ))
363
367
deployment , _ := deployutil .MakeDeploymentV1 (config , codec )
364
368
deployment .Annotations [deployapi .DeploymentStatusAnnotation ] = string (deployapi .DeploymentStatusNew )
369
+ deployment .CreationTimestamp = metav1 .Now ()
365
370
one := int32 (1 )
366
371
deployment .Spec .Replicas = & one
367
372
@@ -433,6 +438,7 @@ func TestHandle_noop(t *testing.T) {
433
438
434
439
deployment , _ := deployutil .MakeDeploymentV1 (deploytest .OkDeploymentConfig (1 ), codec )
435
440
deployment .Annotations [deployapi .DeploymentStatusAnnotation ] = string (test .deploymentPhase )
441
+ deployment .CreationTimestamp = metav1 .Now ()
436
442
437
443
controller := okDeploymentController (client , deployment , nil , true , test .podPhase )
438
444
@@ -476,6 +482,7 @@ func TestHandle_failedTest(t *testing.T) {
476
482
// Verify successful cleanup
477
483
config := deploytest .TestDeploymentConfig (deploytest .OkDeploymentConfig (1 ))
478
484
deployment , _ := deployutil .MakeDeploymentV1 (config , codec )
485
+ deployment .CreationTimestamp = metav1 .Now ()
479
486
one := int32 (1 )
480
487
deployment .Spec .Replicas = & one
481
488
deployment .Annotations [deployapi .DeploymentStatusAnnotation ] = string (deployapi .DeploymentStatusRunning )
@@ -519,6 +526,7 @@ func TestHandle_cleanupPodOk(t *testing.T) {
519
526
config := deploytest .OkDeploymentConfig (1 )
520
527
deployment , _ := deployutil .MakeDeploymentV1 (config , codec )
521
528
deployment .Annotations [deployapi .DeploymentStatusAnnotation ] = string (deployapi .DeploymentStatusComplete )
529
+ deployment .CreationTimestamp = metav1 .Now ()
522
530
523
531
controller := okDeploymentController (client , deployment , hookPods , true , v1 .PodSucceeded )
524
532
hookPods = append (hookPods , deployment .Name )
@@ -562,6 +570,7 @@ func TestHandle_cleanupPodOkTest(t *testing.T) {
562
570
// Verify successful cleanup
563
571
config := deploytest .TestDeploymentConfig (deploytest .OkDeploymentConfig (1 ))
564
572
deployment , _ := deployutil .MakeDeploymentV1 (config , codec )
573
+ deployment .CreationTimestamp = metav1 .Now ()
565
574
one := int32 (1 )
566
575
deployment .Spec .Replicas = & one
567
576
deployment .Annotations [deployapi .DeploymentStatusAnnotation ] = string (deployapi .DeploymentStatusRunning )
@@ -606,6 +615,7 @@ func TestHandle_cleanupPodNoop(t *testing.T) {
606
615
// Verify no-op
607
616
config := deploytest .OkDeploymentConfig (1 )
608
617
deployment , _ := deployutil .MakeDeploymentV1 (config , codec )
618
+ deployment .CreationTimestamp = metav1 .Now ()
609
619
deployment .Annotations [deployapi .DeploymentStatusAnnotation ] = string (deployapi .DeploymentStatusComplete )
610
620
611
621
controller := okDeploymentController (client , deployment , nil , true , v1 .PodSucceeded )
@@ -637,6 +647,7 @@ func TestHandle_cleanupPodFail(t *testing.T) {
637
647
// Verify error
638
648
config := deploytest .OkDeploymentConfig (1 )
639
649
deployment , _ := deployutil .MakeDeploymentV1 (config , codec )
650
+ deployment .CreationTimestamp = metav1 .Now ()
640
651
deployment .Annotations [deployapi .DeploymentStatusAnnotation ] = string (deployapi .DeploymentStatusComplete )
641
652
642
653
controller := okDeploymentController (client , deployment , nil , true , v1 .PodSucceeded )
@@ -667,6 +678,7 @@ func TestHandle_cancelNew(t *testing.T) {
667
678
})
668
679
669
680
deployment , _ := deployutil .MakeDeploymentV1 (deploytest .OkDeploymentConfig (1 ), codec )
681
+ deployment .CreationTimestamp = metav1 .Now ()
670
682
deployment .Annotations [deployapi .DeploymentStatusAnnotation ] = string (deployapi .DeploymentStatusNew )
671
683
deployment .Annotations [deployapi .DeploymentCancelledAnnotation ] = deployapi .DeploymentCancelledAnnotationValue
672
684
@@ -688,6 +700,7 @@ func TestHandle_cleanupNewWithDeployers(t *testing.T) {
688
700
deletedDeployer := false
689
701
690
702
deployment , _ := deployutil .MakeDeploymentV1 (deploytest .OkDeploymentConfig (1 ), codec )
703
+ deployment .CreationTimestamp = metav1 .Now ()
691
704
deployment .Annotations [deployapi .DeploymentStatusAnnotation ] = string (deployapi .DeploymentStatusNew )
692
705
deployment .Annotations [deployapi .DeploymentCancelledAnnotation ] = deployapi .DeploymentCancelledAnnotationValue
693
706
@@ -782,6 +795,7 @@ func TestHandle_cleanupPostNew(t *testing.T) {
782
795
})
783
796
784
797
deployment , _ := deployutil .MakeDeploymentV1 (deploytest .OkDeploymentConfig (1 ), codec )
798
+ deployment .CreationTimestamp = metav1 .Now ()
785
799
deployment .Annotations [deployapi .DeploymentCancelledAnnotation ] = deployapi .DeploymentCancelledAnnotationValue
786
800
deployment .Annotations [deployapi .DeploymentStatusAnnotation ] = string (test .deploymentPhase )
787
801
@@ -845,6 +859,7 @@ func TestHandle_deployerPodDisappeared(t *testing.T) {
845
859
continue
846
860
}
847
861
deployment .Annotations [deployapi .DeploymentStatusAnnotation ] = string (test .phase )
862
+ deployment .CreationTimestamp = metav1 .Now ()
848
863
updatedDeployment = deployment
849
864
850
865
controller := okDeploymentController (client , nil , nil , true , v1 .PodUnknown )
@@ -980,6 +995,7 @@ func TestHandle_transitionFromDeployer(t *testing.T) {
980
995
981
996
deployment , _ := deployutil .MakeDeploymentV1 (deploytest .OkDeploymentConfig (1 ), codec )
982
997
deployment .Annotations [deployapi .DeploymentStatusAnnotation ] = string (test .deploymentPhase )
998
+ deployment .CreationTimestamp = metav1 .Now ()
983
999
984
1000
controller := okDeploymentController (client , deployment , nil , true , test .podPhase )
985
1001
0 commit comments