summaryrefslogtreecommitdiff
path: root/deps/rabbitmq_cli/test/ctl/sync_queue_command_test.exs
blob: 3d3f866dd0514302d3aa333d79f9eabf4e78d1b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
## This Source Code Form is subject to the terms of the Mozilla Public
## License, v. 2.0. If a copy of the MPL was not distributed with this
## file, You can obtain one at https://mozilla.org/MPL/2.0/.
##
## Copyright (c) 2016-2020 VMware, Inc. or its affiliates.  All rights reserved.

defmodule SyncQueueCommandTest do
  use ExUnit.Case, async: false
  import TestHelper

  @command RabbitMQ.CLI.Ctl.Commands.SyncQueueCommand

  @vhost "/"

  setup_all do
    RabbitMQ.CLI.Core.Distribution.start()

    start_rabbitmq_app()

    on_exit([], fn ->
      start_rabbitmq_app()
    end)

    :ok
  end

  setup do
    {:ok, opts: %{
      node: get_rabbit_hostname(),
      vhost: @vhost
    }}
  end

  test "validate: specifying no queue name is reported as an error", context do
    assert @command.validate([], context[:opts]) ==
      {:validation_failure, :not_enough_args}
  end

  test "validate: specifying two queue names is reported as an error", context do
    assert @command.validate(["q1", "q2"], context[:opts]) ==
      {:validation_failure, :too_many_args}
  end

  test "validate: specifying three queue names is reported as an error", context do
    assert @command.validate(["q1", "q2", "q3"], context[:opts]) ==
      {:validation_failure, :too_many_args}
  end

  test "validate: specifying one queue name succeeds", context do
    assert @command.validate(["q1"], context[:opts]) == :ok
  end

  test "run: request to a non-existent RabbitMQ node returns a nodedown" do
    opts = %{node: :jake@thedog, vhost: @vhost, timeout: 200}
    assert match?({:badrpc, _}, @command.run(["q1"], opts))
  end

  test "banner", context do
    s = @command.banner(["q1"], context[:opts])

    assert s =~ ~r/Synchronising queue/
    assert s =~ ~r/q1/
  end
end