2017-09-27 20:27:04 +02:00
|
|
|
import mock
|
2017-09-27 20:55:58 +02:00
|
|
|
import ujson
|
2017-09-27 20:27:04 +02:00
|
|
|
|
2017-09-27 20:55:58 +02:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
2017-09-27 20:27:04 +02:00
|
|
|
from typing import Any, Callable, Dict, Tuple
|
|
|
|
|
2017-10-18 07:49:03 +02:00
|
|
|
from zerver.lib.actions import do_mute_topic
|
2017-09-27 20:27:04 +02:00
|
|
|
from zerver.lib.test_classes import ZulipTestCase
|
2017-09-27 20:55:58 +02:00
|
|
|
from zerver.lib.test_helpers import POSTRequestMock
|
|
|
|
from zerver.models import Recipient, Subscription, UserProfile, get_stream
|
|
|
|
from zerver.tornado.event_queue import maybe_enqueue_notifications, \
|
|
|
|
get_client_descriptor, missedmessage_hook
|
|
|
|
from zerver.tornado.views import get_events_backend
|
2017-09-27 20:27:04 +02:00
|
|
|
|
|
|
|
class MissedMessageNotificationsTest(ZulipTestCase):
|
|
|
|
"""Tests the logic for when missed-message notifications
|
|
|
|
should be triggered, based on user settings"""
|
|
|
|
def check_will_notify(self, *args, **kwargs):
|
|
|
|
# type: (*Any, **Any) -> Tuple[str, str]
|
|
|
|
email_notice = None
|
|
|
|
mobile_notice = None
|
|
|
|
with mock.patch("zerver.tornado.event_queue.queue_json_publish") as mock_queue_publish:
|
|
|
|
notified = maybe_enqueue_notifications(*args, **kwargs)
|
|
|
|
for entry in mock_queue_publish.call_args_list:
|
|
|
|
args = entry[0]
|
|
|
|
if args[0] == "missedmessage_mobile_notifications":
|
|
|
|
mobile_notice = args[1]
|
|
|
|
if args[0] == "missedmessage_emails":
|
|
|
|
email_notice = args[1]
|
|
|
|
|
|
|
|
# Now verify the return value matches the queue actions
|
|
|
|
if email_notice:
|
|
|
|
self.assertTrue(notified['email_notified'])
|
|
|
|
else:
|
|
|
|
self.assertFalse(notified.get('email_notified', False))
|
|
|
|
if mobile_notice:
|
|
|
|
self.assertTrue(notified['push_notified'])
|
|
|
|
else:
|
|
|
|
self.assertFalse(notified.get('push_notified', False))
|
|
|
|
return email_notice, mobile_notice
|
|
|
|
|
|
|
|
def test_enqueue_notifications(self):
|
|
|
|
# type: () -> None
|
|
|
|
user_profile = self.example_user("hamlet")
|
|
|
|
message_id = 32
|
|
|
|
|
|
|
|
# Boring message doesn't send a notice
|
|
|
|
email_notice, mobile_notice = self.check_will_notify(
|
|
|
|
user_profile.id, message_id, private_message=False,
|
|
|
|
mentioned=False, stream_push_notify=False, stream_name=None,
|
2017-10-18 06:54:03 +02:00
|
|
|
always_push_notify=False, idle=True, already_notified={})
|
2017-09-27 20:27:04 +02:00
|
|
|
self.assertTrue(email_notice is None)
|
|
|
|
self.assertTrue(mobile_notice is None)
|
|
|
|
|
|
|
|
# Private message sends a notice
|
|
|
|
email_notice, mobile_notice = self.check_will_notify(
|
|
|
|
user_profile.id, message_id, private_message=True,
|
|
|
|
mentioned=False, stream_push_notify=False, stream_name=None,
|
2017-10-18 06:54:03 +02:00
|
|
|
always_push_notify=False, idle=True, already_notified={})
|
2017-09-27 20:27:04 +02:00
|
|
|
self.assertTrue(email_notice is not None)
|
|
|
|
self.assertTrue(mobile_notice is not None)
|
|
|
|
|
2017-10-18 06:54:03 +02:00
|
|
|
# Private message won't double-send either notice if we've
|
|
|
|
# already sent notices before.
|
|
|
|
email_notice, mobile_notice = self.check_will_notify(
|
|
|
|
user_profile.id, message_id, private_message=True,
|
|
|
|
mentioned=False, stream_push_notify=False, stream_name=None,
|
|
|
|
always_push_notify=False, idle=True, already_notified={
|
|
|
|
'push_notified': True,
|
|
|
|
'email_notified': False,
|
|
|
|
})
|
|
|
|
self.assertTrue(email_notice is not None)
|
|
|
|
self.assertTrue(mobile_notice is None)
|
|
|
|
|
|
|
|
email_notice, mobile_notice = self.check_will_notify(
|
|
|
|
user_profile.id, message_id, private_message=True,
|
|
|
|
mentioned=False, stream_push_notify=False, stream_name=None,
|
|
|
|
always_push_notify=False, idle=True, already_notified={
|
|
|
|
'push_notified': False,
|
|
|
|
'email_notified': True,
|
|
|
|
})
|
|
|
|
self.assertTrue(email_notice is None)
|
|
|
|
self.assertTrue(mobile_notice is not None)
|
|
|
|
|
2017-09-27 20:27:04 +02:00
|
|
|
# Mention sends a notice
|
|
|
|
email_notice, mobile_notice = self.check_will_notify(
|
|
|
|
user_profile.id, message_id, private_message=False,
|
|
|
|
mentioned=True, stream_push_notify=False, stream_name=None,
|
2017-10-18 06:54:03 +02:00
|
|
|
always_push_notify=False, idle=True, already_notified={})
|
2017-09-27 20:27:04 +02:00
|
|
|
self.assertTrue(email_notice is not None)
|
|
|
|
self.assertTrue(mobile_notice is not None)
|
|
|
|
|
|
|
|
# stream_push_notify pushes but doesn't email
|
|
|
|
email_notice, mobile_notice = self.check_will_notify(
|
|
|
|
user_profile.id, message_id, private_message=False,
|
|
|
|
mentioned=False, stream_push_notify=True, stream_name="Denmark",
|
2017-10-18 06:54:03 +02:00
|
|
|
always_push_notify=False, idle=True, already_notified={})
|
2017-09-27 20:27:04 +02:00
|
|
|
self.assertTrue(email_notice is None)
|
|
|
|
self.assertTrue(mobile_notice is not None)
|
|
|
|
|
|
|
|
# Private message doesn't send a notice if not idle
|
|
|
|
email_notice, mobile_notice = self.check_will_notify(
|
|
|
|
user_profile.id, message_id, private_message=True,
|
|
|
|
mentioned=False, stream_push_notify=False, stream_name=None,
|
2017-10-18 06:54:03 +02:00
|
|
|
always_push_notify=False, idle=False, already_notified={})
|
2017-09-27 20:27:04 +02:00
|
|
|
self.assertTrue(email_notice is None)
|
|
|
|
self.assertTrue(mobile_notice is None)
|
|
|
|
|
|
|
|
# Private message sends push but not email if not idle but always_push_notify
|
|
|
|
email_notice, mobile_notice = self.check_will_notify(
|
|
|
|
user_profile.id, message_id, private_message=True,
|
|
|
|
mentioned=False, stream_push_notify=False, stream_name=None,
|
2017-10-18 06:54:03 +02:00
|
|
|
always_push_notify=True, idle=False, already_notified={})
|
2017-09-27 20:27:04 +02:00
|
|
|
self.assertTrue(email_notice is None)
|
|
|
|
self.assertTrue(mobile_notice is not None)
|
2017-09-27 20:55:58 +02:00
|
|
|
|
|
|
|
def tornado_call(self, view_func, user_profile, post_data):
|
|
|
|
# type: (Callable[[HttpRequest, UserProfile], HttpResponse], UserProfile, Dict[str, Any]) -> HttpResponse
|
|
|
|
request = POSTRequestMock(post_data, user_profile)
|
|
|
|
return view_func(request, user_profile)
|
|
|
|
|
|
|
|
def test_end_to_end_missedmessage_hook(self):
|
|
|
|
# type: () -> None
|
|
|
|
"""Tests what arguments missedmessage_hook passes into maybe_enqueue_notifications.
|
|
|
|
Combined with the previous test, this ensures that the missedmessage_hook is correct"""
|
|
|
|
user_profile = self.example_user('hamlet')
|
|
|
|
email = user_profile.email
|
|
|
|
self.login(email)
|
|
|
|
|
|
|
|
result = self.tornado_call(get_events_backend, user_profile,
|
|
|
|
{"apply_markdown": ujson.dumps(True),
|
|
|
|
"event_types": ujson.dumps(["message"]),
|
|
|
|
"user_client": "website",
|
|
|
|
"dont_block": ujson.dumps(True),
|
|
|
|
})
|
|
|
|
self.assert_json_success(result)
|
|
|
|
queue_id = ujson.loads(result.content)["queue_id"]
|
|
|
|
client_descriptor = get_client_descriptor(queue_id)
|
|
|
|
|
|
|
|
with mock.patch("zerver.tornado.event_queue.maybe_enqueue_notifications") as mock_enqueue:
|
|
|
|
# To test the missed_message hook, we first need to send a message
|
2017-10-28 16:22:01 +02:00
|
|
|
msg_id = self.send_stream_message(self.example_email("iago"), "Denmark")
|
2017-09-27 20:55:58 +02:00
|
|
|
|
|
|
|
# Verify that nothing happens if you call it as not the
|
|
|
|
# "last client descriptor", in which case the function
|
|
|
|
# short-circuits, since the `missedmessage_hook` handler
|
|
|
|
# for garbage-collection is only for the user's last queue.
|
|
|
|
missedmessage_hook(user_profile.id, client_descriptor, False)
|
|
|
|
mock_enqueue.assert_not_called()
|
|
|
|
|
|
|
|
# Now verify that we called the appropriate enqueue function
|
|
|
|
missedmessage_hook(user_profile.id, client_descriptor, True)
|
|
|
|
mock_enqueue.assert_called_once()
|
|
|
|
args_list = mock_enqueue.call_args_list[0][0]
|
|
|
|
|
2017-10-18 06:54:03 +02:00
|
|
|
self.assertEqual(args_list, (user_profile.id, msg_id, False, False, False,
|
|
|
|
"Denmark", False, True,
|
|
|
|
{'email_notified': False, 'push_notified': False}))
|
2017-09-27 20:55:58 +02:00
|
|
|
|
|
|
|
# Clear the event queue, before repeating with a private message
|
|
|
|
client_descriptor.event_queue.pop()
|
|
|
|
self.assertTrue(client_descriptor.event_queue.empty())
|
2017-10-28 16:22:01 +02:00
|
|
|
msg_id = self.send_personal_message(self.example_email("iago"), email)
|
2017-09-27 20:55:58 +02:00
|
|
|
with mock.patch("zerver.tornado.event_queue.maybe_enqueue_notifications") as mock_enqueue:
|
|
|
|
missedmessage_hook(user_profile.id, client_descriptor, True)
|
|
|
|
mock_enqueue.assert_called_once()
|
|
|
|
args_list = mock_enqueue.call_args_list[0][0]
|
|
|
|
|
2017-10-18 06:54:03 +02:00
|
|
|
self.assertEqual(args_list, (user_profile.id, msg_id, True, False,
|
|
|
|
False, None, False, True,
|
|
|
|
{'email_notified': True, 'push_notified': True}))
|
2017-09-27 20:55:58 +02:00
|
|
|
|
|
|
|
# Clear the event queue, now repeat with a mention
|
|
|
|
client_descriptor.event_queue.pop()
|
|
|
|
self.assertTrue(client_descriptor.event_queue.empty())
|
2017-10-28 16:22:01 +02:00
|
|
|
msg_id = self.send_stream_message(self.example_email("iago"), "Denmark",
|
|
|
|
content="@**King Hamlet** what's up?")
|
2017-09-27 20:55:58 +02:00
|
|
|
with mock.patch("zerver.tornado.event_queue.maybe_enqueue_notifications") as mock_enqueue:
|
|
|
|
# Clear the event queue, before repeating with a private message
|
|
|
|
missedmessage_hook(user_profile.id, client_descriptor, True)
|
|
|
|
mock_enqueue.assert_called_once()
|
|
|
|
args_list = mock_enqueue.call_args_list[0][0]
|
|
|
|
|
2017-10-18 06:54:03 +02:00
|
|
|
self.assertEqual(args_list, (user_profile.id, msg_id, False, True,
|
|
|
|
False, "Denmark", False, True,
|
|
|
|
{'email_notified': True, 'push_notified': True}))
|
2017-09-28 00:04:32 +02:00
|
|
|
|
|
|
|
# Clear the event queue, now repeat with stream message with stream_push_notify
|
|
|
|
stream = get_stream("Denmark", user_profile.realm)
|
|
|
|
sub = Subscription.objects.get(user_profile=user_profile, recipient__type=Recipient.STREAM,
|
|
|
|
recipient__type_id=stream.id)
|
|
|
|
sub.push_notifications = True
|
|
|
|
sub.save()
|
|
|
|
client_descriptor.event_queue.pop()
|
|
|
|
self.assertTrue(client_descriptor.event_queue.empty())
|
2017-10-28 16:22:01 +02:00
|
|
|
msg_id = self.send_stream_message(self.example_email("iago"), "Denmark",
|
|
|
|
content="what's up everyone?")
|
2017-09-28 00:04:32 +02:00
|
|
|
with mock.patch("zerver.tornado.event_queue.maybe_enqueue_notifications") as mock_enqueue:
|
|
|
|
# Clear the event queue, before repeating with a private message
|
|
|
|
missedmessage_hook(user_profile.id, client_descriptor, True)
|
|
|
|
mock_enqueue.assert_called_once()
|
|
|
|
args_list = mock_enqueue.call_args_list[0][0]
|
|
|
|
|
2017-10-18 06:54:03 +02:00
|
|
|
self.assertEqual(args_list, (user_profile.id, msg_id, False, False,
|
|
|
|
True, "Denmark", False, True,
|
|
|
|
{'email_notified': False, 'push_notified': False}))
|
2017-09-28 00:04:32 +02:00
|
|
|
|
2017-10-18 07:49:03 +02:00
|
|
|
# Clear the event queue, now repeat with stream message with stream_push_notify
|
|
|
|
# on a muted topic, which we should not push notify for
|
|
|
|
client_descriptor.event_queue.pop()
|
|
|
|
self.assertTrue(client_descriptor.event_queue.empty())
|
|
|
|
do_mute_topic(user_profile, stream, sub.recipient, "mutingtest")
|
2017-10-28 16:22:01 +02:00
|
|
|
msg_id = self.send_stream_message(self.example_email("iago"), "Denmark",
|
|
|
|
content="what's up everyone?", topic_name="mutingtest")
|
2017-10-18 07:49:03 +02:00
|
|
|
with mock.patch("zerver.tornado.event_queue.maybe_enqueue_notifications") as mock_enqueue:
|
|
|
|
# Clear the event queue, before repeating with a private message
|
|
|
|
missedmessage_hook(user_profile.id, client_descriptor, True)
|
|
|
|
mock_enqueue.assert_called_once()
|
|
|
|
args_list = mock_enqueue.call_args_list[0][0]
|
|
|
|
|
|
|
|
self.assertEqual(args_list, (user_profile.id, msg_id, False, False,
|
2017-10-24 00:07:03 +02:00
|
|
|
False, "Denmark", False, True,
|
2017-10-18 07:49:03 +02:00
|
|
|
{'email_notified': False, 'push_notified': False}))
|
|
|
|
|
2017-10-18 07:38:54 +02:00
|
|
|
# Clear the event queue, now repeat with stream message with stream_push_notify
|
|
|
|
# on a muted stream, which we should not push notify for
|
|
|
|
client_descriptor.event_queue.pop()
|
|
|
|
self.assertTrue(client_descriptor.event_queue.empty())
|
|
|
|
sub.in_home_view = False
|
|
|
|
sub.save()
|
2017-10-28 16:22:01 +02:00
|
|
|
msg_id = self.send_stream_message(self.example_email("iago"), "Denmark",
|
|
|
|
content="what's up everyone?")
|
2017-10-18 07:38:54 +02:00
|
|
|
with mock.patch("zerver.tornado.event_queue.maybe_enqueue_notifications") as mock_enqueue:
|
|
|
|
# Clear the event queue, before repeating with a private message
|
|
|
|
missedmessage_hook(user_profile.id, client_descriptor, True)
|
|
|
|
mock_enqueue.assert_called_once()
|
|
|
|
args_list = mock_enqueue.call_args_list[0][0]
|
|
|
|
|
|
|
|
self.assertEqual(args_list, (user_profile.id, msg_id, False, False,
|
|
|
|
False, "Denmark", False, True,
|
|
|
|
{'email_notified': False, 'push_notified': False}))
|
|
|
|
|
|
|
|
# Clean up the state we just changed (not necessary unless we add more test code below)
|
2017-09-28 00:04:32 +02:00
|
|
|
sub.push_notifications = True
|
2017-10-18 07:38:54 +02:00
|
|
|
sub.in_home_view = True
|
2017-09-28 00:04:32 +02:00
|
|
|
sub.save()
|