open-nomad/command/operator_keygen_test.go

29 lines
481 B
Go
Raw Normal View History

package command
import (
"encoding/base64"
"testing"
"github.com/mitchellh/cli"
)
func TestKeygenCommand(t *testing.T) {
2017-07-21 04:24:21 +00:00
t.Parallel()
2020-10-05 14:07:41 +00:00
ui := cli.NewMockUi()
2018-03-21 00:37:28 +00:00
c := &OperatorKeygenCommand{Meta: Meta{Ui: ui}}
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) != 32 {
t.Fatalf("bad: %#v", result)
}
}