2015-09-11 18:10:20 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
2015-09-12 21:50:05 +00:00
|
|
|
"strings"
|
2015-09-11 18:10:20 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/mitchellh/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestAgentInfoCommand_Implements(t *testing.T) {
|
2017-07-21 04:24:21 +00:00
|
|
|
t.Parallel()
|
2015-09-11 18:10:20 +00:00
|
|
|
var _ cli.Command = &AgentInfoCommand{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAgentInfoCommand_Run(t *testing.T) {
|
2017-07-21 04:24:21 +00:00
|
|
|
t.Parallel()
|
2017-07-21 04:07:32 +00:00
|
|
|
srv, _, url := testServer(t, false, nil)
|
|
|
|
defer srv.Shutdown()
|
2015-09-12 21:50:05 +00:00
|
|
|
|
2020-10-05 14:07:41 +00:00
|
|
|
ui := cli.NewMockUi()
|
2015-09-14 20:13:52 +00:00
|
|
|
cmd := &AgentInfoCommand{Meta: Meta{Ui: ui}}
|
2015-09-12 21:50:05 +00:00
|
|
|
|
2015-09-14 20:13:52 +00:00
|
|
|
code := cmd.Run([]string{"-address=" + url})
|
2015-09-12 21:50:05 +00:00
|
|
|
if code != 0 {
|
2015-10-07 10:18:19 +00:00
|
|
|
t.Fatalf("expected exit 0, got: %d", code)
|
2015-09-12 21:50:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-13 14:42:46 +00:00
|
|
|
func TestAgentInfoCommand_Run_JSON(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
srv, _, url := testServer(t, false, nil)
|
|
|
|
defer srv.Shutdown()
|
|
|
|
|
|
|
|
ui := cli.NewMockUi()
|
|
|
|
cmd := &AgentInfoCommand{Meta: Meta{Ui: ui}}
|
|
|
|
|
|
|
|
code := cmd.Run([]string{"-address=" + url, "-json"})
|
|
|
|
if code != 0 {
|
|
|
|
t.Fatalf("expected exit 0, got: %d", code)
|
|
|
|
}
|
|
|
|
if out := ui.OutputWriter.String(); !strings.Contains(out, "\"config\": {") {
|
|
|
|
t.Fatalf("expected config stanza in output json")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAgentInfoCommand_Run_Gotemplate(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
srv, _, url := testServer(t, false, nil)
|
|
|
|
defer srv.Shutdown()
|
|
|
|
|
|
|
|
ui := cli.NewMockUi()
|
|
|
|
cmd := &AgentInfoCommand{Meta: Meta{Ui: ui}}
|
|
|
|
|
|
|
|
code := cmd.Run([]string{"-address=" + url, "-t", "{{.Stats.raft}}"})
|
|
|
|
if code != 0 {
|
|
|
|
t.Fatalf("expected exit 0, got: %d", code)
|
|
|
|
}
|
|
|
|
if out := ui.OutputWriter.String(); !strings.Contains(out, "last_log_index") {
|
|
|
|
t.Fatalf("expected raft stats in gotemplate output")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-12 21:50:05 +00:00
|
|
|
func TestAgentInfoCommand_Fails(t *testing.T) {
|
2017-07-21 04:24:21 +00:00
|
|
|
t.Parallel()
|
2020-10-05 14:07:41 +00:00
|
|
|
ui := cli.NewMockUi()
|
2015-09-14 20:13:52 +00:00
|
|
|
cmd := &AgentInfoCommand{Meta: Meta{Ui: ui}}
|
2015-09-12 21:50:05 +00:00
|
|
|
|
|
|
|
// Fails on misuse
|
|
|
|
if code := cmd.Run([]string{"some", "bad", "args"}); code != 1 {
|
|
|
|
t.Fatalf("expected exit code 1, got: %d", code)
|
|
|
|
}
|
2018-04-18 17:51:17 +00:00
|
|
|
if out := ui.ErrorWriter.String(); !strings.Contains(out, commandErrorText(cmd)) {
|
2015-09-12 21:50:05 +00:00
|
|
|
t.Fatalf("expected help output, got: %s", out)
|
|
|
|
}
|
2015-09-12 23:36:44 +00:00
|
|
|
ui.ErrorWriter.Reset()
|
2015-09-12 21:50:05 +00:00
|
|
|
|
|
|
|
// Fails on connection failure
|
2015-09-14 20:13:52 +00:00
|
|
|
if code := cmd.Run([]string{"-address=nope"}); code != 1 {
|
2015-09-12 21:50:05 +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 querying agent info") {
|
2015-09-12 21:50:05 +00:00
|
|
|
t.Fatalf("expected failed query error, got: %s", out)
|
|
|
|
}
|
2015-09-11 18:10:20 +00:00
|
|
|
}
|