-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathmultinamespace_test.go
137 lines (126 loc) · 5.5 KB
/
multinamespace_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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package e2e_test
import (
"fmt"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/api"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/api/v1/common"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/internal/stringutil"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/actions"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/actions/deploy"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/config"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/data"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/k8s"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/e2e/model"
)
var _ = Describe("Users can use clusterwide configuration with limitation to watch only particular namespaces", Label("multinamespaced"), func() {
var listData []*model.TestDataProvider
var watchedNamespace []string
_ = AfterEach(func() {
By("AfterEach. clean-up", func() {
for i := range listData {
testData := listData[i]
actions.DeleteTestDataProject(testData)
actions.AfterEachFinalCleanup([]model.TestDataProvider{*testData})
if testData.ManagerContext != nil {
testData.ManagerContext.Done()
}
}
})
})
// (Consider Shared Deployments when E2E tests could conflict with each other)
It("Deploy deployment multi-namespaced operator and create resources in each of them", func() {
By("Set up test data configuration", func() {
watched := model.DataProvider(
"multinamespace-watched",
model.NewEmptyAtlasKeyType().UseDefaultFullAccess(),
40000,
[]func(*model.TestDataProvider){},
).WithProject(data.DefaultProject())
watchedGlobal := model.DataProvider(
"multinamespace-watched-global",
model.NewEmptyAtlasKeyType().UseDefaultFullAccess().CreateAsGlobalLevelKey(),
40000,
[]func(*model.TestDataProvider){},
).WithProject(data.DefaultProject())
notWatched := model.DataProvider(
"multinamespace-not-watched",
model.NewEmptyAtlasKeyType().UseDefaultFullAccess(),
40000,
[]func(*model.TestDataProvider){},
).WithProject(data.DefaultProject())
notWatchedGlobal := model.DataProvider(
"multinamespace-not-watched-global",
model.NewEmptyAtlasKeyType().UseDefaultFullAccess().CreateAsGlobalLevelKey(),
40000,
[]func(*model.TestDataProvider){},
).WithProject(data.DefaultProject())
listData = []*model.TestDataProvider{watched, watchedGlobal, notWatched, notWatchedGlobal}
watchedNamespace = []string{watched.Resources.Namespace, watchedGlobal.Resources.Namespace}
})
firstData := listData[0]
By("Run operator and deploy resources", func() {
Expect(k8s.CreateNamespace(firstData.Context, firstData.K8SClient, config.DefaultOperatorNS)).Should(Succeed())
watchedNamespace = append(watchedNamespace, config.DefaultOperatorNS)
k8s.CreateDefaultSecret(firstData.Context, firstData.K8SClient, config.DefaultOperatorGlobalKey, config.DefaultOperatorNS)
for i := range listData {
deployMultiNSResources(listData[i])
}
deploy.MultiNamespaceOperator(firstData, watchedNamespace)
})
By("Check if operator working as expected: watched/not watched namespaces", func() {
for i := range listData {
multiNSFlow(listData[i], watchedNamespace)
}
})
})
})
func deployMultiNSResources(testData *model.TestDataProvider) {
By("User create namespace", func() {
Expect(k8s.CreateNamespace(testData.Context, testData.K8SClient, testData.Resources.Namespace)).Should(Succeed())
})
By("Deploy resources", func() {
if testData.Project.GetNamespace() == "" {
testData.Project.Namespace = testData.Resources.Namespace
}
if !testData.Resources.AtlasKeyAccessType.GlobalLevelKey {
testData.Project.Spec.ConnectionSecret = &common.ResourceRefNamespaced{Name: testData.Prefix, Namespace: testData.Project.Namespace}
}
By(fmt.Sprintf("Deploy Project %s", testData.Project.GetName()), func() {
err := testData.K8SClient.Create(testData.Context, testData.Project)
Expect(err).ShouldNot(HaveOccurred(), "Project %s was not created", testData.Project.GetName())
})
})
}
func multiNSFlow(data *model.TestDataProvider, watchedNamespaces []string) {
isWatchedNamespace := stringutil.Contains(watchedNamespaces, data.Resources.Namespace)
if isWatchedNamespace {
watchedFlow(data)
} else {
notWatchedFlow(data)
}
}
func watchedFlow(data *model.TestDataProvider) {
By("Deploy secret", func() {
actions.CreateConnectionAtlasKey(data)
})
By(fmt.Sprintf("Check if projects were deployed. Project name: %s, namespace: %s",
data.Project.GetName(), data.Project.GetNamespace()), func() {
Eventually(func(g Gomega) {
condition, _ := k8s.GetProjectStatusCondition(data.Context, data.K8SClient, api.ReadyType, data.Resources.Namespace, data.Project.GetName())
g.Expect(condition).Should(Equal("True"))
}).Should(Succeed(), "kubernetes resource: Project status `Ready` should be True. Watched namespace")
})
}
func notWatchedFlow(data *model.TestDataProvider) {
By("Deploy secret", func() {
actions.CreateConnectionAtlasKey(data)
})
By(fmt.Sprintf("Check if projects were deployed. Project name: %s, namespace: %s",
data.Project.GetName(), data.Project.GetNamespace()), func() {
Eventually(func(g Gomega) {
condition, _ := k8s.GetProjectStatusCondition(data.Context, data.K8SClient, api.ReadyType, data.Resources.Namespace, data.Project.GetName())
g.Expect(condition).Should(Equal(""))
}).Should(Succeed(), "Kubernetes resource: Project status `Ready` should be empty. NOT Watched namespace")
})
}