mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-14 19:57:31 +00:00
Replace the 4 arguments to cmdTestCase with a function that can let tests run arbitrary logic if it is more complex than what is provided by the test harness. Move the existing logic into functions that the test can use for common assertions on golden files and golden values. These changes were pulled out of PR #1696 to make a smaller review. Signed-off-by: Allen Porter <allen@thebends.org>
36 lines
960 B
Go
36 lines
960 B
Go
// +build unit
|
|
|
|
package main
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestTraceNoArgs(t *testing.T) {
|
|
cmd := cmdTestCase{
|
|
args: "trace",
|
|
testClusterMode: TestEnvClusterMode,
|
|
assert: assertError("object name is required"),
|
|
}
|
|
cmd.runTestCmd(t)
|
|
}
|
|
|
|
func TestTraceDeployment(t *testing.T) {
|
|
cmd := cmdTestCase{
|
|
args: "trace podinfo -n podinfo --kind deployment --api-version=apps/v1",
|
|
testClusterMode: TestEnvClusterMode,
|
|
assert: assertGoldenFile("testdata/trace/deployment.txt"),
|
|
objectFile: "testdata/trace/deployment.yaml",
|
|
}
|
|
cmd.runTestCmd(t)
|
|
}
|
|
|
|
func TestTraceHelmRelease(t *testing.T) {
|
|
cmd := cmdTestCase{
|
|
args: "trace podinfo -n podinfo --kind HelmRelease --api-version=helm.toolkit.fluxcd.io/v2beta1",
|
|
testClusterMode: TestEnvClusterMode,
|
|
assert: assertGoldenFile("testdata/trace/helmrelease.txt"),
|
|
objectFile: "testdata/trace/helmrelease.yaml",
|
|
}
|
|
cmd.runTestCmd(t)
|
|
}
|