50 lines
1.5 KiB
Elixir
50 lines
1.5 KiB
Elixir
## 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) 2007-2025 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
|
|
|
|
defmodule StartAppCommandTest do
|
|
use ExUnit.Case, async: false
|
|
import TestHelper
|
|
|
|
@command RabbitMQ.CLI.Ctl.Commands.StartAppCommand
|
|
|
|
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()}}
|
|
end
|
|
|
|
test "validate: with extra arguments returns an arg count error", context do
|
|
assert @command.validate(["extra"], context[:opts]) == {:validation_failure, :too_many_args}
|
|
end
|
|
|
|
test "run: request to an active node succeeds", context do
|
|
node = RabbitMQ.CLI.Core.Helpers.normalise_node(context[:node], :shortnames)
|
|
stop_rabbitmq_app()
|
|
refute :rabbit_misc.rpc_call(node, :rabbit, :is_running, [])
|
|
assert @command.run([], context[:opts])
|
|
assert :rabbit_misc.rpc_call(node, :rabbit, :is_running, [])
|
|
end
|
|
|
|
test "run: request to a non-existent node returns a badrpc" do
|
|
opts = %{node: :jake@thedog, timeout: 200}
|
|
assert match?({:badrpc, _}, @command.run([], opts))
|
|
end
|
|
|
|
test "banner", context do
|
|
assert @command.banner([], context[:opts]) =~ ~r/Starting node #{get_rabbit_hostname()}/
|
|
end
|
|
end
|