mirror of https://github.com/status-im/consul.git
command: drop legacy 'operator raft' tests
This commit is contained in:
parent
4d604c5138
commit
497d2702bf
|
@ -22,21 +22,6 @@ func TestOperator_Raft_ListPeers(t *testing.T) {
|
||||||
expected := fmt.Sprintf("%s %s 127.0.0.1:%d leader true 3",
|
expected := fmt.Sprintf("%s %s 127.0.0.1:%d leader true 3",
|
||||||
a.Config.NodeName, a.Config.NodeID, a.Config.ServerPort)
|
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
|
// Test the list-peers subcommand directly
|
||||||
{
|
{
|
||||||
ui := cli.NewMockUi()
|
ui := cli.NewMockUi()
|
||||||
|
|
|
@ -18,23 +18,6 @@ func TestOperator_Raft_RemovePeer(t *testing.T) {
|
||||||
a := agent.NewTestAgent(t.Name(), ``)
|
a := agent.NewTestAgent(t.Name(), ``)
|
||||||
defer a.Shutdown()
|
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
|
// Test the remove-peer subcommand directly
|
||||||
{
|
{
|
||||||
ui := cli.NewMockUi()
|
ui := cli.NewMockUi()
|
||||||
|
|
Loading…
Reference in New Issue