74 lines
2.2 KiB
Elixir
74 lines
2.2 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 ClearPasswordCommandTest do
|
|
use ExUnit.Case, async: false
|
|
import TestHelper
|
|
|
|
@command ClearPasswordCommand
|
|
@user "user1"
|
|
@password "password"
|
|
|
|
setup_all do
|
|
RabbitMQCtl.start_distribution(%{})
|
|
: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 "validate: argument count is correct" do
|
|
assert @command.validate(["username"], %{}) == :ok
|
|
assert @command.validate([], %{}) == {:validation_failure, :not_enough_args}
|
|
assert @command.validate(["username", "extra"], %{}) ==
|
|
{:validation_failure, :too_many_args}
|
|
end
|
|
|
|
@tag user: @user, password: @password
|
|
test "run: a valid username clears the password and returns okay", context do
|
|
assert @command.run([context[:user]], context[:opts]) == :ok
|
|
assert {:refused, _, _, _} = authenticate_user(context[:user], context[:password])
|
|
end
|
|
|
|
test "run: An invalid rabbitmq node throws a badrpc" do
|
|
target = :jake@thedog
|
|
:net_kernel.connect_node(target)
|
|
opts = %{node: target}
|
|
|
|
assert @command.run(["user"], opts) == {:badrpc, :nodedown}
|
|
end
|
|
|
|
@tag user: "interloper"
|
|
test "run: An invalid username returns a no-such-user error message", context do
|
|
assert @command.run([context[:user]], context[:opts]) == {:error, {:no_such_user, "interloper"}}
|
|
end
|
|
|
|
@tag user: @user
|
|
test "banner", context do
|
|
s = @command.banner([context[:user]], context[:opts])
|
|
|
|
assert s =~ ~r/Clearing password/
|
|
assert s =~ ~r/"#{context[:user]}"/
|
|
end
|
|
end
|