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.
32 lines
689 B
Go
32 lines
689 B
Go
3 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestCreateTlsSecretNoArgs(t *testing.T) {
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
args string
|
||
|
assert assertFunc
|
||
|
}{
|
||
|
{
|
||
|
args: "create secret tls",
|
||
|
assert: assertError("secret name is required"),
|
||
|
},
|
||
|
{
|
||
|
args: "create secret tls certs --namespace=my-namespace --cert-file=./testdata/create_secret/tls/test-cert.pem --key-file=./testdata/create_secret/tls/test-key.pem --export",
|
||
|
assert: assertGoldenFile("testdata/create_secret/tls/secret-tls.yaml"),
|
||
|
},
|
||
|
}
|
||
|
for _, tt := range tests {
|
||
|
t.Run(tt.name, func(t *testing.T) {
|
||
|
cmd := cmdTestCase{
|
||
|
args: tt.args,
|
||
|
assert: tt.assert,
|
||
|
}
|
||
|
cmd.runTestCmd(t)
|
||
|
})
|
||
|
}
|
||
|
}
|