Default exchange bindings are implicit as of rabbitmq/rabbitmq-server#1721

This commit is contained in:
Michael Klishin 2019-01-10 05:16:09 +03:00
parent d7659371ed
commit 34ad97c117
1 changed files with 0 additions and 20 deletions

View File

@ -31,7 +31,6 @@ all() ->
audit_queue,
audit_exchange,
audit_binding,
audit_default_exchange_binding,
audit_vhost,
audit_vhost_deletion,
audit_channel,
@ -170,8 +169,6 @@ audit_binding(Config) ->
#'queue.declare_ok'{queue = Q} =
amqp_channel:call(Ch, #'queue.declare'{exclusive = true}),
%% Default exchange
receive_user_in_event(<<"binding.created">>, ?INTERNAL_USER),
#'queue.bind_ok'{} =
amqp_channel:call(Ch, #'queue.bind'{queue = Q,
@ -188,23 +185,6 @@ audit_binding(Config) ->
rabbit_ct_client_helpers:close_channel(Ch),
ok.
audit_default_exchange_binding(Config) ->
Ch = declare_event_queue(Config, <<"binding.*">>),
%% The binding to the event exchange itself is the first queued event
User = proplists:get_value(rmq_username, Config),
receive_user_in_event(<<"binding.created">>, User),
#'queue.declare_ok'{queue = Q} =
amqp_channel:call(Ch, #'queue.declare'{exclusive = true}),
receive_user_in_event(<<"binding.created">>, ?INTERNAL_USER),
#'queue.delete_ok'{} =
amqp_channel:call(Ch, #'queue.delete'{queue = Q}),
receive_user_in_event(<<"binding.deleted">>, ?INTERNAL_USER),
rabbit_ct_client_helpers:close_channel(Ch),
ok.
audit_vhost(Config) ->
Ch = declare_event_queue(Config, <<"vhost.*">>),
User = <<"Bugs Bunny">>,