open-nomad/command/deployment_promote_test.go

35 lines
912 B
Go

package command
import (
"strings"
"testing"
"github.com/mitchellh/cli"
)
func TestDeploymentPromoteCommand_Implements(t *testing.T) {
var _ cli.Command = &DeploymentPromoteCommand{}
}
func TestDeploymentPromoteCommand_Fails(t *testing.T) {
ui := new(cli.MockUi)
cmd := &DeploymentPromoteCommand{Meta: Meta{Ui: ui}}
// Fails on misuse
if code := cmd.Run([]string{"some", "bad", "args"}); code != 1 {
t.Fatalf("expected exit code 1, got: %d", code)
}
if out := ui.ErrorWriter.String(); !strings.Contains(out, cmd.Help()) {
t.Fatalf("expected help output, got: %s", out)
}
ui.ErrorWriter.Reset()
if code := cmd.Run([]string{"-address=nope", "12"}); code != 1 {
t.Fatalf("expected exit code 1, got: %d", code)
}
if out := ui.ErrorWriter.String(); !strings.Contains(out, "Error retrieving deployment") {
t.Fatalf("expected failed query error, got: %s", out)
}
ui.ErrorWriter.Reset()
}