2014-08-21 23:08:21 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
"testing"
|
2017-02-10 01:36:01 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/consul/command/base"
|
|
|
|
"github.com/mitchellh/cli"
|
2014-08-21 23:08:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestWatchCommand_implements(t *testing.T) {
|
|
|
|
var _ cli.Command = &WatchCommand{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestWatchCommandRun(t *testing.T) {
|
|
|
|
a1 := testAgent(t)
|
|
|
|
defer a1.Shutdown()
|
|
|
|
|
|
|
|
ui := new(cli.MockUi)
|
2017-02-10 01:36:01 +00:00
|
|
|
c := &WatchCommand{
|
|
|
|
Command: base.Command{
|
2017-04-21 00:02:42 +00:00
|
|
|
UI: ui,
|
2017-02-10 01:36:01 +00:00
|
|
|
Flags: base.FlagSetHTTP,
|
|
|
|
},
|
|
|
|
}
|
2014-08-21 23:08:21 +00:00
|
|
|
args := []string{"-http-addr=" + a1.httpAddr, "-type=nodes"}
|
|
|
|
|
|
|
|
code := c.Run(args)
|
|
|
|
if code != 0 {
|
|
|
|
t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
if !strings.Contains(ui.OutputWriter.String(), a1.config.NodeName) {
|
|
|
|
t.Fatalf("bad: %#v", ui.OutputWriter.String())
|
|
|
|
}
|
|
|
|
}
|