2017-02-15 21:30:07 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
2017-04-19 22:01:40 +00:00
|
|
|
"fmt"
|
2017-02-15 21:30:07 +00:00
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/hashicorp/consul/command/base"
|
|
|
|
"github.com/mitchellh/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestOperator_Raft_ListPeers_Implements(t *testing.T) {
|
|
|
|
var _ cli.Command = &OperatorRaftListCommand{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestOperator_Raft_ListPeers(t *testing.T) {
|
|
|
|
a1 := testAgent(t)
|
|
|
|
defer a1.Shutdown()
|
|
|
|
waitForLeader(t, a1.httpAddr)
|
|
|
|
|
2017-04-19 22:01:40 +00:00
|
|
|
expected := fmt.Sprintf("%s 127.0.0.1:%d 127.0.0.1:%d leader true 2",
|
|
|
|
a1.config.NodeName, a1.config.Ports.Server, a1.config.Ports.Server)
|
|
|
|
|
2017-02-15 21:30:07 +00:00
|
|
|
// Test the legacy mode with 'consul operator raft -list-peers'
|
|
|
|
{
|
|
|
|
ui, c := testOperatorRaftCommand(t)
|
|
|
|
args := []string{"-http-addr=" + a1.httpAddr, "-list-peers"}
|
|
|
|
|
|
|
|
code := c.Run(args)
|
|
|
|
if code != 0 {
|
|
|
|
t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String())
|
|
|
|
}
|
|
|
|
output := strings.TrimSpace(ui.OutputWriter.String())
|
2017-04-19 22:01:40 +00:00
|
|
|
if !strings.Contains(output, expected) {
|
|
|
|
t.Fatalf("bad: %q, %q", output, expected)
|
2017-02-15 21:30:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test the list-peers subcommand directly
|
|
|
|
{
|
|
|
|
ui := new(cli.MockUi)
|
|
|
|
c := OperatorRaftListCommand{
|
|
|
|
Command: base.Command{
|
|
|
|
Ui: ui,
|
|
|
|
Flags: base.FlagSetHTTP,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
args := []string{"-http-addr=" + a1.httpAddr}
|
|
|
|
|
|
|
|
code := c.Run(args)
|
|
|
|
if code != 0 {
|
|
|
|
t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String())
|
|
|
|
}
|
|
|
|
output := strings.TrimSpace(ui.OutputWriter.String())
|
2017-04-19 22:01:40 +00:00
|
|
|
if !strings.Contains(output, expected) {
|
|
|
|
t.Fatalf("bad: %q, %q", output, expected)
|
2017-02-15 21:30:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|