open-consul/command/keygen_test.go

40 lines
678 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) {
2017-05-22 18:18:53 +00:00
t.Parallel()
2013-12-31 21:06:33 +00:00
var _ cli.Command = &KeygenCommand{}
}
func TestKeygenCommand(t *testing.T) {
2017-05-22 18:18:53 +00:00
t.Parallel()
ui := cli.NewMockUi()
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)
}
}