2020-07-12 02:23:07 +08:00
|
|
|
## 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/.
|
2016-06-08 08:32:41 +08:00
|
|
|
##
|
2020-03-10 22:39:56 +08:00
|
|
|
## Copyright (c) 2016-2020 VMware, Inc. or its affiliates. All rights reserved.
|
2016-06-08 08:32:41 +08:00
|
|
|
|
|
|
|
defmodule SyncQueueCommandTest do
|
|
|
|
use ExUnit.Case, async: false
|
|
|
|
import TestHelper
|
|
|
|
|
2016-06-10 07:54:22 +08:00
|
|
|
@command RabbitMQ.CLI.Ctl.Commands.SyncQueueCommand
|
2016-06-08 08:32:41 +08:00
|
|
|
|
|
|
|
@vhost "/"
|
|
|
|
|
|
|
|
setup_all do
|
2016-11-15 01:52:08 +08:00
|
|
|
RabbitMQ.CLI.Core.Distribution.start()
|
2017-06-07 23:21:53 +08:00
|
|
|
|
2017-02-28 23:16:54 +08:00
|
|
|
start_rabbitmq_app()
|
2016-06-08 08:32:41 +08:00
|
|
|
|
|
|
|
on_exit([], fn ->
|
2017-02-28 23:16:54 +08:00
|
|
|
start_rabbitmq_app()
|
2016-06-08 08:32:41 +08:00
|
|
|
end)
|
|
|
|
|
|
|
|
:ok
|
|
|
|
end
|
|
|
|
|
|
|
|
setup do
|
|
|
|
{:ok, opts: %{
|
2017-01-24 20:33:48 +08:00
|
|
|
node: get_rabbit_hostname(),
|
2016-06-08 08:32:41 +08:00
|
|
|
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
|
2019-04-12 06:27:15 +08:00
|
|
|
opts = %{node: :jake@thedog, vhost: @vhost, timeout: 200}
|
|
|
|
assert match?({:badrpc, _}, @command.run(["q1"], opts))
|
2016-06-08 08:32:41 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
test "banner", context do
|
|
|
|
s = @command.banner(["q1"], context[:opts])
|
|
|
|
|
|
|
|
assert s =~ ~r/Synchronising queue/
|
|
|
|
assert s =~ ~r/q1/
|
|
|
|
end
|
|
|
|
end
|