Skip to content

Commit f03b5e9

Browse files
authored
Merge pull request #4576 from zhzhuang-zju/pp
e2e: reduce unnecessary repetitive processes in propagationpolicy_test.go
2 parents 0aec7b5 + afe58c7 commit f03b5e9

File tree

2 files changed

+10
-118
lines changed

2 files changed

+10
-118
lines changed

test/e2e/coverage_docs/propagationpolicy_test.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,9 @@
1212
| Test the propagationPolicy for roleBinding | roleBinding propagation testing | |
1313

1414
#### ImplicitPriority propagation testing
15-
| Test Case | E2E Describe Text | Comments |
16-
|------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------|------------------------------------------------------------------------------------------------------------------------------------|
17-
| Test whether the deployment uses the highest priority propagationPolicy when there are three propagationPolicy | priorityMatchName testing | [Configure implicit priority](https://karmada.io/docs/next/userguide/scheduling/resource-propagating/#configure-implicit-priority) |
18-
| Test whether the deployment uses the highest priority propagationPolicy when there are two propagation policies, one with a label selector and the other without | policyMatchLabelSelector testing | |
19-
| Test whether the deployment uses the highest priority propagationPolicy when there is a propagationPolicy match all deployment | priorityMatchAll testing | |
15+
| Test Case | E2E Describe Text | Comments |
16+
|---------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------|
17+
| priorityMatchName/priorityMatchLabel/priorityMatchAll testing | check whether the deployment uses the highest priority propagationPolicy (priorityMatchName/priorityMatchLabel/priorityMatchAll) | [Configure implicit priority](https://karmada.io/docs/next/userguide/scheduling/resource-propagating/#configure-implicit-priority) |
2018

2119
#### ExplicitPriority propagation testing
2220
| Test Case | E2E Describe Text | Comments |

test/e2e/propagationpolicy_test.go

+7-113
Original file line numberDiff line numberDiff line change
@@ -576,131 +576,25 @@ var _ = ginkgo.Describe("[ImplicitPriority] propagation testing", func() {
576576
framework.RemoveDeployment(kubeClient, deployment.Namespace, deployment.Name)
577577
framework.WaitDeploymentDisappearOnClusters(framework.ClusterNames(), deployment.Namespace, deployment.Name)
578578
})
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-
})
584579
})
585580

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)
588584
framework.WaitDeploymentPresentOnClustersFitWith(framework.ClusterNames(), deployment.Namespace, deployment.Name,
589585
func(deployment *appsv1.Deployment) bool {
590586
return deployment.GetLabels()[policyv1alpha1.PropagationPolicyNameLabel] == priorityMatchName
591587
})
592588
})
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)
654591
framework.WaitDeploymentPresentOnClustersFitWith(framework.ClusterNames(), deployment.Namespace, deployment.Name,
655592
func(deployment *appsv1.Deployment) bool {
656593
return deployment.GetLabels()[policyv1alpha1.PropagationPolicyNameLabel] == priorityMatchLabelSelector
657594
})
658595
})
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)
704598
framework.WaitDeploymentPresentOnClustersFitWith(framework.ClusterNames(), deployment.Namespace, deployment.Name,
705599
func(deployment *appsv1.Deployment) bool {
706600
return deployment.GetLabels()[policyv1alpha1.PropagationPolicyNameLabel] == priorityMatchAll

0 commit comments

Comments
 (0)