93 lines
3.0 KiB
Elixir
93 lines
3.0 KiB
Elixir
## at http://www.mozilla.org/MPL/
|
|
##
|
|
## Software distributed under the License is distributed on an "AS IS"
|
|
## basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
|
|
## the License for the specific language governing rights and
|
|
## limitations under the License.
|
|
##
|
|
## The Original Code is RabbitMQ.
|
|
##
|
|
## The Initial Developer of the Original Code is GoPivotal, Inc.
|
|
## Copyright (c) 2007-2016 Pivotal Software, Inc. All rights reserved.
|
|
|
|
|
|
defmodule AuthenticateUserCommandTest do
|
|
use ExUnit.Case, async: false
|
|
import ExUnit.CaptureIO
|
|
import TestHelper
|
|
|
|
@user "user1"
|
|
@password "password"
|
|
|
|
setup_all do
|
|
:net_kernel.start([:rabbitmqctl, :shortnames])
|
|
:net_kernel.connect_node(get_rabbit_hostname)
|
|
|
|
on_exit([], fn ->
|
|
:erlang.disconnect_node(get_rabbit_hostname)
|
|
:net_kernel.stop()
|
|
end)
|
|
|
|
:ok
|
|
end
|
|
|
|
setup context do
|
|
add_user(@user, @password)
|
|
on_exit(context, fn -> delete_user(@user) end)
|
|
{:ok, opts: %{node: get_rabbit_hostname}}
|
|
end
|
|
|
|
test "invalid arguments return arg count errors" do
|
|
assert AuthenticateUserCommand.run([], %{}) == {:not_enough_args, []}
|
|
assert AuthenticateUserCommand.run(["user"], %{}) == {:not_enough_args, ["user"]}
|
|
assert AuthenticateUserCommand.run(["user", "password", "extra"], %{}) ==
|
|
{:too_many_args, ["user", "password", "extra"]}
|
|
end
|
|
|
|
@tag user: @user, password: @password
|
|
test "a valid username and password returns okay", context do
|
|
capture_io(fn ->
|
|
assert {:ok, _} = AuthenticateUserCommand.run([context[:user], context[:password]], context[:opts])
|
|
end)
|
|
end
|
|
|
|
test "An invalid rabbitmq node throws a badrpc" do
|
|
target = :jake@thedog
|
|
:net_kernel.connect_node(target)
|
|
opts = %{node: target}
|
|
|
|
capture_io(fn ->
|
|
assert AuthenticateUserCommand.run(["user", "password"], opts) == {:badrpc, :nodedown}
|
|
end)
|
|
end
|
|
|
|
@tag user: @user, password: "treachery"
|
|
test "a valid username and invalid password returns refused", context do
|
|
capture_io(fn ->
|
|
assert {:refused, _, _, _} = AuthenticateUserCommand.run([context[:user], context[:password]], context[:opts])
|
|
end)
|
|
end
|
|
|
|
@tag user: "interloper", password: @password
|
|
test "an invalid username returns refused", context do
|
|
capture_io(fn ->
|
|
assert {:refused, _, _, _} = AuthenticateUserCommand.run([context[:user], context[:password]], context[:opts])
|
|
end)
|
|
end
|
|
|
|
@tag user: @user, password: @password
|
|
test "print info message by default", context do
|
|
assert capture_io(fn ->
|
|
AuthenticateUserCommand.run([context[:user], context[:password]], context[:opts]) == :ok
|
|
end) =~ ~r/Authenticating user "#{context[:user]}" \.\.\./
|
|
end
|
|
|
|
@tag user: @user, password: @password
|
|
test "--quiet flag suppresses info message", context do
|
|
opts = Map.merge(context[:opts], %{quiet: true})
|
|
refute capture_io(fn ->
|
|
AuthenticateUserCommand.run([context[:user], context[:password]], opts) == :ok
|
|
end) =~ ~r/Authenticating user "#{context[:user]}" \.\.\./
|
|
end
|
|
end
|