| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- %%--------------------------------------------------------------------
- %% Copyright (c) 2020-2022 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_authz_postgresql_SUITE).
- -compile(nowarn_export_all).
- -compile(export_all).
- -include("emqx_authz.hrl").
- -include_lib("eunit/include/eunit.hrl").
- -include_lib("common_test/include/ct.hrl").
- -define(PGSQL_HOST, "pgsql").
- -define(PGSQL_PORT, 5432).
- -define(PGSQL_RESOURCE, <<"emqx_authz_pgsql_SUITE">>).
- all() ->
- emqx_common_test_helpers:all(?MODULE).
- groups() ->
- [].
- init_per_suite(Config) ->
- case emqx_authn_test_lib:is_tcp_server_available(?PGSQL_HOST, ?PGSQL_PORT) of
- true ->
- ok = emqx_common_test_helpers:start_apps(
- [emqx_conf, emqx_authz],
- fun set_special_configs/1
- ),
- ok = start_apps([emqx_resource, emqx_connector]),
- {ok, _} = emqx_resource:create_local(
- ?PGSQL_RESOURCE,
- emqx_connector_pgsql,
- pgsql_config()),
- Config;
- false ->
- {skip, no_pgsql}
- end.
- end_per_suite(_Config) ->
- ok = emqx_authz_test_lib:restore_authorizers(),
- ok = emqx_resource:remove_local(?PGSQL_RESOURCE),
- ok = stop_apps([emqx_resource, emqx_connector]),
- ok = emqx_common_test_helpers:stop_apps([emqx_authz]).
- init_per_testcase(_TestCase, Config) ->
- ok = emqx_authz_test_lib:reset_authorizers(),
- Config.
- set_special_configs(emqx_authz) ->
- ok = emqx_authz_test_lib:reset_authorizers();
- set_special_configs(_) ->
- ok.
- %%------------------------------------------------------------------------------
- %% Testcases
- %%------------------------------------------------------------------------------
- t_topic_rules(_Config) ->
- ClientInfo = #{clientid => <<"clientid">>,
- username => <<"username">>,
- peerhost => {127,0,0,1},
- zone => default,
- listener => {tcp, default}
- },
- ok = emqx_authz_test_lib:test_no_topic_rules(ClientInfo, fun setup_client_samples/2),
- ok = emqx_authz_test_lib:test_allow_topic_rules(ClientInfo, fun setup_client_samples/2),
- ok = emqx_authz_test_lib:test_deny_topic_rules(ClientInfo, fun setup_client_samples/2).
- t_lookups(_Config) ->
- ClientInfo = #{clientid => <<"clientid">>,
- cn => <<"cn">>,
- dn => <<"dn">>,
- username => <<"username">>,
- peerhost => {127,0,0,1},
- zone => default,
- listener => {tcp, default}
- },
- %% by clientid
- ok = init_table(),
- ok = insert(<<"INSERT INTO acl(clientid, topic, permission, action)"
- "VALUES($1, $2, $3, $4)">>,
- [<<"clientid">>, <<"a">>, <<"allow">>, <<"subscribe">>]),
- ok = setup_config(
- #{<<"query">> => <<"SELECT permission, action, topic "
- "FROM acl WHERE clientid = ${clientid}">>}),
- ok = emqx_authz_test_lib:test_samples(
- ClientInfo,
- [{allow, subscribe, <<"a">>},
- {deny, subscribe, <<"b">>}]),
- %% by peerhost
- ok = init_table(),
- ok = insert(<<"INSERT INTO acl(peerhost, topic, permission, action)"
- "VALUES($1, $2, $3, $4)">>,
- [<<"127.0.0.1">>, <<"a">>, <<"allow">>, <<"subscribe">>]),
- ok = setup_config(
- #{<<"query">> => <<"SELECT permission, action, topic "
- "FROM acl WHERE peerhost = ${peerhost}">>}),
- ok = emqx_authz_test_lib:test_samples(
- ClientInfo,
- [{allow, subscribe, <<"a">>},
- {deny, subscribe, <<"b">>}]),
- %% by cn
- ok = init_table(),
- ok = insert(<<"INSERT INTO acl(cn, topic, permission, action)"
- "VALUES($1, $2, $3, $4)">>,
- [<<"cn">>, <<"a">>, <<"allow">>, <<"subscribe">>]),
- ok = setup_config(
- #{<<"query">> => <<"SELECT permission, action, topic "
- "FROM acl WHERE cn = ${cert_common_name}">>}),
- ok = emqx_authz_test_lib:test_samples(
- ClientInfo,
- [{allow, subscribe, <<"a">>},
- {deny, subscribe, <<"b">>}]),
- %% by dn
- ok = init_table(),
- ok = insert(<<"INSERT INTO acl(dn, topic, permission, action)"
- "VALUES($1, $2, $3, $4)">>,
- [<<"dn">>, <<"a">>, <<"allow">>, <<"subscribe">>]),
- ok = setup_config(
- #{<<"query">> => <<"SELECT permission, action, topic "
- "FROM acl WHERE dn = ${cert_subject}">>}),
- ok = emqx_authz_test_lib:test_samples(
- ClientInfo,
- [{allow, subscribe, <<"a">>},
- {deny, subscribe, <<"b">>}]).
- t_pgsql_error(_Config) ->
- ClientInfo = #{clientid => <<"clientid">>,
- username => <<"username">>,
- peerhost => {127,0,0,1},
- zone => default,
- listener => {tcp, default}
- },
- ok = setup_config(
- #{<<"query">> => <<"SELECT permission, action, topic "
- "FROM acl WHERE clientid = ${username}">>}),
- ok = emqx_authz_test_lib:test_samples(
- ClientInfo,
- [{deny, subscribe, <<"a">>}]).
- t_create_invalid(_Config) ->
- BadConfig = maps:merge(
- raw_pgsql_authz_config(),
- #{<<"server">> => <<"255.255.255.255:33333">>}),
- {error, _} = emqx_authz:update(?CMD_REPLACE, [BadConfig]),
- [] = emqx_authz:lookup().
- t_nonbinary_values(_Config) ->
- ClientInfo = #{clientid => clientid,
- username => "username",
- peerhost => {127,0,0,1},
- zone => default,
- listener => {tcp, default}
- },
- ok = init_table(),
- ok = insert(<<"INSERT INTO acl(clientid, username, topic, permission, action)"
- "VALUES($1, $2, $3, $4, $5)">>,
- [<<"clientid">>, <<"username">>, <<"a">>, <<"allow">>, <<"subscribe">>]),
- ok = setup_config(
- #{<<"query">> => <<"SELECT permission, action, topic "
- "FROM acl WHERE clientid = ${clientid} AND username = ${username}">>}),
- ok = emqx_authz_test_lib:test_samples(
- ClientInfo,
- [{allow, subscribe, <<"a">>},
- {deny, subscribe, <<"b">>}]).
- %%------------------------------------------------------------------------------
- %% Helpers
- %%------------------------------------------------------------------------------
- raw_pgsql_authz_config() ->
- #{
- <<"enable">> => <<"true">>,
- <<"type">> => <<"postgresql">>,
- <<"database">> => <<"mqtt">>,
- <<"username">> => <<"root">>,
- <<"password">> => <<"public">>,
- <<"query">> => <<"SELECT permission, action, topic "
- "FROM acl WHERE username = ${username}">>,
- <<"server">> => pgsql_server()
- }.
- q(Sql) ->
- emqx_resource:query(
- ?PGSQL_RESOURCE,
- {query, Sql}).
- insert(Sql, Params) ->
- {ok, _} = emqx_resource:query(
- ?PGSQL_RESOURCE,
- {query, Sql, Params}),
- ok.
- init_table() ->
- ok = drop_table(),
- {ok, _, _} = q("CREATE TABLE acl(
- username VARCHAR(255),
- clientid VARCHAR(255),
- peerhost VARCHAR(255),
- cn VARCHAR(255),
- dn VARCHAR(255),
- topic VARCHAR(255),
- permission VARCHAR(255),
- action VARCHAR(255))"),
- ok.
- drop_table() ->
- {ok, _, _} = q("DROP TABLE IF EXISTS acl"),
- ok.
- setup_client_samples(ClientInfo, Samples) ->
- #{username := Username} = ClientInfo,
- ok = init_table(),
- ok = lists:foreach(
- fun(#{topics := Topics, permission := Permission, action := Action}) ->
- lists:foreach(
- fun(Topic) ->
- insert(<<"INSERT INTO acl(username, topic, permission, action)"
- "VALUES($1, $2, $3, $4)">>,
- [Username, Topic, Permission, Action])
- end,
- Topics)
- end,
- Samples),
- setup_config(
- #{<<"query">> => <<"SELECT permission, action, topic "
- "FROM acl WHERE username = ${username}">>}).
- setup_config(SpecialParams) ->
- emqx_authz_test_lib:setup_config(
- raw_pgsql_authz_config(),
- SpecialParams).
- pgsql_server() ->
- iolist_to_binary(
- io_lib:format(
- "~s:~b",
- [?PGSQL_HOST, ?PGSQL_PORT])).
- pgsql_config() ->
- #{auto_reconnect => true,
- database => <<"mqtt">>,
- username => <<"root">>,
- password => <<"public">>,
- pool_size => 8,
- server => {?PGSQL_HOST, ?PGSQL_PORT},
- ssl => #{enable => false}
- }.
- start_apps(Apps) ->
- lists:foreach(fun application:ensure_all_started/1, Apps).
- stop_apps(Apps) ->
- lists:foreach(fun application:stop/1, Apps).
|