35 lines
877 B
Go
35 lines
877 B
Go
|
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()
|
||
|
}
|