2015-04-07 21:22:18 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
2015-06-17 23:59:50 +00:00
|
|
|
"strings"
|
2015-04-07 21:22:18 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/hashicorp/vault/http"
|
2016-04-01 17:16:05 +00:00
|
|
|
"github.com/hashicorp/vault/meta"
|
2015-04-07 21:22:18 +00:00
|
|
|
"github.com/hashicorp/vault/vault"
|
|
|
|
"github.com/mitchellh/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestTokenCreate(t *testing.T) {
|
|
|
|
core, _, token := vault.TestCoreUnsealed(t)
|
|
|
|
ln, addr := http.TestServer(t, core)
|
|
|
|
defer ln.Close()
|
|
|
|
|
|
|
|
ui := new(cli.MockUi)
|
|
|
|
c := &TokenCreateCommand{
|
2016-04-01 17:16:05 +00:00
|
|
|
Meta: meta.Meta{
|
2015-04-07 21:22:18 +00:00
|
|
|
ClientToken: token,
|
|
|
|
Ui: ui,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
args := []string{
|
|
|
|
"-address", addr,
|
|
|
|
}
|
|
|
|
if code := c.Run(args); code != 0 {
|
|
|
|
t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
|
|
|
|
}
|
2015-06-17 23:59:50 +00:00
|
|
|
|
|
|
|
// Ensure we get lease info
|
|
|
|
output := ui.OutputWriter.String()
|
|
|
|
if !strings.Contains(output, "token_duration") {
|
|
|
|
t.Fatalf("bad: %#v", output)
|
|
|
|
}
|
2015-04-07 21:22:18 +00:00
|
|
|
}
|