package command import ( "fmt" "strings" "testing" "github.com/hashicorp/consul/command/agent" "github.com/hashicorp/consul/command/base" "github.com/mitchellh/cli" ) func TestOperator_Raft_ListPeers_Implements(t *testing.T) { t.Parallel() var _ cli.Command = &OperatorRaftListCommand{} } func TestOperator_Raft_ListPeers(t *testing.T) { t.Parallel() a := agent.NewTestAgent(t.Name(), nil) defer a.Shutdown() expected := fmt.Sprintf("%s 127.0.0.1:%d 127.0.0.1:%d leader true 2", a.Config.NodeName, a.Config.Ports.Server, a.Config.Ports.Server) // Test the legacy mode with 'consul operator raft -list-peers' { ui, c := testOperatorRaftCommand(t) args := []string{"-http-addr=" + a.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, expected) { t.Fatalf("bad: %q, %q", output, expected) } } // Test the list-peers subcommand directly { ui := cli.NewMockUi() c := OperatorRaftListCommand{ Command: base.Command{ UI: ui, Flags: base.FlagSetHTTP, }, } args := []string{"-http-addr=" + a.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, expected) { t.Fatalf("bad: %q, %q", output, expected) } } }