open-consul/command/reload_test.go

46 lines
917 B
Go
Raw Normal View History

2014-06-11 17:58:26 +00:00
package command
import (
"strings"
"testing"
"github.com/hashicorp/consul/command/agent"
"github.com/hashicorp/consul/command/base"
"github.com/mitchellh/cli"
2014-06-11 17:58:26 +00:00
)
func TestReloadCommand_implements(t *testing.T) {
2017-05-22 18:18:53 +00:00
t.Parallel()
2014-06-11 17:58:26 +00:00
var _ cli.Command = &ReloadCommand{}
}
func TestReloadCommandRun(t *testing.T) {
2017-05-22 18:18:53 +00:00
t.Parallel()
a := agent.NewTestAgent(t.Name(), nil)
defer a.Shutdown()
2014-06-11 17:58:26 +00:00
// Setup a dummy response to errCh to simulate a successful reload
go func() {
errCh := <-a.ReloadCh()
errCh <- nil
}()
2014-06-11 17:58:26 +00:00
ui := new(cli.MockUi)
c := &ReloadCommand{
Command: base.Command{
2017-04-21 00:02:42 +00:00
UI: ui,
Flags: base.FlagSetClientHTTP,
},
}
args := []string{"-http-addr=" + a.HTTPAddr()}
2014-06-11 17:58:26 +00:00
code := c.Run(args)
if code != 0 {
t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String())
}
if !strings.Contains(ui.OutputWriter.String(), "reload triggered") {
t.Fatalf("bad: %#v", ui.OutputWriter.String())
}
}