Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unify big test config templating for modules #3238

Merged
merged 8 commits into from
Sep 2, 2021
Merged
27 changes: 9 additions & 18 deletions big_tests/test.config
Original file line number Diff line number Diff line change
Expand Up @@ -256,11 +256,9 @@
connection.tls.server_name_indication = false"},
{mod_last, " backend = \"rdbms\""},
{mod_privacy, " backend = \"rdbms\""},
{mod_private, "[modules.mod_private]
backend = \"rdbms\""},
{mod_private, " backend = \"rdbms\""},
{mod_offline, " backend = \"rdbms\"\n"},
{mod_vcard, "[modules.mod_vcard]
backend = \"rdbms\"
{mod_vcard, " backend = \"rdbms\"
host = \"vjud.@HOST@\""},
{mod_roster, " backend = \"rdbms\"\n"}]},
{odbc_mssql_mnesia,
Expand All @@ -277,11 +275,9 @@
connection.settings = \"DSN=mongoose-mssql;UID=sa;PWD=mongooseim_secret+ESL123\""},
{mod_last, " backend = \"rdbms\""},
{mod_privacy, " backend = \"rdbms\""},
{mod_private, "[modules.mod_private]
backend = \"rdbms\""},
{mod_private, " backend = \"rdbms\""},
{mod_offline, " backend = \"rdbms\"\n"},
{mod_vcard, "[modules.mod_vcard]
backend = \"rdbms\"
{mod_vcard, " backend = \"rdbms\"
host = \"vjud.@HOST@\""},
{mod_roster, " backend = \"rdbms\"\n"}]},
{mysql_redis,
Expand All @@ -308,11 +304,9 @@
connection.tls.versions = [\"tlsv1.2\"]"},
{mod_last, " backend = \"rdbms\""},
{mod_privacy, " backend = \"rdbms\""},
{mod_private, "[modules.mod_private]
backend = \"rdbms\""},
{mod_private, " backend = \"rdbms\""},
{mod_offline, " backend = \"rdbms\"\n"},
{mod_vcard, "[modules.mod_vcard]
backend = \"rdbms\"
{mod_vcard, " backend = \"rdbms\"
host = \"vjud.@HOST@\""},
{mod_roster, " backend = \"rdbms\"\n"}]},
{ldap_mnesia,
Expand Down Expand Up @@ -346,8 +340,7 @@
{password_format, "password.format = \"scram\""},
{auth_ldap, "ldap.base = \"ou=Users,dc=esl,dc=com\"
ldap.filter = \"(objectClass=inetOrgPerson)\""},
{mod_vcard, "[modules.mod_vcard]
backend = \"ldap\"
{mod_vcard, " backend = \"ldap\"
host = \"vjud.@HOST@\"
ldap_base = \"ou=Users,dc=esl,dc=com\"
ldap_filter = \"(objectClass=inetOrgPerson)\""}]},
Expand Down Expand Up @@ -375,11 +368,9 @@
connection.tls.cacertfile = \"priv/ssl/cacert.pem\""},
{mod_last, " backend = \"riak\""},
{mod_privacy, " backend = \"riak\""},
{mod_private, "[modules.mod_private]
backend = \"riak\""},
{mod_private, " backend = \"riak\""},
{mod_offline, " backend = \"riak\"\n"},
{mod_vcard, "[modules.mod_vcard]
backend = \"riak\"
{mod_vcard, " backend = \"riak\"
host = \"vjud.@HOST@\""},
{mod_roster, " backend = \"riak\"\n"}
]},
Expand Down
8 changes: 8 additions & 0 deletions big_tests/tests/domain_helper.erl
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,21 @@
insert_domain/3,
delete_domain/2,
make_metrics_prefix/1,
host_types/0,
host_types/1,
host_type/0,
host_type/1,
secondary_host_type/0,
secondary_host_type/1]).

-import(distributed_helper, [get_or_fail/1, rpc/4, mim/0]).

host_types() ->
host_types(mim).

host_types(NodeKey) ->
lists:usort([host_type(NodeKey), secondary_host_type(NodeKey)]).

host_type() ->
host_type(mim).

Expand Down
8 changes: 6 additions & 2 deletions big_tests/tests/dynamic_modules.erl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

-include_lib("common_test/include/ct.hrl").

