Browse Source

command: drop legacy 'operator raft' tests

pull/3543/head
Frank Schroeder 7 years ago
parent
commit
497d2702bf
No known key found for this signature in database
GPG Key ID: 4D65C6EAEC87DECD
  1. 15
      command/operator_raft_list_test.go
  2. 17
      command/operator_raft_remove_test.go

15
command/operator_raft_list_test.go

@ -22,21 +22,6 @@ func TestOperator_Raft_ListPeers(t *testing.T) {
expected := fmt.Sprintf("%s %s 127.0.0.1:%d leader true 3",
a.Config.NodeName, a.Config.NodeID, a.Config.ServerPort)
// 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()

17
command/operator_raft_remove_test.go

@ -18,23 +18,6 @@ func TestOperator_Raft_RemovePeer(t *testing.T) {
a := agent.NewTestAgent(t.Name(), ``)
defer a.Shutdown()
// Test the legacy mode with 'consul operator raft -remove-peer'
{
ui, c := testOperatorRaftCommand(t)
args := []string{"-http-addr=" + a.HTTPAddr(), "-remove-peer", "-address=nope"}
code := c.Run(args)
if code != 1 {
t.Fatalf("bad: %d. %#v", code, ui.ErrorWriter.String())
}
// If we get this error, it proves we sent the address all they through.
output := strings.TrimSpace(ui.ErrorWriter.String())
if !strings.Contains(output, "address \"nope\" was not found in the Raft configuration") {
t.Fatalf("bad: %s", output)
}
}
// Test the remove-peer subcommand directly
{
ui := cli.NewMockUi()

Loading…
Cancel
Save