open-vault/command/secrets_disable_test.go

153 lines
3.0 KiB
Go
Raw Normal View History

2015-04-07 17:38:51 +00:00
package command
import (
2017-09-05 04:05:20 +00:00
"strings"
2015-04-07 17:38:51 +00:00
"testing"
2017-09-05 04:05:20 +00:00
"github.com/hashicorp/vault/api"
2015-04-07 17:38:51 +00:00
"github.com/mitchellh/cli"
)
func testSecretsDisableCommand(tb testing.TB) (*cli.MockUi, *SecretsDisableCommand) {
2017-09-05 04:05:20 +00:00
tb.Helper()
2015-04-07 17:38:51 +00:00
2017-09-05 04:05:20 +00:00
ui := cli.NewMockUi()
return ui, &SecretsDisableCommand{
2017-09-05 04:05:20 +00:00
BaseCommand: &BaseCommand{
UI: ui,
2015-04-07 17:38:51 +00:00
},
}
2017-09-05 04:05:20 +00:00
}
2015-04-07 17:38:51 +00:00
func TestSecretsDisableCommand_Run(t *testing.T) {
2017-09-05 04:05:20 +00:00
t.Parallel()
2015-04-07 17:38:51 +00:00
2017-09-05 04:05:20 +00:00
cases := []struct {
name string
args []string
out string
code int
}{
{
"not_enough_args",
[]string{},
"Not enough arguments",
2017-09-05 04:05:20 +00:00
1,
},
{
"too_many_args",
[]string{"foo", "bar"},
"Too many arguments",
2017-09-05 04:05:20 +00:00
1,
},
{
"not_real",
[]string{"not_real"},
"Success! Disabled the secrets engine (if it existed) at: not_real/",
2017-09-05 04:05:20 +00:00
0,
},
{
"default",
[]string{"secret"},
"Success! Disabled the secrets engine (if it existed) at: secret/",
2017-09-05 04:05:20 +00:00
0,
},
2015-04-07 17:38:51 +00:00
}
2017-09-05 04:05:20 +00:00
t.Run("validations", func(t *testing.T) {
t.Parallel()
2015-04-07 17:38:51 +00:00
2017-09-05 04:05:20 +00:00
for _, tc := range cases {
tc := tc
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
client, closer := testVaultServer(t)
defer closer()
ui, cmd := testSecretsDisableCommand(t)
2017-09-05 04:05:20 +00:00
cmd.client = client
code := cmd.Run(tc.args)
if code != tc.code {
t.Errorf("expected %d to be %d", code, tc.code)
}
combined := ui.OutputWriter.String() + ui.ErrorWriter.String()
if !strings.Contains(combined, tc.out) {
t.Errorf("expected %q to contain %q", combined, tc.out)
}
})
}
})
t.Run("integration", func(t *testing.T) {
t.Parallel()
client, closer := testVaultServer(t)
defer closer()
if err := client.Sys().Mount("my-secret/", &api.MountInput{
2017-09-05 04:05:20 +00:00
Type: "generic",
}); err != nil {
t.Fatal(err)
}
ui, cmd := testSecretsDisableCommand(t)
2017-09-05 04:05:20 +00:00
cmd.client = client
code := cmd.Run([]string{
"my-secret/",
2017-09-05 04:05:20 +00:00
})
if exp := 0; code != exp {
t.Errorf("expected %d to be %d", code, exp)
}
expected := "Success! Disabled the secrets engine (if it existed) at: my-secret/"
2017-09-05 04:05:20 +00:00
combined := ui.OutputWriter.String() + ui.ErrorWriter.String()
if !strings.Contains(combined, expected) {
t.Errorf("expected %q to contain %q", combined, expected)
}
mounts, err := client.Sys().ListMounts()
if err != nil {
t.Fatal(err)
}
if _, ok := mounts["integration_unmount"]; ok {
t.Errorf("expected mount to not exist: %#v", mounts)
}
})
t.Run("communication_failure", func(t *testing.T) {
t.Parallel()
client, closer := testVaultServerBad(t)
defer closer()
ui, cmd := testSecretsDisableCommand(t)
2017-09-05 04:05:20 +00:00
cmd.client = client
code := cmd.Run([]string{
"pki/",
})
if exp := 2; code != exp {
t.Errorf("expected %d to be %d", code, exp)
}
expected := "Error disabling secrets engine at pki/: "
2017-09-05 04:05:20 +00:00
combined := ui.OutputWriter.String() + ui.ErrorWriter.String()
if !strings.Contains(combined, expected) {
t.Errorf("expected %q to contain %q", combined, expected)
}
})
t.Run("no_tabs", func(t *testing.T) {
t.Parallel()
_, cmd := testSecretsDisableCommand(t)
2017-09-05 04:05:20 +00:00
assertNoTabs(t, cmd)
})
2015-04-07 17:38:51 +00:00
}