open-nomad/command/operator_keygen_test.go

31 lines
517 B
Go

package command
import (
"encoding/base64"
"testing"
"github.com/hashicorp/nomad/ci"
"github.com/mitchellh/cli"
)
func TestKeygenCommand(t *testing.T) {
ci.Parallel(t)
ui := cli.NewMockUi()
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)
}
}