open-consul/command/keygen_test.go

38 lines
650 B
Go
Raw Normal View History

2013-12-31 21:06:33 +00:00
package command
import (
"encoding/base64"
"testing"
"github.com/hashicorp/consul/command/base"
2013-12-31 21:06:33 +00:00
"github.com/mitchellh/cli"
)
func TestKeygenCommand_implements(t *testing.T) {
var _ cli.Command = &KeygenCommand{}
}
func TestKeygenCommand(t *testing.T) {
ui := new(cli.MockUi)
c := &KeygenCommand{
Command: base.Command{
2017-04-21 00:02:42 +00:00
UI: ui,
Flags: base.FlagSetNone,
},
}
2013-12-31 21:06:33 +00:00
code := c.Run(nil)
if code != 0 {
t.Fatalf("bad: %d", code)
}
output := ui.OutputWriter.String()
result, err := base64.StdEncoding.DecodeString(output)
if err != nil {
t.Fatalf("err: %s", err)
}
if len(result) != 16 {
t.Fatalf("bad: %#v", result)
}
}