-export([save_modules_for_host_types/2]).
-export([save_modules/2, ensure_modules/2, ensure_stopped/2,
-export([save_modules_for_host_types/2,
save_modules/2, get_saved_config/3, ensure_modules/2, ensure_stopped/2,
restore_modules/2, restore_modules/1]).
-export([stop/2, stop/3, start/3, start/4, restart/3, stop_running/2, start_running/1]).

Expand All @@ -19,6 +19,10 @@ save_modules_for_host_types([], Config) ->
save_modules(HostType, Config) ->
[{{saved_modules, HostType}, get_current_modules(HostType)} | Config].

get_saved_config(HostType, Module, Config) ->
SavedModules = proplists:get_value({saved_modules, HostType}, Config),
proplists:get_value(Module, SavedModules).

ensure_modules(HostType, RequiredModules) ->
CurrentModules = get_current_modules(HostType),
{ToReplace, ReplaceWith} = to_replace(RequiredModules, CurrentModules, [], []),
Expand Down
20 changes: 1 addition & 19 deletions big_tests/tests/mongoose_helper.erl
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
-export([should_minio_be_running/1]).
-export([new_mongoose_acc/1]).
-export([print_debug_info_for_module/1]).
-export([get_vcard_config/1]).

-import(distributed_helper, [mim/0, rpc/4]).

Expand Down Expand Up @@ -513,25 +512,8 @@ should_minio_be_running(Config) ->

%% It is useful to debug dynamic IQ handler registration
print_debug_info_for_module(Module) ->
ModConfig = rpc(mim(), gen_mod, hosts_and_opts_with_module, [mod_vcard]),
ModConfig = rpc(mim(), gen_mod, hosts_and_opts_with_module, [Module]),
IqConfig = rpc(mim(), ets, tab2list, [sm_iqtable]),
ct:pal("hosts_and_opts=~p~n iq_handlers=~p~n",
[ModConfig, IqConfig]).

get_vcard_config(Config) ->
Preset = proplists:get_value(preset, Config, undefined),
Backend = preset_to_vcard_backend(Preset),
[{backend, Backend}, {host, {prefix, <<"vjud.">>}}]
++ vcard_backend_specific_options(Backend).

vcard_backend_specific_options(ldap) ->
[{ldap_base, "ou=Users,dc=esl,dc=com"},
{ldap_filter, "(objectClass=inetOrgPerson)"}];
vcard_backend_specific_options(_) ->
[].

preset_to_vcard_backend("ldap_mnesia") -> ldap;
preset_to_vcard_backend("riak_mnesia") -> riak;
preset_to_vcard_backend("internal_mnesia") -> mnesia;
preset_to_vcard_backend("elasticsearch_and_cassandra_mnesia") -> mnesia;
preset_to_vcard_backend(_) -> rdbms.
15 changes: 0 additions & 15 deletions big_tests/tests/private_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ suite() ->
escalus:suite().

init_per_suite(Config) ->
HostType = domain_helper:host_type(mim),
ok = dynamic_modules:ensure_modules(HostType, private_modules(HostType)),
escalus:init_per_suite(Config).

end_per_suite(Config) ->
Expand All @@ -64,19 +62,6 @@ init_per_testcase(CaseName, Config) ->
end_per_testcase(CaseName, Config) ->
escalus:end_per_testcase(CaseName, Config).

private_modules(HostType) ->
[{mod_private, [{backend, mod_private_backend(HostType)}]}].

mod_private_backend(HostType) ->
case mam_helper:is_riak_enabled(HostType) of
true -> riak;
false ->
case mongoose_helper:is_rdbms_enabled(HostType) of
true -> rdbms;
false -> mnesia
end
end.

%%--------------------------------------------------------------------
%% Private storage tests
%%--------------------------------------------------------------------
Expand Down
17 changes: 7 additions & 10 deletions big_tests/tests/vcard_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@
rpc/4]).
-import(ldap_helper, [get_ldap_base/1,
call_ldap/3]).
-import(domain_helper, [host_type/0,
host_types/0]).

%%--------------------------------------------------------------------
%% Suite configuration
Expand Down Expand Up @@ -1154,21 +1156,16 @@ prepare_vcard_module(Config) ->
%% Keep the old config, so we can undo our changes, once finished testing
Config1 = dynamic_modules:save_modules_for_host_types(host_types(), Config),
%% Get a list of options, we can use as a prototype to start new modules
[{mod_vcard_opts, mongoose_helper:get_vcard_config(Config)} | Config1].
HostType = domain_helper:host_type(),
VCardOpts = dynamic_modules:get_saved_config(host_type(), mod_vcard, Config1),
[{mod_vcard_opts, VCardOpts} | Config1].

restore_vcard_module(Config) ->
dynamic_modules:restore_modules(Config).

host_types() ->
HostType = ct:get_config({hosts, mim, host_type}),
SecHostType = ct:get_config({hosts, mim, secondary_host_type}),
lists:usort([HostType, SecHostType]).

