open-vault/command/read_test.go

54 lines
951 B
Go
Raw Normal View History

2015-03-16 03:52:28 +00:00
package command
import (
"testing"
"github.com/hashicorp/vault/http"
"github.com/hashicorp/vault/vault"
"github.com/mitchellh/cli"
)
func TestRead(t *testing.T) {
2015-03-29 23:20:34 +00:00
core, _, token := vault.TestCoreUnsealed(t)
2015-03-16 03:52:28 +00:00
ln, addr := http.TestServer(t, core)
defer ln.Close()
ui := new(cli.MockUi)
c := &ReadCommand{
Meta: Meta{
2015-03-31 06:30:30 +00:00
ClientToken: token,
Ui: ui,
2015-03-16 03:52:28 +00:00
},
}
args := []string{
"-address", addr,
"sys/mounts",
}
if code := c.Run(args); code != 0 {
t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
}
}
2015-04-19 05:05:08 +00:00
func TestRead_notFound(t *testing.T) {
core, _, token := vault.TestCoreUnsealed(t)
ln, addr := http.TestServer(t, core)
defer ln.Close()
ui := new(cli.MockUi)
c := &ReadCommand{
Meta: Meta{
ClientToken: token,
Ui: ui,
},
}
args := []string{
"-address", addr,
"secret/nope",
}
if code := c.Run(args); code != 1 {
t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
}
}