open-nomad/command/client_config_test.go

84 lines
2.3 KiB
Go
Raw Normal View History

2015-09-25 04:31:15 +00:00
package command
import (
"strings"
"testing"
2017-07-21 04:07:32 +00:00
"github.com/hashicorp/nomad/command/agent"
2015-09-25 04:31:15 +00:00
"github.com/mitchellh/cli"
)
func TestClientConfigCommand_Implements(t *testing.T) {
var _ cli.Command = &ClientConfigCommand{}
2015-09-25 04:31:15 +00:00
}
func TestClientConfigCommand_UpdateServers(t *testing.T) {
2017-07-21 04:07:32 +00:00
srv, _, url := testServer(t, true, func(c *agent.Config) {
2015-09-25 04:31:15 +00:00
c.Server.BootstrapExpect = 0
})
2017-07-21 04:07:32 +00:00
defer srv.Shutdown()
2015-09-25 04:31:15 +00:00
ui := new(cli.MockUi)
cmd := &ClientConfigCommand{Meta: Meta{Ui: ui}}
// Fails if trying to update with no servers
code := cmd.Run([]string{"-update-servers"})
if code != 1 {
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()
2015-09-25 04:31:15 +00:00
// Set the servers list
code = cmd.Run([]string{"-address=" + url, "-update-servers", "127.0.0.42", "198.18.5.5"})
2015-09-25 04:31:15 +00:00
if code != 0 {
t.Fatalf("expected exit 0, got: %d", code)
}
// Query the servers list
code = cmd.Run([]string{"-address=" + url, "-servers"})
2015-09-25 04:31:15 +00:00
if code != 0 {
t.Fatalf("expect exit 0, got: %d", code)
}
out := ui.OutputWriter.String()
if !strings.Contains(out, "127.0.0.42") {
t.Fatalf("missing 127.0.0.42")
2015-09-25 04:31:15 +00:00
}
if !strings.Contains(out, "198.18.5.5") {
t.Fatalf("missing 198.18.5.5")
2015-09-25 04:31:15 +00:00
}
}
func TestClientConfigCommand_Fails(t *testing.T) {
2015-09-25 04:31:15 +00:00
ui := new(cli.MockUi)
cmd := &ClientConfigCommand{Meta: Meta{Ui: ui}}
2015-09-25 04:31:15 +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 if no valid flags given
if code := cmd.Run([]string{}); code != 1 {
t.Fatalf("expected exit code 1, got: %d", code)
2015-09-25 04:31:15 +00:00
}
if out := ui.ErrorWriter.String(); !strings.Contains(out, cmd.Help()) {
t.Fatalf("expected help output, got: %s", out)
}
ui.ErrorWriter.Reset()
2015-09-25 04:31:15 +00:00
// Fails on connection failure
if code := cmd.Run([]string{"-address=nope", "-servers"}); code != 1 {
2015-09-25 04:31:15 +00:00
t.Fatalf("expected exit code 1, got: %d", code)
}
if out := ui.ErrorWriter.String(); !strings.Contains(out, "Error querying server list") {
t.Fatalf("expected failed query error, got: %s", out)
}
}