command/unseal: tests

This commit is contained in:
Mitchell Hashimoto
2015-03-13 20:17:55 -07:00
parent db91352a52
commit 4679dd6ada
2 changed files with 57 additions and 11 deletions

38
command/unseal_test.go Normal file
View File

@@ -0,0 +1,38 @@
package command
import (
"encoding/hex"
"testing"
"github.com/hashicorp/vault/http"
"github.com/hashicorp/vault/vault"
"github.com/mitchellh/cli"
)
func TestUnseal(t *testing.T) {
core := vault.TestCore(t)
keys := vault.TestCoreInit(t, core)
ln, addr := http.TestServer(t, core)
defer ln.Close()
ui := new(cli.MockUi)
c := &UnsealCommand{
Key: hex.EncodeToString(keys[0]),
Meta: Meta{
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")
}
}