37 lines
780 B
Go
37 lines
780 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package command
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/hashicorp/nomad/ci"
|
|
"github.com/mitchellh/cli"
|
|
)
|
|
|
|
func TestOperator_Raft_ListPeers_Implements(t *testing.T) {
|
|
ci.Parallel(t)
|
|
var _ cli.Command = &OperatorRaftListCommand{}
|
|
}
|
|
|
|
func TestOperator_Raft_ListPeers(t *testing.T) {
|
|
ci.Parallel(t)
|
|
s, _, addr := testServer(t, false, nil)
|
|
defer s.Shutdown()
|
|
|
|
ui := cli.NewMockUi()
|
|
c := &OperatorRaftListCommand{Meta: Meta{Ui: ui}}
|
|
args := []string{"-address=" + addr}
|
|
|
|
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)
|
|
}
|
|
}
|