open-vault/command/secrets_move_test.go

143 lines
2.8 KiB
Go
Raw Permalink Normal View History

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
2015-04-07 17:46:47 +00:00
package command
import (
2017-09-05 04:03:50 +00:00
"strings"
2015-04-07 17:46:47 +00:00
"testing"
"github.com/mitchellh/cli"
)
func testSecretsMoveCommand(tb testing.TB) (*cli.MockUi, *SecretsMoveCommand) {
2017-09-05 04:03:50 +00:00
tb.Helper()
2015-04-07 17:46:47 +00:00
2017-09-05 04:03:50 +00:00
ui := cli.NewMockUi()
return ui, &SecretsMoveCommand{
2017-09-05 04:03:50 +00:00
BaseCommand: &BaseCommand{
UI: ui,
2015-04-07 17:46:47 +00:00
},
}
2017-09-05 04:03:50 +00:00
}
2015-04-07 17:46:47 +00:00
func TestSecretsMoveCommand_Run(t *testing.T) {
2017-09-05 04:03:50 +00:00
t.Parallel()
2015-04-07 17:46:47 +00:00
2017-09-05 04:03:50 +00:00
cases := []struct {
name string
args []string
out string
code int
}{
{
"not_enough_args",
[]string{},
2017-09-05 04:03:50 +00:00
"Not enough arguments",
1,
},
{
"too_many_args",
[]string{"foo", "bar", "baz"},
"Too many arguments",
1,
},
{
"non_existent",
[]string{"not_real", "over_here"},
"Error moving secrets engine not_real/ to over_here/",
2017-09-05 04:03:50 +00:00
2,
},
2015-04-07 17:46:47 +00:00
}
2017-09-05 04:03:50 +00:00
t.Run("validations", func(t *testing.T) {
t.Parallel()
2015-04-07 17:46:47 +00:00
2017-09-05 04:03:50 +00:00
for _, tc := range cases {
tc := tc
2015-04-07 17:46:47 +00:00
2017-09-05 04:03:50 +00:00
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
client, closer := testVaultServer(t)
defer closer()
ui, cmd := testSecretsMoveCommand(t)
cmd.client = client
2017-09-05 04:03:50 +00:00
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()
ui, cmd := testSecretsMoveCommand(t)
2017-09-05 04:03:50 +00:00
cmd.client = client
code := cmd.Run([]string{
"secret/", "generic/",
})
if exp := 0; code != exp {
t.Errorf("expected %d to be %d", code, exp)
}
2022-02-18 16:50:05 +00:00
expected := "Success! Finished moving secrets engine secret/ to generic/"
2017-09-05 04:03:50 +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()
2017-09-05 04:03:50 +00:00
if err != nil {
t.Fatal(err)
}
if _, ok := mounts["generic/"]; !ok {
t.Errorf("expected mount at generic/: %#v", mounts)
}
})
t.Run("communication_failure", func(t *testing.T) {
t.Parallel()
client, closer := testVaultServerBad(t)
defer closer()
ui, cmd := testSecretsMoveCommand(t)
2017-09-05 04:03:50 +00:00
cmd.client = client
code := cmd.Run([]string{
"secret/", "generic/",
})
if exp := 2; code != exp {
t.Errorf("expected %d to be %d", code, exp)
}
expected := "Error moving secrets engine secret/ to generic/:"
2017-09-05 04:03:50 +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 := testSecretsMoveCommand(t)
2017-09-05 04:03:50 +00:00
assertNoTabs(t, cmd)
})
2015-04-07 17:46:47 +00:00
}