2013-12-31 21:06:33 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2017-03-23 22:27:16 +00:00
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2017-02-08 00:16:33 +00:00
|
|
|
"github.com/hashicorp/consul/command/base"
|
2017-04-29 16:34:02 +00:00
|
|
|
"github.com/hashicorp/consul/testutil/retry"
|
2013-12-31 21:06:33 +00:00
|
|
|
"github.com/hashicorp/serf/serf"
|
|
|
|
"github.com/mitchellh/cli"
|
|
|
|
)
|
|
|
|
|
2017-02-07 01:50:51 +00:00
|
|
|
func testForceLeaveCommand(t *testing.T) (*cli.MockUi, *ForceLeaveCommand) {
|
|
|
|
ui := new(cli.MockUi)
|
|
|
|
return ui, &ForceLeaveCommand{
|
2017-02-08 00:16:33 +00:00
|
|
|
Command: base.Command{
|
2017-04-21 00:02:42 +00:00
|
|
|
UI: ui,
|
2017-02-08 00:16:33 +00:00
|
|
|
Flags: base.FlagSetClientHTTP,
|
2017-02-07 01:50:51 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-31 21:06:33 +00:00
|
|
|
func TestForceLeaveCommand_implements(t *testing.T) {
|
|
|
|
var _ cli.Command = &ForceLeaveCommand{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestForceLeaveCommandRun(t *testing.T) {
|
|
|
|
a1 := testAgent(t)
|
|
|
|
a2 := testAgent(t)
|
|
|
|
defer a1.Shutdown()
|
|
|
|
defer a2.Shutdown()
|
|
|
|
|
2014-04-11 23:34:29 +00:00
|
|
|
addr := fmt.Sprintf("127.0.0.1:%d", a2.config.Ports.SerfLan)
|
2013-12-31 21:06:33 +00:00
|
|
|
_, err := a1.agent.JoinLAN([]string{addr})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Forcibly shutdown a2 so that it appears "failed" in a1
|
|
|
|
a2.Shutdown()
|
|
|
|
|
2017-02-07 01:50:51 +00:00
|
|
|
ui, c := testForceLeaveCommand(t)
|
2013-12-31 21:06:33 +00:00
|
|
|
args := []string{
|
2017-02-07 01:50:51 +00:00
|
|
|
"-http-addr=" + a1.httpAddr,
|
2013-12-31 21:06:33 +00:00
|
|
|
a2.config.NodeName,
|
|
|
|
}
|
|
|
|
|
|
|
|
code := c.Run(args)
|
|
|
|
if code != 0 {
|
|
|
|
t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
m := a1.agent.LANMembers()
|
|
|
|
if len(m) != 2 {
|
|
|
|
t.Fatalf("should have 2 members: %#v", m)
|
|
|
|
}
|
2017-05-04 22:52:53 +00:00
|
|
|
retry.Run(t, func(r *retry.R) {
|
2014-05-07 20:45:16 +00:00
|
|
|
m = a1.agent.LANMembers()
|
2017-04-29 16:34:02 +00:00
|
|
|
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) {
|
|
|
|
ui := new(cli.MockUi)
|
2017-02-07 01:50:51 +00:00
|
|
|
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())
|
|
|
|
}
|
|
|
|
}
|