114 lines
4.5 KiB
Erlang
114 lines
4.5 KiB
Erlang
%%--------------------------------------------------------------------
|
|
%% Copyright (c) 2020-2023 EMQ Technologies Co., Ltd. All Rights Reserved.
|
|
%%
|
|
%% Licensed under the Apache License, Version 2.0 (the "License");
|
|
%% you may not use this file except in compliance with the License.
|
|
%% You may obtain a copy of the License at
|
|
%%
|
|
%% http://www.apache.org/licenses/LICENSE-2.0
|
|
%%
|
|
%% Unless required by applicable law or agreed to in writing, software
|
|
%% distributed under the License is distributed on an "AS IS" BASIS,
|
|
%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
%% See the License for the specific language governing permissions and
|
|
%% limitations under the License.
|
|
%%--------------------------------------------------------------------
|
|
|
|
-module(emqx_alarm_SUITE).
|
|
|
|
-compile(export_all).
|
|
-compile(nowarn_export_all).
|
|
|
|
-include_lib("emqx/include/emqx.hrl").
|
|
-include_lib("emqx/include/emqx_mqtt.hrl").
|
|
-include_lib("eunit/include/eunit.hrl").
|
|
|
|
all() -> emqx_ct:all(?MODULE).
|
|
|
|
init_per_testcase(t_size_limit, Config) ->
|
|
emqx_ct_helpers:boot_modules(all),
|
|
emqx_ct_helpers:start_apps([],
|
|
fun(emqx) ->
|
|
application:set_env(emqx, alarm, [{actions, [log,publish]},
|
|
{size_limit, 2},
|
|
{validity_period, 3600}]),
|
|
ok;
|
|
(_) ->
|
|
ok
|
|
end),
|
|
Config;
|
|
init_per_testcase(t_validity_period, Config) ->
|
|
emqx_ct_helpers:boot_modules(all),
|
|
emqx_ct_helpers:start_apps([],
|
|
fun(emqx) ->
|
|
application:set_env(emqx, alarm, [{actions, [log,publish]},
|
|
{size_limit, 1000},
|
|
{validity_period, 1}]),
|
|
ok;
|
|
(_) ->
|
|
ok
|
|
end),
|
|
Config;
|
|
init_per_testcase(_, Config) ->
|
|
emqx_ct_helpers:boot_modules(all),
|
|
emqx_ct_helpers:start_apps([]),
|
|
Config.
|
|
|
|
end_per_testcase(_, _Config) ->
|
|
emqx_ct_helpers:stop_apps([]).
|
|
|
|
t_alarm(_) ->
|
|
ok = emqx_alarm:activate(unknown_alarm),
|
|
{error, already_existed} = emqx_alarm:activate(unknown_alarm),
|
|
?assertNotEqual({error, not_found}, get_alarm(unknown_alarm, emqx_alarm:get_alarms())),
|
|
?assertNotEqual({error, not_found}, get_alarm(unknown_alarm, emqx_alarm:get_alarms(activated))),
|
|
?assertEqual({error, not_found}, get_alarm(unknown_alarm, emqx_alarm:get_alarms(deactivated))),
|
|
|
|
ok = emqx_alarm:deactivate(unknown_alarm),
|
|
{error, not_found} = emqx_alarm:deactivate(unknown_alarm),
|
|
?assertEqual({error, not_found}, get_alarm(unknown_alarm, emqx_alarm:get_alarms(activated))),
|
|
?assertNotEqual({error, not_found},
|
|
get_alarm(unknown_alarm, emqx_alarm:get_alarms(deactivated))),
|
|
|
|
emqx_alarm:delete_all_deactivated_alarms(),
|
|
?assertEqual({error, not_found}, get_alarm(unknown_alarm, emqx_alarm:get_alarms(deactivated))).
|
|
|
|
t_deactivate_all_alarms(_) ->
|
|
ok = emqx_alarm:activate(unknown_alarm),
|
|
{error, already_existed} = emqx_alarm:activate(unknown_alarm),
|
|
?assertNotEqual({error, not_found}, get_alarm(unknown_alarm, emqx_alarm:get_alarms(activated))),
|
|
|
|
emqx_alarm:deactivate_all_alarms(),
|
|
?assertNotEqual({error, not_found},
|
|
get_alarm(unknown_alarm, emqx_alarm:get_alarms(deactivated))),
|
|
|
|
emqx_alarm:delete_all_deactivated_alarms(),
|
|
?assertEqual({error, not_found}, get_alarm(unknown_alarm, emqx_alarm:get_alarms(deactivated))).
|
|
|
|
t_size_limit(_) ->
|
|
ok = emqx_alarm:activate(a),
|
|
ok = emqx_alarm:deactivate(a),
|
|
ok = emqx_alarm:activate(b),
|
|
ok = emqx_alarm:deactivate(b),
|
|
?assertNotEqual({error, not_found}, get_alarm(a, emqx_alarm:get_alarms(deactivated))),
|
|
?assertNotEqual({error, not_found}, get_alarm(a, emqx_alarm:get_alarms(deactivated))),
|
|
ok = emqx_alarm:activate(c),
|
|
ok = emqx_alarm:deactivate(c),
|
|
?assertNotEqual({error, not_found}, get_alarm(c, emqx_alarm:get_alarms(deactivated))),
|
|
?assertEqual({error, not_found}, get_alarm(a, emqx_alarm:get_alarms(deactivated))),
|
|
emqx_alarm:delete_all_deactivated_alarms().
|
|
|
|
t_validity_period(_) ->
|
|
ok = emqx_alarm:activate(a),
|
|
ok = emqx_alarm:deactivate(a),
|
|
?assertNotEqual({error, not_found}, get_alarm(a, emqx_alarm:get_alarms(deactivated))),
|
|
ct:sleep(2000),
|
|
?assertEqual({error, not_found}, get_alarm(a, emqx_alarm:get_alarms(deactivated))).
|
|
|
|
get_alarm(Name, [Alarm = #{name := Name} | _More]) ->
|
|
Alarm;
|
|
get_alarm(Name, [_Alarm | More]) ->
|
|
get_alarm(Name, More);
|
|
get_alarm(_Name, []) ->
|
|
{error, not_found}.
|