rabbitmq-server/deps/rabbitmq_cli/test/ctl/sync_queue_command_test.exs

65 lines
1.7 KiB
Elixir
Raw Normal View History

## 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/.
##
2020-03-10 22:39:56 +08:00
## 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
2016-11-15 01:52:08 +08:00
RabbitMQ.CLI.Core.Distribution.start()
start_rabbitmq_app()
on_exit([], fn ->
start_rabbitmq_app()
end)
:ok
end
setup do
{:ok, opts: %{
2017-01-24 20:33:48 +08:00
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