rabbitmq-server/deps/rabbitmq_cli/test/diagnostics/resolver_info_command_test.exs

70 lines
1.9 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-2020 VMware, Inc. or its affiliates. All rights reserved.
defmodule ResolverInfoCommandTest do
use ExUnit.Case, async: false
import TestHelper
@command RabbitMQ.CLI.Diagnostics.Commands.ResolverInfoCommand
setup_all do
RabbitMQ.CLI.Core.Distribution.start()
start_rabbitmq_app()
ExUnit.configure(max_cases: 1)
on_exit([], fn ->
start_rabbitmq_app()
end)
:ok
end
setup context do
{:ok,
opts: %{
node: get_rabbit_hostname(),
timeout: context[:test_timeout] || 30000,
offline: false
}}
end
test "merge_defaults: defaults to offline mode" do
assert @command.merge_defaults([], %{}) == {[], %{offline: false}}
end
test "validate: treats positional arguments as a failure" do
assert @command.validate(["extra-arg"], %{}) == {:validation_failure, :too_many_args}
end
test "validate: treats empty positional arguments and default switches as a success" do
assert @command.validate([], %{}) == :ok
end
@tag test_timeout: 3000
test "run: targeting an unreachable node throws a badrpc", context do
assert match?(
{:badrpc, _},
@command.run([], Map.merge(context[:opts], %{node: :jake@thedog, timeout: 100}))
)
end
test "run: returns host resolver (inetrc) information", context do
result = @command.run([], context[:opts])
assert result["lookup"] != nil
assert result["hosts_file"] != nil
end
test "run: returns host resolver (inetrc) information with --offline", context do
result = @command.run([], Map.merge(context[:opts], %{offline: true}))
assert result["lookup"] != nil
assert result["hosts_file"] != nil
end
end