Skip to content

Commit

Permalink
test: add test for event emission exit
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian2012 committed Oct 27, 2023
1 parent 4c77c54 commit 350ebc2
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions event_routing_backends/tests/test_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,23 @@ def test_send_tracking_log_to_backends(
True,
)

@override_settings(
EVENT_TRACKING_BACKENDS={
"event_bus": {
"ENGINE": "eventtracking.backends.event_bus.EventBusRoutingBackend",
"OPTIONS": {
"processors": [
{
"ENGINE": "eventtracking.processors.whitelist.NameWhitelistProcessor",
"OPTIONS": {
"whitelist": ["no_test_name"]
}
}
],
},
},
}
)
@patch("event_routing_backends.handlers.get_tracker")
@patch("event_routing_backends.handlers.isinstance")
@patch(
Expand Down Expand Up @@ -95,6 +112,6 @@ def test_send_tracking_log_to_backends_error(

assert x is None

# mock_logger.info.assert_called_once_with(
# "[EventEmissionExit] skipping event {}".format("test_name")
# )
mock_logger.info.assert_called_once_with(
"[EventEmissionExit] skipping event {}".format("test_name")
)

0 comments on commit 350ebc2

Please sign in to comment.