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"
|
|
|
|
|
2017-05-22 11:59:36 +00:00
|
|
|
"github.com/hashicorp/consul/command/agent"
|
2017-02-15 21:30:07 +00:00
|
|
|
"github.com/hashicorp/consul/command/base"
|
|
|
|
"github.com/mitchellh/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestOperator_Raft_ListPeers_Implements(t *testing.T) {
|
2017-05-22 18:18:53 +00:00
|
|
|
t.Parallel()
|
2017-02-15 21:30:07 +00:00
|
|
|
var _ cli.Command = &OperatorRaftListCommand{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestOperator_Raft_ListPeers(t *testing.T) {
|
2017-05-22 18:18:53 +00:00
|
|
|
t.Parallel()
|
2017-05-22 11:59:36 +00:00
|
|
|
a := agent.NewTestAgent(t.Name(), nil)
|
|
|
|
defer a.Shutdown()
|
2017-02-15 21:30:07 +00:00
|
|
|
|
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",
|
2017-05-22 11:59:36 +00:00
|
|
|
a.Config.NodeName, a.Config.Ports.Server, a.Config.Ports.Server)
|
2017-04-19 22:01:40 +00:00
|
|
|
|
2017-02-15 21:30:07 +00:00
|
|
|
// Test the legacy mode with 'consul operator raft -list-peers'
|
|
|
|
{
|
|
|
|
ui, c := testOperatorRaftCommand(t)
|
2017-05-22 11:59:36 +00:00
|
|
|
args := []string{"-http-addr=" + a.HTTPAddr(), "-list-peers"}
|
2017-02-15 21:30:07 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
{
|
2017-05-22 23:26:30 +00:00
|
|
|
ui := cli.NewMockUi()
|
2017-02-15 21:30:07 +00:00
|
|
|
c := OperatorRaftListCommand{
|
|
|
|
Command: base.Command{
|
2017-04-21 00:02:42 +00:00
|
|
|
UI: ui,
|
2017-02-15 21:30:07 +00:00
|
|
|
Flags: base.FlagSetHTTP,
|
|
|
|
},
|
|
|
|
}
|
2017-05-22 11:59:36 +00:00
|
|
|
args := []string{"-http-addr=" + a.HTTPAddr()}
|
2017-02-15 21:30:07 +00:00
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|