open-nomad/command/job_promote_test.go

35 lines
877 B
Go
Raw Normal View History

2017-07-19 22:39:32 +00:00
package command
import (
"strings"
"testing"
"github.com/mitchellh/cli"
)
func TestJobPromoteCommand_Implements(t *testing.T) {
var _ cli.Command = &JobPromoteCommand{}
}
func TestJobPromoteCommand_Fails(t *testing.T) {
ui := new(cli.MockUi)
cmd := &JobPromoteCommand{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 promoting") {
t.Fatalf("expected failed to promote error, got: %s", out)
}
ui.ErrorWriter.Reset()
}