@@ -576,131 +576,25 @@ var _ = ginkgo.Describe("[ImplicitPriority] propagation testing", func() {
576
576
framework .RemoveDeployment (kubeClient , deployment .Namespace , deployment .Name )
577
577
framework .WaitDeploymentDisappearOnClusters (framework .ClusterNames (), deployment .Namespace , deployment .Name )
578
578
})
579
- ginkgo .DeferCleanup (func () {
580
- framework .RemovePropagationPolicy (karmadaClient , policyMatchName .Namespace , policyMatchName .Name )
581
- framework .RemovePropagationPolicy (karmadaClient , policyMatchLabelSelector .Namespace , policyMatchLabelSelector .Name )
582
- framework .RemovePropagationPolicy (karmadaClient , policyPriorityMatchAll .Namespace , policyPriorityMatchAll .Name )
583
- })
584
579
})
585
580
586
- ginkgo .It ("priorityMatchName testing" , func () {
587
- ginkgo .By ("check whether the deployment uses the highest priority propagationPolicy" , func () {
581
+ ginkgo .It ("priorityMatchName/priorityMatchLabel/priorityMatchAll testing" , func () {
582
+ ginkgo .By ("check whether the deployment uses the highest priority propagationPolicy (priorityMatchName)" , func () {
583
+ defer framework .RemovePropagationPolicy (karmadaClient , policyMatchLabelSelector .Namespace , policyMatchName .Name )
588
584
framework .WaitDeploymentPresentOnClustersFitWith (framework .ClusterNames (), deployment .Namespace , deployment .Name ,
589
585
func (deployment * appsv1.Deployment ) bool {
590
586
return deployment .GetLabels ()[policyv1alpha1 .PropagationPolicyNameLabel ] == priorityMatchName
591
587
})
592
588
})
593
- })
594
- })
595
-
596
- ginkgo .Context ("policyMatchLabelSelector propagation testing" , func () {
597
- var policyNamespace , priorityMatchLabelSelector , priorityMatchAll string
598
- var deploymentNamespace , deploymentName string
599
- var deployment * appsv1.Deployment
600
- var policyMatchLabelSelector , policyPriorityMatchAll * policyv1alpha1.PropagationPolicy
601
- var implicitPriorityLabelKey = "priority"
602
- var implicitPriorityLabelValue = "implicit-priority"
603
-
604
- ginkgo .BeforeEach (func () {
605
- policyNamespace = testNamespace
606
-
607
- priorityMatchLabelSelector = deploymentNamePrefix + rand .String (RandomStrLength )
608
- priorityMatchAll = deploymentNamePrefix + rand .String (RandomStrLength )
609
-
610
- deploymentNamespace = testNamespace
611
- deploymentName = deploymentNamePrefix + rand .String (RandomStrLength )
612
-
613
- deployment = testhelper .NewDeployment (deploymentNamespace , deploymentName )
614
- deployment .SetLabels (map [string ]string {implicitPriorityLabelKey : implicitPriorityLabelValue })
615
- policyMatchLabelSelector = testhelper .NewPropagationPolicy (policyNamespace , priorityMatchLabelSelector , []policyv1alpha1.ResourceSelector {
616
- {
617
- APIVersion : deployment .APIVersion ,
618
- Kind : deployment .Kind ,
619
- LabelSelector : metav1 .SetAsLabelSelector (labels.Set {implicitPriorityLabelKey : implicitPriorityLabelValue }),
620
- },
621
- }, policyv1alpha1.Placement {
622
- ClusterAffinity : & policyv1alpha1.ClusterAffinity {
623
- ClusterNames : framework .ClusterNames (),
624
- },
625
- })
626
- policyPriorityMatchAll = testhelper .NewPropagationPolicy (policyNamespace , priorityMatchAll , []policyv1alpha1.ResourceSelector {
627
- {
628
- APIVersion : deployment .APIVersion ,
629
- Kind : deployment .Kind ,
630
- },
631
- }, policyv1alpha1.Placement {
632
- ClusterAffinity : & policyv1alpha1.ClusterAffinity {
633
- ClusterNames : framework .ClusterNames (),
634
- },
635
- })
636
- })
637
-
638
- ginkgo .BeforeEach (func () {
639
- framework .CreatePropagationPolicy (karmadaClient , policyMatchLabelSelector )
640
- framework .CreatePropagationPolicy (karmadaClient , policyPriorityMatchAll )
641
- framework .CreateDeployment (kubeClient , deployment )
642
- ginkgo .DeferCleanup (func () {
643
- framework .RemoveDeployment (kubeClient , deployment .Namespace , deployment .Name )
644
- framework .WaitDeploymentDisappearOnClusters (framework .ClusterNames (), deployment .Namespace , deployment .Name )
645
- })
646
- ginkgo .DeferCleanup (func () {
647
- framework .RemovePropagationPolicy (karmadaClient , policyMatchLabelSelector .Namespace , policyMatchLabelSelector .Name )
648
- framework .RemovePropagationPolicy (karmadaClient , policyPriorityMatchAll .Namespace , policyPriorityMatchAll .Name )
649
- })
650
- })
651
-
652
- ginkgo .It ("policyMatchLabelSelector testing" , func () {
653
- ginkgo .By ("check whether the deployment uses the highest priority propagationPolicy" , func () {
589
+ ginkgo .By ("check whether the deployment uses the highest priority propagationPolicy (priorityMatchLabel)" , func () {
590
+ defer framework .RemovePropagationPolicy (karmadaClient , policyMatchLabelSelector .Namespace , policyMatchLabelSelector .Name )
654
591
framework .WaitDeploymentPresentOnClustersFitWith (framework .ClusterNames (), deployment .Namespace , deployment .Name ,
655
592
func (deployment * appsv1.Deployment ) bool {
656
593
return deployment .GetLabels ()[policyv1alpha1 .PropagationPolicyNameLabel ] == priorityMatchLabelSelector
657
594
})
658
595
})
659
- })
660
- })
661
-
662
- ginkgo .Context ("priorityMatchAll propagation testing" , func () {
663
- var policyNamespace , priorityMatchAll string
664
- var deploymentNamespace , deploymentName string
665
- var deployment * appsv1.Deployment
666
- var policyPriorityMatchAll * policyv1alpha1.PropagationPolicy
667
- var implicitPriorityLabelKey = "priority"
668
- var implicitPriorityLabelValue = "implicit-priority"
669
-
670
- ginkgo .BeforeEach (func () {
671
- policyNamespace = testNamespace
672
- priorityMatchAll = deploymentNamePrefix + rand .String (RandomStrLength )
673
- deploymentNamespace = testNamespace
674
- deploymentName = deploymentNamePrefix + rand .String (RandomStrLength )
675
-
676
- deployment = testhelper .NewDeployment (deploymentNamespace , deploymentName )
677
- deployment .SetLabels (map [string ]string {implicitPriorityLabelKey : implicitPriorityLabelValue })
678
- policyPriorityMatchAll = testhelper .NewPropagationPolicy (policyNamespace , priorityMatchAll , []policyv1alpha1.ResourceSelector {
679
- {
680
- APIVersion : deployment .APIVersion ,
681
- Kind : deployment .Kind ,
682
- },
683
- }, policyv1alpha1.Placement {
684
- ClusterAffinity : & policyv1alpha1.ClusterAffinity {
685
- ClusterNames : framework .ClusterNames (),
686
- },
687
- })
688
- })
689
-
690
- ginkgo .BeforeEach (func () {
691
- framework .CreatePropagationPolicy (karmadaClient , policyPriorityMatchAll )
692
- framework .CreateDeployment (kubeClient , deployment )
693
- ginkgo .DeferCleanup (func () {
694
- framework .RemoveDeployment (kubeClient , deployment .Namespace , deployment .Name )
695
- framework .WaitDeploymentDisappearOnClusters (framework .ClusterNames (), deployment .Namespace , deployment .Name )
696
- })
697
- ginkgo .DeferCleanup (func () {
698
- framework .RemovePropagationPolicy (karmadaClient , policyPriorityMatchAll .Namespace , policyPriorityMatchAll .Name )
699
- })
700
- })
701
-
702
- ginkgo .It ("priorityMatchAll testing" , func () {
703
- ginkgo .By ("check whether the deployment uses the highest priority propagationPolicy" , func () {
596
+ ginkgo .By ("check whether the deployment uses the highest priority propagationPolicy (priorityMatchAll)" , func () {
597
+ defer framework .RemovePropagationPolicy (karmadaClient , policyMatchLabelSelector .Namespace , policyPriorityMatchAll .Name )
704
598
framework .WaitDeploymentPresentOnClustersFitWith (framework .ClusterNames (), deployment .Namespace , deployment .Name ,
705
599
func (deployment * appsv1.Deployment ) bool {
706
600
return deployment .GetLabels ()[policyv1alpha1 .PropagationPolicyNameLabel ] == priorityMatchAll
0 commit comments