command/revoke: revoke

This commit is contained in:
Mitchell Hashimoto
2015-03-31 19:21:02 -07:00
parent 4cbe26b726
commit ea234d9cbf
8 changed files with 218 additions and 1 deletions

45
command/revoke_test.go Normal file
View File

@@ -0,0 +1,45 @@
package command
import (
"testing"
"github.com/hashicorp/vault/http"
"github.com/hashicorp/vault/vault"
"github.com/mitchellh/cli"
)
func TestRevoke(t *testing.T) {
core, _, token := vault.TestCoreUnsealed(t)
ln, addr := http.TestServer(t, core)
defer ln.Close()
ui := new(cli.MockUi)
c := &RevokeCommand{
Meta: Meta{
ClientToken: token,
Ui: ui,
},
}
client := testClient(t, addr, token)
err := client.Logical().Write("secret/foo", map[string]interface{}{
"key": "value",
"lease": "1m",
})
if err != nil {
t.Fatalf("err: %s", err)
}
secret, err := client.Logical().Read("secret/foo")
if err != nil {
t.Fatalf("err: %s", err)
}
args := []string{
"-address", addr,
secret.VaultId,
}
if code := c.Run(args); code != 0 {
t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
}
}