2013-12-31 21:06:33 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
2017-02-10 01:08:25 +00:00
|
|
|
|
2017-02-10 02:19:25 +00:00
|
|
|
"github.com/hashicorp/consul/command/base"
|
2017-02-10 01:08:25 +00:00
|
|
|
"github.com/mitchellh/cli"
|
2013-12-31 21:06:33 +00:00
|
|
|
)
|
|
|
|
|
2017-02-08 22:14:02 +00:00
|
|
|
func testJoinCommand(t *testing.T) (*cli.MockUi, *JoinCommand) {
|
|
|
|
ui := new(cli.MockUi)
|
|
|
|
return ui, &JoinCommand{
|
|
|
|
Command: base.Command{
|
|
|
|
Ui: ui,
|
|
|
|
Flags: base.FlagSetClientHTTP,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-31 21:06:33 +00:00
|
|
|
func TestJoinCommand_implements(t *testing.T) {
|
|
|
|
var _ cli.Command = &JoinCommand{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestJoinCommandRun(t *testing.T) {
|
|
|
|
a1 := testAgent(t)
|
|
|
|
a2 := testAgent(t)
|
|
|
|
defer a1.Shutdown()
|
|
|
|
defer a2.Shutdown()
|
|
|
|
|
2017-02-08 22:14:02 +00:00
|
|
|
ui, c := testJoinCommand(t)
|
2013-12-31 21:06:33 +00:00
|
|
|
args := []string{
|
2017-02-08 22:14:02 +00:00
|
|
|
"-http-addr=" + a1.httpAddr,
|
2014-04-11 23:34:29 +00:00
|
|
|
fmt.Sprintf("127.0.0.1:%d", a2.config.Ports.SerfLan),
|
2013-12-31 21:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
code := c.Run(args)
|
|
|
|
if code != 0 {
|
|
|
|
t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(a1.agent.LANMembers()) != 2 {
|
|
|
|
t.Fatalf("bad: %#v", a1.agent.LANMembers())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestJoinCommandRun_wan(t *testing.T) {
|
|
|
|
a1 := testAgent(t)
|
|
|
|
a2 := testAgent(t)
|
|
|
|
defer a1.Shutdown()
|
|
|
|
defer a2.Shutdown()
|
|
|
|
|
2017-02-08 22:14:02 +00:00
|
|
|
ui, c := testJoinCommand(t)
|
2013-12-31 21:06:33 +00:00
|
|
|
args := []string{
|
2017-02-08 22:14:02 +00:00
|
|
|
"-http-addr=" + a1.httpAddr,
|
2013-12-31 21:06:33 +00:00
|
|
|
"-wan",
|
2014-04-11 23:34:29 +00:00
|
|
|
fmt.Sprintf("127.0.0.1:%d", a2.config.Ports.SerfWan),
|
2013-12-31 21:06:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
code := c.Run(args)
|
|
|
|
if code != 0 {
|
|
|
|
t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(a1.agent.WANMembers()) != 2 {
|
|
|
|
t.Fatalf("bad: %#v", a1.agent.WANMembers())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestJoinCommandRun_noAddrs(t *testing.T) {
|
2017-02-08 22:14:02 +00:00
|
|
|
ui, c := testJoinCommand(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(), "one address") {
|
|
|
|
t.Fatalf("bad: %#v", ui.ErrorWriter.String())
|
|
|
|
}
|
|
|
|
}
|