-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathannotations_test.go
49 lines (44 loc) · 1.96 KB
/
annotations_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package e2e_test
import (
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/actions"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/data"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/model"
)
var _ = Describe("Annotations base test.", Label("deployment-annotations-ns"), func() {
var testData *model.TestDataProvider
AfterEach(func() {
GinkgoWriter.Write([]byte("\n"))
GinkgoWriter.Write([]byte("===============================================\n"))
GinkgoWriter.Write([]byte("Operator namespace: " + testData.Resources.Namespace + "\n"))
GinkgoWriter.Write([]byte("===============================================\n"))
if CurrentSpecReport().Failed() {
Expect(actions.SaveProjectsToFile(testData.Context, testData.K8SClient, testData.Resources.Namespace)).Should(Succeed())
Expect(actions.SaveDeploymentsToFile(testData.Context, testData.K8SClient, testData.Resources.Namespace)).Should(Succeed())
}
actions.DeleteTestDataDeployments(testData)
actions.DeleteTestDataProject(testData)
actions.AfterEachFinalCleanup([]model.TestDataProvider{*testData})
})
DescribeTable("Namespaced operators working only with its own namespace with different configuration",
func(test *model.TestDataProvider) {
testData = test
mainCycle(test)
},
// TODO: fix test for deletion protection on, as it would fail to re-take the cluster after deletion
Entry("Simple configuration with keep resource policy annotation on deployment", Label("ns-crd"),
model.DataProvider(
"operator-ns-crd",
model.NewEmptyAtlasKeyType().UseDefaultFullAccess(),
30000,
[]func(*model.TestDataProvider){
actions.DeleteDeploymentCRWithKeepAnnotation,
actions.RedeployDeployment,
actions.RemoveKeepAnnotation,
},
).WithInitialDeployments(data.CreateDeploymentWithKeepPolicy("atlascluster-annotation")).
WithProject(data.DefaultProject()),
),
)
})