mirror of https://github.com/fluxcd/flux2.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.1 KiB
Go
45 lines
1.1 KiB
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestTraceNoArgs(t *testing.T) {
|
|
cmd := cmdTestCase{
|
|
args: "trace",
|
|
wantError: true,
|
|
goldenValue: "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",
|
|
wantError: false,
|
|
goldenFile: "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",
|
|
wantError: false,
|
|
goldenFile: "testdata/trace/helmrelease.txt",
|
|
objectFile: "testdata/trace/helmrelease.yaml",
|
|
}
|
|
cmd.runTestCmd(t)
|
|
}
|
|
|
|
func TestTraceHelmReleaseMissingGitRef(t *testing.T) {
|
|
cmd := cmdTestCase{
|
|
args: "trace podinfo -n podinfo --kind HelmRelease --api-version=helm.toolkit.fluxcd.io/v2beta1",
|
|
wantError: false,
|
|
goldenFile: "testdata/trace/helmrelease-missing-git-ref.txt",
|
|
objectFile: "testdata/trace/helmrelease-missing-git-ref.yaml",
|
|
}
|
|
cmd.runTestCmd(t)
|
|
}
|