Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions internal/namespaces/k8s/v1/custom_execcredentials_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ func Test_ExecCredential(t *testing.T) {
TmpHomeDir: true,
BeforeFunc: beforeFuncCreateFullConfig(),
Cmd: "scw k8s exec-credential",
OverrideEnv: map[string]string{
scw.ScwAccessKeyEnv: "", // Ignore keys in test env
scw.ScwSecretKeyEnv: "", // Ignore keys in test env
},
Check: core.TestCheckCombine(
core.TestCheckExitCode(0),
core.TestCheckGolden(),
Expand Down Expand Up @@ -57,6 +61,8 @@ func Test_ExecCredential(t *testing.T) {
Cmd: "scw k8s exec-credential",
OverrideEnv: map[string]string{
scw.ScwActiveProfileEnv: "p2",
scw.ScwAccessKeyEnv: "", // Ignore keys in test env
scw.ScwSecretKeyEnv: "", // Ignore keys in test env
},
Check: core.TestCheckCombine(
core.TestCheckExitCode(0),
Expand All @@ -71,6 +77,10 @@ func Test_ExecCredential(t *testing.T) {
TmpHomeDir: true,
BeforeFunc: beforeFuncCreateFullConfig(),
Cmd: "scw --profile p3 k8s exec-credential",
OverrideEnv: map[string]string{
scw.ScwAccessKeyEnv: "", // Ignore keys in test env
scw.ScwSecretKeyEnv: "", // Ignore keys in test env
},
Check: core.TestCheckCombine(
core.TestCheckExitCode(0),
core.TestCheckGolden(),
Expand All @@ -86,6 +96,8 @@ func Test_ExecCredential(t *testing.T) {
Cmd: "scw --profile p3 k8s exec-credential",
OverrideEnv: map[string]string{
scw.ScwActiveProfileEnv: "p2",
scw.ScwAccessKeyEnv: "", // Ignore keys in test env
scw.ScwSecretKeyEnv: "", // Ignore keys in test env
},
Check: core.TestCheckCombine(
core.TestCheckExitCode(0),
Expand Down
Loading