open-vault/command/remount_test.go

53 lines
895 B
Go
Raw Normal View History

2015-04-07 17:46:47 +00:00
package command
import (
"testing"
"github.com/hashicorp/vault/http"
2016-04-01 17:16:05 +00:00
"github.com/hashicorp/vault/meta"
2015-04-07 17:46:47 +00:00
"github.com/hashicorp/vault/vault"
"github.com/mitchellh/cli"
)
func TestRemount(t *testing.T) {
core, _, token := vault.TestCoreUnsealed(t)
ln, addr := http.TestServer(t, core)
defer ln.Close()
ui := new(cli.MockUi)
c := &RemountCommand{
2016-04-01 17:16:05 +00:00
Meta: meta.Meta{
2015-04-07 17:46:47 +00:00
ClientToken: token,
Ui: ui,
},
}
args := []string{
"-address", addr,
"secret/", "kv",
2015-04-07 17:46:47 +00:00
}
if code := c.Run(args); code != 0 {
t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
}
client, err := c.Client()
if err != nil {
t.Fatalf("err: %s", err)
}
mounts, err := client.Sys().ListMounts()
if err != nil {
t.Fatalf("err: %s", err)
}
_, ok := mounts["secret/"]
if ok {
t.Fatal("should not have mount")
}
_, ok = mounts["kv/"]
2015-04-07 17:46:47 +00:00
if !ok {
t.Fatal("should have kv")
2015-04-07 17:46:47 +00:00
}
}