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.
24 lines
529 B
Go
24 lines
529 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestCreateHelmSecretNoArgs(t *testing.T) {
|
|
cmd := cmdTestCase{
|
|
args: "create secret helm",
|
|
wantError: true,
|
|
goldenValue: "secret name is required",
|
|
}
|
|
cmd.runTestCmd(t)
|
|
}
|
|
|
|
func TestCreateHelmSecret(t *testing.T) {
|
|
cmd := cmdTestCase{
|
|
args: "create secret helm helm-secret --username=my-username --password=my-password --namespace=my-namespace --export",
|
|
wantError: false,
|
|
goldenFile: "testdata/create/secret/helm/secret-helm.yaml",
|
|
}
|
|
cmd.runTestCmd(t)
|
|
}
|