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) {
|
|
|
|
var _ cli.Command = &AgentInfoCommand{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAgentInfoCommand_Run(t *testing.T) {
|
2015-09-15 18:20:08 +00:00
|
|
|
srv, _, url := testServer(t, nil)
|
2015-09-12 23:12:56 +00:00
|
|
|
defer srv.Stop()
|
2015-09-12 21:50:05 +00:00
|
|
|
|
|
|
|
ui := new(cli.MockUi)
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAgentInfoCommand_Fails(t *testing.T) {
|
|
|
|
ui := new(cli.MockUi)
|
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)
|
|
|
|
}
|
|
|
|
if out := ui.ErrorWriter.String(); !strings.Contains(out, cmd.Help()) {
|
|
|
|
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
|
|
|
}
|