open-consul/command/leave_test.go

57 lines
1.1 KiB
Go

package command
import (
"strings"
"testing"
"github.com/hashicorp/consul/agent"
"github.com/mitchellh/cli"
)
func testLeaveCommand(t *testing.T) (*cli.MockUi, *LeaveCommand) {
ui := cli.NewMockUi()
return ui, &LeaveCommand{
BaseCommand: BaseCommand{
UI: ui,
Flags: FlagSetClientHTTP,
},
}
}
func TestLeaveCommand_implements(t *testing.T) {
t.Parallel()
var _ cli.Command = &LeaveCommand{}
}
func TestLeaveCommandRun(t *testing.T) {
t.Parallel()
a := agent.NewTestAgent(t.Name(), nil)
defer a.Shutdown()
ui, c := testLeaveCommand(t)
args := []string{"-http-addr=" + a.HTTPAddr()}
code := c.Run(args)
if code != 0 {
t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String())
}
if !strings.Contains(ui.OutputWriter.String(), "leave complete") {
t.Fatalf("bad: %#v", ui.OutputWriter.String())
}
}
func TestLeaveCommandFailOnNonFlagArgs(t *testing.T) {
t.Parallel()
a := agent.NewTestAgent(t.Name(), nil)
defer a.Shutdown()
_, c := testLeaveCommand(t)
args := []string{"-http-addr=" + a.HTTPAddr(), "appserver1"}
code := c.Run(args)
if code == 0 {
t.Fatalf("bad: failed to check for unexpected args")
}
}