@@ -586,3 +586,107 @@ func TestRemoveCondition(t *testing.T) {
586
586
}
587
587
}
588
588
}
589
+
590
+ func TestRolloutExceededTimeoutSeconds (t * testing.T ) {
591
+ now := time .Now ()
592
+ tests := []struct {
593
+ name string
594
+ config * deployapi.DeploymentConfig
595
+ deploymentCreationTime time.Time
596
+ expectTimeout bool
597
+ }{
598
+ // Recreate strategy with deployment running for 20s (exceeding 10s timeout)
599
+ {
600
+ name : "recreate timeout" ,
601
+ config : func (timeoutSeconds int64 ) * deployapi.DeploymentConfig {
602
+ config := deploytest .OkDeploymentConfig (1 )
603
+ config .Spec .Strategy .RecreateParams .TimeoutSeconds = & timeoutSeconds
604
+ return config
605
+ }(int64 (10 )),
606
+ deploymentCreationTime : now .Add (- 20 * time .Second ),
607
+ expectTimeout : true ,
608
+ },
609
+ // Recreate strategy with no timeout
610
+ {
611
+ name : "recreate no timeout" ,
612
+ config : func (timeoutSeconds int64 ) * deployapi.DeploymentConfig {
613
+ config := deploytest .OkDeploymentConfig (1 )
614
+ config .Spec .Strategy .RecreateParams .TimeoutSeconds = & timeoutSeconds
615
+ return config
616
+ }(int64 (0 )),
617
+ deploymentCreationTime : now .Add (- 700 * time .Second ),
618
+ expectTimeout : false ,
619
+ },
620
+
621
+ // Rolling strategy with deployment running for 20s (exceeding 10s timeout)
622
+ {
623
+ name : "rolling timeout" ,
624
+ config : func (timeoutSeconds int64 ) * deployapi.DeploymentConfig {
625
+ config := deploytest .OkDeploymentConfig (1 )
626
+ config .Spec .Strategy = deploytest .OkRollingStrategy ()
627
+ config .Spec .Strategy .RollingParams .TimeoutSeconds = & timeoutSeconds
628
+ return config
629
+ }(int64 (10 )),
630
+ deploymentCreationTime : now .Add (- 20 * time .Second ),
631
+ expectTimeout : true ,
632
+ },
633
+ // Rolling strategy with deployment with no timeout specified.
634
+ {
635
+ name : "rolling using default timeout" ,
636
+ config : func (timeoutSeconds int64 ) * deployapi.DeploymentConfig {
637
+ config := deploytest .OkDeploymentConfig (1 )
638
+ config .Spec .Strategy = deploytest .OkRollingStrategy ()
639
+ config .Spec .Strategy .RollingParams .TimeoutSeconds = nil
640
+ return config
641
+ }(0 ),
642
+ deploymentCreationTime : now .Add (- 20 * time .Second ),
643
+ expectTimeout : false ,
644
+ },
645
+ // Recreate strategy with deployment with no timeout specified.
646
+ {
647
+ name : "recreate using default timeout" ,
648
+ config : func (timeoutSeconds int64 ) * deployapi.DeploymentConfig {
649
+ config := deploytest .OkDeploymentConfig (1 )
650
+ config .Spec .Strategy .RecreateParams .TimeoutSeconds = nil
651
+ return config
652
+ }(0 ),
653
+ deploymentCreationTime : now .Add (- 20 * time .Second ),
654
+ expectTimeout : false ,
655
+ },
656
+ // Custom strategy with deployment with no timeout specified.
657
+ {
658
+ name : "custom using default timeout" ,
659
+ config : func (timeoutSeconds int64 ) * deployapi.DeploymentConfig {
660
+ config := deploytest .OkDeploymentConfig (1 )
661
+ config .Spec .Strategy = deploytest .OkCustomStrategy ()
662
+ return config
663
+ }(0 ),
664
+ deploymentCreationTime : now .Add (- 20 * time .Second ),
665
+ expectTimeout : false ,
666
+ },
667
+ // Custom strategy use default timeout exceeding it.
668
+ {
669
+ name : "custom using default timeout timing out" ,
670
+ config : func (timeoutSeconds int64 ) * deployapi.DeploymentConfig {
671
+ config := deploytest .OkDeploymentConfig (1 )
672
+ config .Spec .Strategy = deploytest .OkCustomStrategy ()
673
+ return config
674
+ }(0 ),
675
+ deploymentCreationTime : now .Add (- 700 * time .Second ),
676
+ expectTimeout : true ,
677
+ },
678
+ }
679
+
680
+ for _ , tc := range tests {
681
+ config := tc .config
682
+ deployment , err := MakeDeploymentV1 (config , kapi .Codecs .LegacyCodec (deployv1 .SchemeGroupVersion ))
683
+ if err != nil {
684
+ t .Fatalf ("unexpected error: %v" , err )
685
+ }
686
+ deployment .ObjectMeta .CreationTimestamp = metav1.Time {Time : tc .deploymentCreationTime }
687
+ gotTimeout := RolloutExceededTimeoutSeconds (config , deployment )
688
+ if tc .expectTimeout && ! gotTimeout {
689
+ t .Errorf ("[%s]: expected timeout, but got no timeout" , tc .name )
690
+ }
691
+ }
692
+ }
0 commit comments