|
|
@@ -0,0 +1,387 @@
|
|
|
+%%--------------------------------------------------------------------
|
|
|
+%% Copyright (c) 2022-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_mgmt_SUITE).
|
|
|
+
|
|
|
+-compile(export_all).
|
|
|
+-compile(nowarn_export_all).
|
|
|
+
|
|
|
+-include_lib("eunit/include/eunit.hrl").
|
|
|
+-include_lib("common_test/include/ct.hrl").
|
|
|
+
|
|
|
+-export([ident/1]).
|
|
|
+
|
|
|
+-define(FORMATFUN, {?MODULE, ident}).
|
|
|
+
|
|
|
+all() ->
|
|
|
+ emqx_common_test_helpers:all(?MODULE).
|
|
|
+
|
|
|
+init_per_suite(Config) ->
|
|
|
+ emqx_mgmt_api_test_util:init_suite([emqx_conf, emqx_management]),
|
|
|
+ Config.
|
|
|
+
|
|
|
+end_per_suite(_) ->
|
|
|
+ emqx_mgmt_api_test_util:end_suite([emqx_management, emqx_conf]).
|
|
|
+
|
|
|
+init_per_testcase(TestCase, Config) ->
|
|
|
+ meck:expect(mria_mnesia, running_nodes, 0, [node()]),
|
|
|
+ emqx_common_test_helpers:init_per_testcase(?MODULE, TestCase, Config).
|
|
|
+
|
|
|
+end_per_testcase(TestCase, Config) ->
|
|
|
+ meck:unload(mria_mnesia),
|
|
|
+ emqx_common_test_helpers:end_per_testcase(?MODULE, TestCase, Config).
|
|
|
+
|
|
|
+t_list_nodes(init, Config) ->
|
|
|
+ meck:expect(
|
|
|
+ mria_mnesia,
|
|
|
+ cluster_nodes,
|
|
|
+ fun
|
|
|
+ (running) -> [node()];
|
|
|
+ (stopped) -> ['stopped@node']
|
|
|
+ end
|
|
|
+ ),
|
|
|
+ Config;
|
|
|
+t_list_nodes('end', _Config) ->
|
|
|
+ ok.
|
|
|
+
|
|
|
+t_list_nodes(_) ->
|
|
|
+ NodeInfos = emqx_mgmt:list_nodes(),
|
|
|
+ Node = node(),
|
|
|
+ ?assertMatch(
|
|
|
+ [
|
|
|
+ {Node, #{node := Node, node_status := 'running'}},
|
|
|
+ {'stopped@node', #{node := 'stopped@node', node_status := 'stopped'}}
|
|
|
+ ],
|
|
|
+ NodeInfos
|
|
|
+ ).
|
|
|
+
|
|
|
+t_lookup_node(init, Config) ->
|
|
|
+ meck:new(os, [passthrough, unstick, no_link]),
|
|
|
+ OsType = os:type(),
|
|
|
+ meck:expect(os, type, 0, {win32, winME}),
|
|
|
+ [{os_type, OsType} | Config];
|
|
|
+t_lookup_node('end', Config) ->
|
|
|
+ %% We need to restore the original behavior so that rebar3 doesn't crash. If
|
|
|
+ %% we'd `meck:unload(os)` or not set `no_link` then `ct` crashes calling
|
|
|
+ %% `os` with "The code server called the unloaded module `os'".
|
|
|
+ OsType = ?config(os_type, Config),
|
|
|
+ meck:expect(os, type, 0, OsType),
|
|
|
+ ok.
|
|
|
+
|
|
|
+t_lookup_node(_) ->
|
|
|
+ Node = node(),
|
|
|
+ ?assertMatch(
|
|
|
+ #{node := Node, node_status := 'running', memory_total := 0},
|
|
|
+ emqx_mgmt:lookup_node(node())
|
|
|
+ ),
|
|
|
+ ?assertMatch(
|
|
|
+ {error, _},
|
|
|
+ emqx_mgmt:lookup_node('fake@nohost')
|
|
|
+ ),
|
|
|
+ ok.
|
|
|
+
|
|
|
+t_list_brokers(_) ->
|
|
|
+ Node = node(),
|
|
|
+ ?assertMatch(
|
|
|
+ [{Node, #{node := Node, node_status := running, uptime := _}}],
|
|
|
+ emqx_mgmt:list_brokers()
|
|
|
+ ).
|
|
|
+
|
|
|
+t_lookup_broker(_) ->
|
|
|
+ Node = node(),
|
|
|
+ ?assertMatch(
|
|
|
+ #{node := Node, node_status := running, uptime := _},
|
|
|
+ emqx_mgmt:lookup_broker(Node)
|
|
|
+ ).
|
|
|
+
|
|
|
+t_get_metrics(_) ->
|
|
|
+ Metrics = emqx_mgmt:get_metrics(),
|
|
|
+ ?assert(maps:size(Metrics) > 0),
|
|
|
+ ?assertMatch(
|
|
|
+ Metrics, maps:from_list(emqx_mgmt:get_metrics(node()))
|
|
|
+ ).
|
|
|
+
|
|
|
+t_lookup_client(init, Config) ->
|
|
|
+ setup_clients(Config);
|
|
|
+t_lookup_client('end', Config) ->
|
|
|
+ disconnect_clients(Config).
|
|
|
+
|
|
|
+t_lookup_client(_Config) ->
|
|
|
+ [{Chan, Info, Stats}] = emqx_mgmt:lookup_client({clientid, <<"client1">>}, ?FORMATFUN),
|
|
|
+ ?assertEqual(
|
|
|
+ [{Chan, Info, Stats}],
|
|
|
+ emqx_mgmt:lookup_client({username, <<"user1">>}, ?FORMATFUN)
|
|
|
+ ),
|
|
|
+ ?assertEqual([], emqx_mgmt:lookup_client({clientid, <<"notfound">>}, ?FORMATFUN)),
|
|
|
+ meck:expect(mria_mnesia, running_nodes, 0, [node(), 'fake@nonode']),
|
|
|
+ ?assertMatch(
|
|
|
+ [_ | {error, nodedown}], emqx_mgmt:lookup_client({clientid, <<"client1">>}, ?FORMATFUN)
|
|
|
+ ).
|
|
|
+
|
|
|
+t_kickout_client(init, Config) ->
|
|
|
+ process_flag(trap_exit, true),
|
|
|
+ setup_clients(Config);
|
|
|
+t_kickout_client('end', _Config) ->
|
|
|
+ ok.
|
|
|
+
|
|
|
+t_kickout_client(Config) ->
|
|
|
+ [C | _] = ?config(clients, Config),
|
|
|
+ ok = emqx_mgmt:kickout_client(<<"client1">>),
|
|
|
+ receive
|
|
|
+ {'EXIT', C, Reason} ->
|
|
|
+ ?assertEqual({shutdown, tcp_closed}, Reason);
|
|
|
+ Foo ->
|
|
|
+ error({unexpected, Foo})
|
|
|
+ after 1000 ->
|
|
|
+ error(timeout)
|
|
|
+ end,
|
|
|
+ ?assertEqual({error, not_found}, emqx_mgmt:kickout_client(<<"notfound">>)).
|
|
|
+
|
|
|
+t_list_authz_cache(init, Config) ->
|
|
|
+ setup_clients(Config);
|
|
|
+t_list_authz_cache('end', Config) ->
|
|
|
+ disconnect_clients(Config).
|
|
|
+
|
|
|
+t_list_authz_cache(_) ->
|
|
|
+ ?assertNotMatch({error, _}, emqx_mgmt:list_authz_cache(<<"client1">>)),
|
|
|
+ ?assertMatch({error, not_found}, emqx_mgmt:list_authz_cache(<<"notfound">>)).
|
|
|
+
|
|
|
+t_list_client_subscriptions(init, Config) ->
|
|
|
+ setup_clients(Config);
|
|
|
+t_list_client_subscriptions('end', Config) ->
|
|
|
+ disconnect_clients(Config).
|
|
|
+
|
|
|
+t_list_client_subscriptions(Config) ->
|
|
|
+ [Client | _] = ?config(clients, Config),
|
|
|
+ ?assertEqual([], emqx_mgmt:list_client_subscriptions(<<"client1">>)),
|
|
|
+ emqtt:subscribe(Client, <<"t/#">>),
|
|
|
+ ?assertMatch({_, [{<<"t/#">>, _Opts}]}, emqx_mgmt:list_client_subscriptions(<<"client1">>)),
|
|
|
+ ?assertEqual({error, not_found}, emqx_mgmt:list_client_subscriptions(<<"notfound">>)).
|
|
|
+
|
|
|
+t_clean_cache(init, Config) ->
|
|
|
+ setup_clients(Config);
|
|
|
+t_clean_cache('end', Config) ->
|
|
|
+ disconnect_clients(Config).
|
|
|
+
|
|
|
+t_clean_cache(_Config) ->
|
|
|
+ ?assertNotMatch(
|
|
|
+ {error, _},
|
|
|
+ emqx_mgmt:clean_authz_cache(<<"client1">>)
|
|
|
+ ),
|
|
|
+ ?assertNotMatch(
|
|
|
+ {error, _},
|
|
|
+ emqx_mgmt:clean_authz_cache_all()
|
|
|
+ ),
|
|
|
+ ?assertNotMatch(
|
|
|
+ {error, _},
|
|
|
+ emqx_mgmt:clean_pem_cache_all()
|
|
|
+ ),
|
|
|
+ meck:expect(mria_mnesia, running_nodes, 0, [node(), 'fake@nonode']),
|
|
|
+ ?assertMatch(
|
|
|
+ {error, [{'fake@nonode', {error, _}}]},
|
|
|
+ emqx_mgmt:clean_authz_cache_all()
|
|
|
+ ),
|
|
|
+ ?assertMatch(
|
|
|
+ {error, [{'fake@nonode', {error, _}}]},
|
|
|
+ emqx_mgmt:clean_pem_cache_all()
|
|
|
+ ).
|
|
|
+
|
|
|
+t_set_client_props(init, Config) ->
|
|
|
+ setup_clients(Config);
|
|
|
+t_set_client_props('end', Config) ->
|
|
|
+ disconnect_clients(Config).
|
|
|
+
|
|
|
+t_set_client_props(_Config) ->
|
|
|
+ ?assertEqual(
|
|
|
+ % [FIXME] not implemented at this point?
|
|
|
+ ignored,
|
|
|
+ emqx_mgmt:set_ratelimit_policy(<<"client1">>, foo)
|
|
|
+ ),
|
|
|
+ ?assertEqual(
|
|
|
+ {error, not_found},
|
|
|
+ emqx_mgmt:set_ratelimit_policy(<<"notfound">>, foo)
|
|
|
+ ),
|
|
|
+ ?assertEqual(
|
|
|
+ % [FIXME] not implemented at this point?
|
|
|
+ ignored,
|
|
|
+ emqx_mgmt:set_quota_policy(<<"client1">>, foo)
|
|
|
+ ),
|
|
|
+ ?assertEqual(
|
|
|
+ {error, not_found},
|
|
|
+ emqx_mgmt:set_quota_policy(<<"notfound">>, foo)
|
|
|
+ ),
|
|
|
+ ?assertEqual(
|
|
|
+ ok,
|
|
|
+ emqx_mgmt:set_keepalive(<<"client1">>, 3600)
|
|
|
+ ),
|
|
|
+ ?assertMatch(
|
|
|
+ {error, _},
|
|
|
+ emqx_mgmt:set_keepalive(<<"client1">>, true)
|
|
|
+ ),
|
|
|
+ ?assertEqual(
|
|
|
+ {error, not_found},
|
|
|
+ emqx_mgmt:set_keepalive(<<"notfound">>, 3600)
|
|
|
+ ),
|
|
|
+ ok.
|
|
|
+
|
|
|
+t_list_subscriptions_via_topic(init, Config) ->
|
|
|
+ setup_clients(Config);
|
|
|
+t_list_subscriptions_via_topic('end', Config) ->
|
|
|
+ disconnect_clients(Config).
|
|
|
+
|
|
|
+t_list_subscriptions_via_topic(Config) ->
|
|
|
+ [Client | _] = ?config(clients, Config),
|
|
|
+ ?assertEqual([], emqx_mgmt:list_subscriptions_via_topic(<<"t/#">>, ?FORMATFUN)),
|
|
|
+ emqtt:subscribe(Client, <<"t/#">>),
|
|
|
+ ?assertMatch(
|
|
|
+ [{{<<"t/#">>, _SubPid}, _Opts}],
|
|
|
+ emqx_mgmt:list_subscriptions_via_topic(<<"t/#">>, ?FORMATFUN)
|
|
|
+ ).
|
|
|
+
|
|
|
+t_pubsub_api(init, Config) ->
|
|
|
+ setup_clients(Config);
|
|
|
+t_pubsub_api('end', Config) ->
|
|
|
+ disconnect_clients(Config).
|
|
|
+
|
|
|
+-define(TT(Topic), {Topic, #{qos => 0}}).
|
|
|
+
|
|
|
+t_pubsub_api(Config) ->
|
|
|
+ [Client | _] = ?config(clients, Config),
|
|
|
+ ?assertEqual([], emqx_mgmt:list_subscriptions_via_topic(<<"t/#">>, ?FORMATFUN)),
|
|
|
+ ?assertMatch(
|
|
|
+ {subscribe, _, _},
|
|
|
+ emqx_mgmt:subscribe(<<"client1">>, [?TT(<<"t/#">>), ?TT(<<"t1/#">>), ?TT(<<"t2/#">>)])
|
|
|
+ ),
|
|
|
+ timer:sleep(100),
|
|
|
+ ?assertMatch(
|
|
|
+ [{{<<"t/#">>, _SubPid}, _Opts}],
|
|
|
+ emqx_mgmt:list_subscriptions_via_topic(<<"t/#">>, ?FORMATFUN)
|
|
|
+ ),
|
|
|
+ Message = emqx_message:make(?MODULE, 0, <<"t/foo">>, <<"helloworld">>, #{}, #{}),
|
|
|
+ emqx_mgmt:publish(Message),
|
|
|
+ Recv =
|
|
|
+ receive
|
|
|
+ {publish, #{client_pid := Client, payload := <<"helloworld">>}} ->
|
|
|
+ ok
|
|
|
+ after 100 ->
|
|
|
+ timeout
|
|
|
+ end,
|
|
|
+ ?assertEqual(ok, Recv),
|
|
|
+ ?assertEqual({error, channel_not_found}, emqx_mgmt:subscribe(<<"notfound">>, [?TT(<<"t/#">>)])),
|
|
|
+ ?assertNotMatch({error, _}, emqx_mgmt:unsubscribe(<<"client1">>, <<"t/#">>)),
|
|
|
+ ?assertEqual({error, channel_not_found}, emqx_mgmt:unsubscribe(<<"notfound">>, <<"t/#">>)),
|
|
|
+ Node = node(),
|
|
|
+ ?assertMatch(
|
|
|
+ {Node, [{<<"t1/#">>, _}, {<<"t2/#">>, _}]},
|
|
|
+ emqx_mgmt:list_client_subscriptions(<<"client1">>)
|
|
|
+ ),
|
|
|
+ ?assertMatch(
|
|
|
+ {unsubscribe, [{<<"t1/#">>, _}, {<<"t2/#">>, _}]},
|
|
|
+ emqx_mgmt:unsubscribe_batch(<<"client1">>, [<<"t1/#">>, <<"t2/#">>])
|
|
|
+ ),
|
|
|
+ timer:sleep(100),
|
|
|
+ ?assertMatch([], emqx_mgmt:list_client_subscriptions(<<"client1">>)),
|
|
|
+ ?assertEqual(
|
|
|
+ {error, channel_not_found},
|
|
|
+ emqx_mgmt:unsubscribe_batch(<<"notfound">>, [<<"t1/#">>, <<"t2/#">>])
|
|
|
+ ).
|
|
|
+
|
|
|
+t_alarms(init, Config) ->
|
|
|
+ [
|
|
|
+ emqx_mgmt:deactivate(Node, Name)
|
|
|
+ || {Node, ActiveAlarms} <- emqx_mgmt:get_alarms(activated), #{name := Name} <- ActiveAlarms
|
|
|
+ ],
|
|
|
+ emqx_mgmt:delete_all_deactivated_alarms(),
|
|
|
+ Config;
|
|
|
+t_alarms('end', Config) ->
|
|
|
+ Config.
|
|
|
+
|
|
|
+t_alarms(_) ->
|
|
|
+ Node = node(),
|
|
|
+ ?assertEqual(
|
|
|
+ [{node(), []}],
|
|
|
+ emqx_mgmt:get_alarms(all)
|
|
|
+ ),
|
|
|
+ emqx_alarm:activate(foo),
|
|
|
+ ?assertMatch(
|
|
|
+ [{Node, [#{name := foo, activated := true, duration := _}]}],
|
|
|
+ emqx_mgmt:get_alarms(all)
|
|
|
+ ),
|
|
|
+ emqx_alarm:activate(bar),
|
|
|
+ ?assertMatch(
|
|
|
+ [{Node, [#{name := foo, activated := true}, #{name := bar, activated := true}]}],
|
|
|
+ sort_alarms(emqx_mgmt:get_alarms(all))
|
|
|
+ ),
|
|
|
+ ?assertEqual(
|
|
|
+ ok,
|
|
|
+ emqx_mgmt:deactivate(node(), bar)
|
|
|
+ ),
|
|
|
+ ?assertMatch(
|
|
|
+ [{Node, [#{name := foo, activated := true}, #{name := bar, activated := false}]}],
|
|
|
+ sort_alarms(emqx_mgmt:get_alarms(all))
|
|
|
+ ),
|
|
|
+ ?assertMatch(
|
|
|
+ [{Node, [#{name := foo, activated := true}]}],
|
|
|
+ emqx_mgmt:get_alarms(activated)
|
|
|
+ ),
|
|
|
+ ?assertMatch(
|
|
|
+ [{Node, [#{name := bar, activated := false}]}],
|
|
|
+ emqx_mgmt:get_alarms(deactivated)
|
|
|
+ ),
|
|
|
+ ?assertEqual(
|
|
|
+ [ok],
|
|
|
+ emqx_mgmt:delete_all_deactivated_alarms()
|
|
|
+ ),
|
|
|
+ ?assertMatch(
|
|
|
+ [{Node, [#{name := foo, activated := true}]}],
|
|
|
+ emqx_mgmt:get_alarms(all)
|
|
|
+ ),
|
|
|
+ ?assertEqual(
|
|
|
+ {error, not_found},
|
|
|
+ emqx_mgmt:deactivate(node(), bar)
|
|
|
+ ).
|
|
|
+
|
|
|
+t_banned(_) ->
|
|
|
+ Banned = #{
|
|
|
+ who => {clientid, <<"TestClient">>},
|
|
|
+ by => <<"banned suite">>,
|
|
|
+ reason => <<"test">>,
|
|
|
+ at => erlang:system_time(second),
|
|
|
+ until => erlang:system_time(second) + 1
|
|
|
+ },
|
|
|
+ ?assertMatch(
|
|
|
+ {ok, _},
|
|
|
+ emqx_mgmt:create_banned(Banned)
|
|
|
+ ),
|
|
|
+ ?assertEqual(
|
|
|
+ ok,
|
|
|
+ emqx_mgmt:delete_banned({clientid, <<"TestClient">>})
|
|
|
+ ).
|
|
|
+
|
|
|
+%%% helpers
|
|
|
+ident(Arg) ->
|
|
|
+ Arg.
|
|
|
+
|
|
|
+sort_alarms([{Node, Alarms}]) ->
|
|
|
+ [{Node, lists:sort(fun(#{activate_at := A}, #{activate_at := B}) -> A < B end, Alarms)}].
|
|
|
+
|
|
|
+setup_clients(Config) ->
|
|
|
+ {ok, C} = emqtt:start_link([{clientid, <<"client1">>}, {username, <<"user1">>}]),
|
|
|
+ {ok, _} = emqtt:connect(C),
|
|
|
+ [{clients, [C]} | Config].
|
|
|
+
|
|
|
+disconnect_clients(Config) ->
|
|
|
+ Clients = ?config(clients, Config),
|
|
|
+ lists:foreach(fun emqtt:disconnect/1, Clients).
|