open-consul/command/force_leave_test.go

84 lines
1.8 KiB
Go
Raw Normal View History

2013-12-31 21:06:33 +00:00
package command
import (
"fmt"
2017-03-23 22:27:16 +00:00
"strings"
"testing"
"github.com/hashicorp/consul/command/agent"
"github.com/hashicorp/consul/command/base"
"github.com/hashicorp/consul/testutil/retry"
2013-12-31 21:06:33 +00:00
"github.com/hashicorp/serf/serf"
"github.com/mitchellh/cli"
)
func testForceLeaveCommand(t *testing.T) (*cli.MockUi, *ForceLeaveCommand) {
ui := cli.NewMockUi()
return ui, &ForceLeaveCommand{
Command: base.Command{
2017-04-21 00:02:42 +00:00
UI: ui,
Flags: base.FlagSetClientHTTP,
},
}
}
2013-12-31 21:06:33 +00:00
func TestForceLeaveCommand_implements(t *testing.T) {
2017-05-22 18:18:53 +00:00
t.Parallel()
2013-12-31 21:06:33 +00:00
var _ cli.Command = &ForceLeaveCommand{}
}
func TestForceLeaveCommandRun(t *testing.T) {
2017-05-22 18:18:53 +00:00
t.Parallel()
a1 := agent.NewTestAgent(t.Name(), nil)
a2 := agent.NewTestAgent(t.Name(), nil)
2013-12-31 21:06:33 +00:00
defer a1.Shutdown()
defer a2.Shutdown()
addr := fmt.Sprintf("127.0.0.1:%d", a2.Config.Ports.SerfLan)
_, err := a1.JoinLAN([]string{addr})
2013-12-31 21:06:33 +00:00
if err != nil {
t.Fatalf("err: %s", err)
}
// Forcibly shutdown a2 so that it appears "failed" in a1
a2.Shutdown()
ui, c := testForceLeaveCommand(t)
2013-12-31 21:06:33 +00:00
args := []string{
"-http-addr=" + a1.HTTPAddr(),
a2.Config.NodeName,
2013-12-31 21:06:33 +00:00
}
code := c.Run(args)
if code != 0 {
t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String())
}
m := a1.LANMembers()
2013-12-31 21:06:33 +00:00
if len(m) != 2 {
t.Fatalf("should have 2 members: %#v", m)
}
retry.Run(t, func(r *retry.R) {
m = a1.LANMembers()
if got, want := m[1].Status, serf.StatusLeft; got != want {
r.Fatalf("got status %q want %q", got, want)
}
})
2013-12-31 21:06:33 +00:00
}
func TestForceLeaveCommandRun_noAddrs(t *testing.T) {
2017-05-22 18:18:53 +00:00
t.Parallel()
ui := cli.NewMockUi()
ui, c := testForceLeaveCommand(t)
args := []string{"-http-addr=foo"}
2013-12-31 21:06:33 +00:00
code := c.Run(args)
if code != 1 {
t.Fatalf("bad: %d", code)
}
if !strings.Contains(ui.ErrorWriter.String(), "node name") {
t.Fatalf("bad: %#v", ui.ErrorWriter.String())
}
}