56 lines
1.2 KiB
Go
56 lines
1.2 KiB
Go
package command
|
|
|
|
import (
|
|
"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)
|
|
|
|
// 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())
|
|
if !strings.Contains(output, "leader") {
|
|
t.Fatalf("bad: %s", output)
|
|
}
|
|
}
|
|
|
|
// 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())
|
|
if !strings.Contains(output, "leader") {
|
|
t.Fatalf("bad: %s", output)
|
|
}
|
|
}
|
|
}
|