Skip to content

Commit 90b2669

Browse files
authored
Merge pull request #174 from sergenyalcin/optional-deletion
Add support for optionally only clean-up resources that uptest created
2 parents 98f446e + 50e42a1 commit 90b2669

File tree

4 files changed

+22
-13
lines changed

4 files changed

+22
-13
lines changed

cmd/uptest/main.go

+12-10
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,9 @@ var (
5454
defaultConditions = e2e.Flag("default-conditions", "Comma separated list of default conditions to wait for a successful test.\n"+
5555
"Conditions could be overridden per resource using \"uptest.upbound.io/conditions\" annotation.").Default("Ready").String()
5656

57-
skipDelete = e2e.Flag("skip-delete", "Skip the delete step of the test.").Default("false").Bool()
58-
testDir = e2e.Flag("test-directory", "Directory where kuttl test case will be generated and executed.").Envar("UPTEST_TEST_DIR").Default(filepath.Join(os.TempDir(), "uptest-e2e")).String()
57+
skipDelete = e2e.Flag("skip-delete", "Skip the delete step of the test.").Default("false").Bool()
58+
testDir = e2e.Flag("test-directory", "Directory where kuttl test case will be generated and executed.").Envar("UPTEST_TEST_DIR").Default(filepath.Join(os.TempDir(), "uptest-e2e")).String()
59+
onlyCleanUptestResources = e2e.Flag("only-clean-uptest-resources", "While deletion step, only clean resources that were created by uptest").Default("false").Bool()
5960
)
6061

6162
var (
@@ -115,14 +116,15 @@ func e2eTests() {
115116
}
116117
}
117118
o := &config.AutomatedTest{
118-
ManifestPaths: examplePaths,
119-
DataSourcePath: *dataSourcePath,
120-
SetupScriptPath: setupPath,
121-
TeardownScriptPath: teardownPath,
122-
DefaultConditions: strings.Split(*defaultConditions, ","),
123-
DefaultTimeout: *defaultTimeout,
124-
Directory: *testDir,
125-
SkipDelete: *skipDelete,
119+
ManifestPaths: examplePaths,
120+
DataSourcePath: *dataSourcePath,
121+
SetupScriptPath: setupPath,
122+
TeardownScriptPath: teardownPath,
123+
DefaultConditions: strings.Split(*defaultConditions, ","),
124+
DefaultTimeout: *defaultTimeout,
125+
Directory: *testDir,
126+
SkipDelete: *skipDelete,
127+
OnlyCleanUptestResources: *onlyCleanUptestResources,
126128
}
127129

128130
kingpin.FatalIfError(internal.RunTest(o), "cannot run e2e tests successfully")

internal/config/config.go

+4
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ type AutomatedTest struct {
5858
DefaultConditions []string
5959

6060
SkipDelete bool
61+
62+
OnlyCleanUptestResources bool
6163
}
6264

6365
// Manifest represents a resource loaded from an example resource manifest file.
@@ -72,6 +74,8 @@ type TestCase struct {
7274
Timeout int
7375
SetupScriptPath string
7476
TeardownScriptPath string
77+
78+
OnlyCleanUptestResources bool
7579
}
7680

7781
// Resource represents a Kubernetes object to be tested and asserted

internal/templates/03-assert.yaml.tmpl

+2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ commands:
1515
- command: ${KUBECTL} wait {{ $resource.KindGroup }}/{{ $resource.Name }} --for=delete --timeout 10s
1616
{{- end }}
1717
{{- end }}
18+
{{- if not .TestCase.OnlyCleanUptestResources }}
1819
- command: ${KUBECTL} wait managed --all --for=delete --timeout 10s
20+
{{- end }}
1921
{{- if .TestCase.TeardownScriptPath }}
2022
- command: {{ .TestCase.TeardownScriptPath }}
2123
{{- end }}

internal/tester.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,10 @@ func (t *tester) executeTests() error {
6363

6464
func (t *tester) prepareConfig() (*config.TestCase, []config.Resource, error) { //nolint:gocyclo // TODO: can we break this?
6565
tc := &config.TestCase{
66-
Timeout: t.options.DefaultTimeout,
67-
SetupScriptPath: t.options.SetupScriptPath,
68-
TeardownScriptPath: t.options.TeardownScriptPath,
66+
Timeout: t.options.DefaultTimeout,
67+
SetupScriptPath: t.options.SetupScriptPath,
68+
TeardownScriptPath: t.options.TeardownScriptPath,
69+
OnlyCleanUptestResources: t.options.OnlyCleanUptestResources,
6970
}
7071
examples := make([]config.Resource, 0, len(t.manifests))
7172

0 commit comments

Comments
 (0)