2014-08-28 23:40:31 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
"testing"
|
2017-05-05 10:36:35 +00:00
|
|
|
|
2017-05-22 11:59:36 +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"
|
2014-08-28 23:40:31 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestEventCommand_implements(t *testing.T) {
|
2017-05-22 18:18:53 +00:00
|
|
|
t.Parallel()
|
2017-02-08 21:56:58 +00:00
|
|
|
var _ cli.Command = &EventCommand{}
|
2014-08-28 23:40:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestEventCommandRun(t *testing.T) {
|
2017-05-22 18:18:53 +00:00
|
|
|
t.Parallel()
|
2017-05-22 11:59:36 +00:00
|
|
|
a1 := agent.NewTestAgent(t.Name(), nil)
|
2014-08-28 23:40:31 +00:00
|
|
|
defer a1.Shutdown()
|
|
|
|
|
2017-05-22 23:26:30 +00:00
|
|
|
ui := cli.NewMockUi()
|
2017-02-08 21:56:58 +00:00
|
|
|
c := &EventCommand{
|
|
|
|
Command: base.Command{
|
2017-04-21 00:02:42 +00:00
|
|
|
UI: ui,
|
2017-02-08 21:56:58 +00:00
|
|
|
Flags: base.FlagSetClientHTTP,
|
|
|
|
},
|
|
|
|
}
|
2017-05-22 11:59:36 +00:00
|
|
|
args := []string{"-http-addr=" + a1.HTTPAddr(), "-name=cmd"}
|
2014-08-28 23:40:31 +00:00
|
|
|
|
|
|
|
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())
|
|
|
|
}
|
|
|
|
}
|