2015-09-13 00:09:03 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/mitchellh/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestNodeDrainCommand_Implements(t *testing.T) {
|
|
|
|
var _ cli.Command = &NodeDrainCommand{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestNodeDrainCommand_Fails(t *testing.T) {
|
2015-09-15 18:20:08 +00:00
|
|
|
srv, _, url := testServer(t, nil)
|
2015-09-13 00:09:03 +00:00
|
|
|
defer srv.Stop()
|
|
|
|
|
|
|
|
ui := new(cli.MockUi)
|
2015-09-14 20:13:52 +00:00
|
|
|
cmd := &NodeDrainCommand{Meta: Meta{Ui: ui}}
|
2015-09-13 00:09:03 +00:00
|
|
|
|
|
|
|
// 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()
|
|
|
|
|
|
|
|
// Fails on connection failure
|
2016-01-14 20:57:43 +00:00
|
|
|
if code := cmd.Run([]string{"-address=nope", "-enable", "12345678-abcd-efab-cdef-123456789abc"}); code != 1 {
|
2015-09-13 00:09:03 +00:00
|
|
|
t.Fatalf("expected exit code 1, got: %d", code)
|
|
|
|
}
|
2015-09-14 20:13:52 +00:00
|
|
|
if out := ui.ErrorWriter.String(); !strings.Contains(out, "Error toggling") {
|
2015-09-13 00:09:03 +00:00
|
|
|
t.Fatalf("expected failed toggle error, got: %s", out)
|
|
|
|
}
|
|
|
|
ui.ErrorWriter.Reset()
|
|
|
|
|
|
|
|
// Fails on non-existent node
|
2016-01-14 20:57:43 +00:00
|
|
|
if code := cmd.Run([]string{"-address=" + url, "-enable", "12345678-abcd-efab-cdef-123456789abc"}); code != 1 {
|
2015-09-13 00:09:03 +00:00
|
|
|
t.Fatalf("expected exit 1, got: %d", code)
|
|
|
|
}
|
2015-12-24 10:46:59 +00:00
|
|
|
if out := ui.ErrorWriter.String(); !strings.Contains(out, "No node(s) with prefix or id") {
|
2015-09-13 00:09:03 +00:00
|
|
|
t.Fatalf("expected not exist error, got: %s", out)
|
|
|
|
}
|
|
|
|
ui.ErrorWriter.Reset()
|
|
|
|
|
|
|
|
// Fails if both enable and disable specified
|
2016-01-14 20:57:43 +00:00
|
|
|
if code := cmd.Run([]string{"-enable", "-disable", "12345678-abcd-efab-cdef-123456789abc"}); code != 1 {
|
2015-09-13 00:09:03 +00:00
|
|
|
t.Fatalf("expected exit 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()
|
|
|
|
|
|
|
|
// Fails if neither enable or disable specified
|
2016-01-14 20:57:43 +00:00
|
|
|
if code := cmd.Run([]string{"12345678-abcd-efab-cdef-123456789abc"}); code != 1 {
|
2015-09-13 00:09:03 +00:00
|
|
|
t.Fatalf("expected exit 1, got: %d", code)
|
|
|
|
}
|
|
|
|
if out := ui.ErrorWriter.String(); !strings.Contains(out, cmd.Help()) {
|
|
|
|
t.Fatalf("expected help output, got: %s", out)
|
|
|
|
}
|
|
|
|
}
|