open-consul/command/watch_test.go

40 lines
793 B
Go
Raw Normal View History

2014-08-21 23:08:21 +00:00
package command
import (
"strings"
"testing"
"github.com/hashicorp/consul/command/agent"
"github.com/hashicorp/consul/command/base"
"github.com/mitchellh/cli"
2014-08-21 23:08:21 +00:00
)
func TestWatchCommand_implements(t *testing.T) {
2017-05-22 18:18:53 +00:00
t.Parallel()
2014-08-21 23:08:21 +00:00
var _ cli.Command = &WatchCommand{}
}
func TestWatchCommandRun(t *testing.T) {
2017-05-22 18:18:53 +00:00
t.Parallel()
a := agent.NewTestAgent(t.Name(), nil)
defer a.Shutdown()
2014-08-21 23:08:21 +00:00
ui := cli.NewMockUi()
c := &WatchCommand{
Command: base.Command{
2017-04-21 00:02:42 +00:00
UI: ui,
Flags: base.FlagSetHTTP,
},
}
args := []string{"-http-addr=" + a.HTTPAddr(), "-type=nodes"}
2014-08-21 23:08:21 +00:00
code := c.Run(args)
if code != 0 {
t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String())
}
if !strings.Contains(ui.OutputWriter.String(), a.Config.NodeName) {
2014-08-21 23:08:21 +00:00
t.Fatalf("bad: %#v", ui.OutputWriter.String())
}
}