48 lines
1.7 KiB
Erlang
48 lines
1.7 KiB
Erlang
%% 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) 2011-2023 VMware, Inc. or its affiliates. All rights reserved.
|
|
%%
|
|
|
|
-module(unit_password_hashing_SUITE).
|
|
|
|
-compile(export_all).
|
|
|
|
all() -> [password_hashing].
|
|
|
|
%% -------------------------------------------------------------------
|
|
%% Testsuite setup/teardown
|
|
%% -------------------------------------------------------------------
|
|
|
|
init_per_suite(Config) -> Config.
|
|
end_per_suite(Config) -> Config.
|
|
|
|
init_per_group(_Group, Config) -> Config.
|
|
end_per_group(_Group, Config) -> Config.
|
|
|
|
init_per_testcase(_Testcase, Config) -> Config.
|
|
end_per_testcase(_Testcase, Config) -> Config.
|
|
|
|
%% ---------------------------------------------------------------------------
|
|
%% Test Cases
|
|
%% ---------------------------------------------------------------------------
|
|
|
|
password_hashing(_Config) ->
|
|
rabbit_password_hashing_sha256 = rabbit_password:hashing_mod(),
|
|
application:set_env(rabbit, password_hashing_module,
|
|
rabbit_password_hashing_md5),
|
|
rabbit_password_hashing_md5 = rabbit_password:hashing_mod(),
|
|
application:set_env(rabbit, password_hashing_module,
|
|
rabbit_password_hashing_sha256),
|
|
rabbit_password_hashing_sha256 = rabbit_password:hashing_mod(),
|
|
|
|
rabbit_password_hashing_sha256 =
|
|
rabbit_password:hashing_mod(rabbit_password_hashing_sha256),
|
|
rabbit_password_hashing_md5 =
|
|
rabbit_password:hashing_mod(rabbit_password_hashing_md5),
|
|
rabbit_password_hashing_md5 =
|
|
rabbit_password:hashing_mod(undefined),
|
|
|
|
passed.
|