mirror of
https://github.com/fluxcd/flux2.git
synced 2025-10-30 15:55:47 +08:00
51 lines
1.4 KiB
Go
51 lines
1.4 KiB
Go
// +build unit
|
|
|
|
package main
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestTraceNoArgs(t *testing.T) {
|
|
cmd := cmdTestCase{
|
|
args: "trace",
|
|
testClusterMode: FakeClusterMode,
|
|
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",
|
|
testClusterMode: FakeClusterMode,
|
|
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",
|
|
testClusterMode: FakeClusterMode,
|
|
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",
|
|
testClusterMode: FakeClusterMode,
|
|
wantError: false,
|
|
goldenFile: "testdata/trace/helmrelease-missing-git-ref.txt",
|
|
objectFile: "testdata/trace/helmrelease-missing-git-ref.yaml",
|
|
}
|
|
cmd.runTestCmd(t)
|
|
}
|