open-consul/command/event_test.go

40 lines
795 B
Go
Raw Normal View History

package command
import (
"strings"
"testing"
2017-05-05 10:36:35 +00:00
"github.com/hashicorp/consul/command/agent"
2017-05-05 10:36:35 +00:00
"github.com/hashicorp/consul/command/base"
"github.com/mitchellh/cli"
)
func TestEventCommand_implements(t *testing.T) {
2017-05-22 18:18:53 +00:00
t.Parallel()
var _ cli.Command = &EventCommand{}
}
func TestEventCommandRun(t *testing.T) {
2017-05-22 18:18:53 +00:00
t.Parallel()
a1 := agent.NewTestAgent(t.Name(), nil)
defer a1.Shutdown()
ui := new(cli.MockUi)
c := &EventCommand{
Command: base.Command{
2017-04-21 00:02:42 +00:00
UI: ui,
Flags: base.FlagSetClientHTTP,
},
}
args := []string{"-http-addr=" + a1.HTTPAddr(), "-name=cmd"}
code := c.Run(args)
if code != 0 {
t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String())
}
if !strings.Contains(ui.OutputWriter.String(), "Event ID: ") {
t.Fatalf("bad: %#v", ui.OutputWriter.String())
}
}