stop_vcard_mod(_Config) ->
HostType = ct:get_config({hosts, mim, host_type}),
SecHostType = ct:get_config({hosts, mim, secondary_host_type}),
dynamic_modules:stop(HostType, mod_vcard),
dynamic_modules:stop(SecHostType, mod_vcard).
[dynamic_modules:stop(HostType, mod_vcard) || HostType <- host_types()],
ok.

params_all(Config) ->
add_backend_param([], ?config(mod_vcard_opts, Config)).
Expand Down
11 changes: 5 additions & 6 deletions big_tests/tests/vcard_simple_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
require_rpc_nodes/1,
subhost_pattern/1,
rpc/4]).
-import(domain_helper, [host_type/0,
host_types/0]).

%%--------------------------------------------------------------------
%% Suite configuration
Expand Down Expand Up @@ -466,12 +468,9 @@ prepare_vcard_module(Config) ->
%% Keep the old config, so we can undo our changes, once finished testing
Config1 = dynamic_modules:save_modules_for_host_types(host_types(), Config),
%% Get a list of options, we can use as a prototype to start new modules
[{mod_vcard_opts, mongoose_helper:get_vcard_config(Config)} | Config1].

host_types() ->
HostType = ct:get_config({hosts, mim, host_type}),
SecHostType = ct:get_config({hosts, mim, secondary_host_type}),
lists:usort([HostType, SecHostType]).
HostType = domain_helper:host_type(),
VCardOpts = dynamic_modules:get_saved_config(host_type(), mod_vcard, Config1),
[{mod_vcard_opts, VCardOpts} | Config1].

restore_vcard_module(Config) ->
dynamic_modules:restore_modules(Config).
5 changes: 3 additions & 2 deletions rel/files/mongooseim.toml
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@
[modules.mod_adhoc]

{{#mod_amp}}
[modules.mod_amp]
{{{mod_amp}}}

{{/mod_amp}}
[modules.mod_disco]
users_can_see_hidden_services = false
Expand Down Expand Up @@ -248,6 +248,7 @@
{{{mod_blocking}}}
{{/mod_blocking}}
{{#mod_private}}
[modules.mod_private]
{{{mod_private}}}

{{/mod_private}}
Expand All @@ -266,8 +267,8 @@
[modules.mod_sic]

{{#mod_vcard}}
[modules.mod_vcard]
{{{mod_vcard}}}

{{/mod_vcard}}
[modules.mod_bosh]

Expand Down
16 changes: 11 additions & 5 deletions rel/mim1.vars-toml.config
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

{mod_privacy, ""}.
{mod_blocking, ""}.
{mod_amp, ""}.
{host_config,
"[[host_config]]
host = \"anonymous.localhost\"
Expand Down Expand Up @@ -49,10 +50,18 @@
[host_config.modules.mod_privacy]
{{{mod_privacy}}}
{{/mod_privacy}}
{{#mod_private}}
[host_config.modules.mod_private]
{{{mod_private}}}
{{/mod_private}}
{{#mod_blocking}}
[host_config.modules.mod_blocking]
{{{mod_blocking}}}
{{/mod_blocking}}"}.
{{/mod_blocking}}
{{#mod_vcard}}
[host_config.modules.mod_vcard]
{{{mod_vcard}}}
{{/mod_vcard}}"}.
{password_format, "password.format = \"scram\"
password.hash = [\"sha256\"]"}.
{scram_iterations, 64}.
Expand Down Expand Up @@ -95,11 +104,8 @@
ip_address = \"127.0.0.1\"
password = \"secret\""}.

{mod_amp, "[modules.mod_amp]"}.
{mod_private, "[modules.mod_private]"}.
{mod_cache_users, " time_to_live = 2
number_of_segments = 5
"}.
number_of_segments = 5"}.
{zlib, "10_000"}.
{c2s_dhfile, "\"priv/ssl/fake_dh_server.pem\""}.
{s2s_dhfile, "\"priv/ssl/fake_dh_server.pem\""}.
5 changes: 2 additions & 3 deletions rel/vars-toml.config.in
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,9 @@
{mod_offline, ""}.
{mod_privacy, ""}.
{mod_blocking, ""}.
{mod_private, "[modules.mod_private]"}.
{mod_private, ""}.
{mod_roster, ""}.
{mod_vcard, "[modules.mod_vcard]
host = \"vjud.@HOST@\""}.
{mod_vcard, " host = \"vjud.@HOST@\""}.
{sm_backend, "\"mnesia\""}.
{auth_method, "\"internal\""}.
{cyrsasl_external, "\"standard\""}.
Expand Down