open-consul/command/info_test.go

36 lines
676 B
Go
Raw Normal View History

2014-02-24 00:59:32 +00:00
package command
import (
"github.com/hashicorp/consul/command/base"
2014-02-24 00:59:32 +00:00
"github.com/mitchellh/cli"
"strings"
"testing"
)
func TestInfoCommand_implements(t *testing.T) {
var _ cli.Command = &InfoCommand{}
}
func TestInfoCommandRun(t *testing.T) {
a1 := testAgent(t)
defer a1.Shutdown()
ui := new(cli.MockUi)
c := &InfoCommand{
Command: base.Command{
2017-04-21 00:02:42 +00:00
UI: ui,
Flags: base.FlagSetClientHTTP,
},
}
args := []string{"-http-addr=" + a1.httpAddr}
2014-02-24 00:59:32 +00:00
code := c.Run(args)
if code != 0 {
t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String())
}
if !strings.Contains(ui.OutputWriter.String(), "agent") {
t.Fatalf("bad: %#v", ui.OutputWriter.String())
}
}