Files
notifications-admin/tests/app/test_event_handlers.py
2017-02-27 15:18:18 +00:00

14 lines
584 B
Python

from unittest.mock import ANY
from app.event_handlers import on_user_logged_in
def test_on_user_logged_in_calls_events_api(app_, api_user_active, mock_events):
with app_.test_request_context():
on_user_logged_in(app_, api_user_active)
mock_events.assert_called_with('sucessful_login',
{'browser_fingerprint':
{'browser': ANY, 'version': ANY, 'platform': ANY, 'user_agent_string': ''},
'ip_address': ANY, 'user_id': str(api_user_active.id)})