open-vault/command/unseal_test.go

67 lines
1.2 KiB
Go
Raw Normal View History

2015-03-14 03:17:55 +00:00
package command
import (
"encoding/hex"
"testing"
"github.com/hashicorp/vault/http"
2016-04-01 17:16:05 +00:00
"github.com/hashicorp/vault/meta"
2015-03-14 03:17:55 +00:00
"github.com/hashicorp/vault/vault"
"github.com/mitchellh/cli"
)
func TestUnseal(t *testing.T) {
core := vault.TestCore(t)
key, _ := vault.TestCoreInit(t, core)
2015-03-14 03:17:55 +00:00
ln, addr := http.TestServer(t, core)
defer ln.Close()
ui := new(cli.MockUi)
c := &UnsealCommand{
2015-03-16 00:10:33 +00:00
Key: hex.EncodeToString(key),
2016-04-01 17:16:05 +00:00
Meta: meta.Meta{
2015-03-14 03:17:55 +00:00
Ui: ui,
},
}
args := []string{"-address", addr}
if code := c.Run(args); code != 0 {
t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
}
sealed, err := core.Sealed()
if err != nil {
t.Fatalf("err: %s", err)
}
if sealed {
t.Fatal("should not be sealed")
}
}
func TestUnseal_arg(t *testing.T) {
core := vault.TestCore(t)
key, _ := vault.TestCoreInit(t, core)
ln, addr := http.TestServer(t, core)
defer ln.Close()
ui := new(cli.MockUi)
c := &UnsealCommand{
2016-04-01 17:16:05 +00:00
Meta: meta.Meta{
Ui: ui,
},
}
args := []string{"-address", addr, hex.EncodeToString(key)}
if code := c.Run(args); code != 0 {
t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
}
sealed, err := core.Sealed()
if err != nil {
t.Fatalf("err: %s", err)
}
if sealed {
t.Fatal("should not be sealed")
}
}