diff options
| author | Arnaud Cogoluègnes <acogoluegnes@gmail.com> | 2019-07-04 10:58:58 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-04 10:58:58 +0200 |
| commit | 33a7f97c4a471541adf05368d92862af4087c4a2 (patch) | |
| tree | c099d811703d25ed36e1c876d2cabb0ed8eccaa5 /test | |
| parent | 56aafe2fc4c17592cc7bf946e79302a87dca47e1 (diff) | |
| parent | 23f54d2bf1e05c07c66cd8e7bda7ec4749356b70 (diff) | |
| download | rabbitmq-server-git-33a7f97c4a471541adf05368d92862af4087c4a2.tar.gz | |
Merge pull request #2050 from rabbitmq/oauth2-credential-expiration-support
Support client-driven refresh of expiring credentials
Diffstat (limited to 'test')
| -rw-r--r-- | test/unit_SUITE.erl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/unit_SUITE.erl b/test/unit_SUITE.erl index b19289e818..6582c24b1e 100644 --- a/test/unit_SUITE.erl +++ b/test/unit_SUITE.erl @@ -32,7 +32,9 @@ all() -> groups() -> [ {parallel_tests, [parallel], [ - auth_backend_internal_expand_topic_permission, + {access_control, [parallel], [ + auth_backend_internal_expand_topic_permission + ]}, {basic_header_handling, [parallel], [ write_table_with_invalid_existing_type, invalid_existing_headers, @@ -893,6 +895,10 @@ listing_plugins_from_multiple_directories(Config) -> end, ok. +%% +%% Access Control +%% + auth_backend_internal_expand_topic_permission(_Config) -> ExpandMap = #{<<"username">> => <<"guest">>, <<"vhost">> => <<"default">>}, %% simple case |
