2020-05-26 07:16:25 +02:00
|
|
|
from unittest import mock
|
2018-03-28 21:42:06 +02:00
|
|
|
import time
|
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
|
|
|
|
|
2018-08-08 21:39:19 +02:00
|
|
|
from zerver.lib.actions import do_mute_topic, do_change_subscription_property
|
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
|
2018-08-08 21:39:19 +02:00
|
|
|
from zerver.models import Recipient, Stream, Subscription, UserProfile, get_stream
|
2017-09-27 20:55:58 +02:00
|
|
|
from zerver.tornado.event_queue import maybe_enqueue_notifications, \
|
2019-08-02 22:23:05 +02:00
|
|
|
allocate_client_descriptor, ClientDescriptor, \
|
2018-10-04 00:22:39 +02:00
|
|
|
get_client_descriptor, missedmessage_hook, persistent_queue_filename
|
2019-08-26 04:35:47 +02:00
|
|
|
from zerver.tornado.views import get_events, cleanup_event_queue
|
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"""
|
2020-04-22 01:45:30 +02:00
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def check_will_notify(self, *args: Any, **kwargs: Any) -> Tuple[str, str]:
|
2017-09-27 20:27:04 +02:00
|
|
|
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
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_enqueue_notifications(self) -> None:
|
2017-09-27 20:27:04 +02:00
|
|
|
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,
|
2019-09-03 23:27:45 +02:00
|
|
|
mentioned=False, wildcard_mention_notify=False,
|
2019-08-26 04:40:07 +02:00
|
|
|
stream_push_notify=False, stream_email_notify=False,
|
2017-11-21 07:24:24 +01:00
|
|
|
stream_name=None, 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,
|
2019-09-03 23:27:45 +02:00
|
|
|
mentioned=False, wildcard_mention_notify=False,
|
2019-08-26 04:40:07 +02:00
|
|
|
stream_push_notify=False, stream_email_notify=True,
|
2017-11-21 07:24:24 +01:00
|
|
|
stream_name=None, 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,
|
2019-09-03 23:27:45 +02:00
|
|
|
mentioned=False, wildcard_mention_notify=False,
|
2019-08-26 04:40:07 +02:00
|
|
|
stream_push_notify=False, stream_email_notify=False,
|
2017-11-21 07:24:24 +01:00
|
|
|
stream_name=None, always_push_notify=False, idle=True, already_notified={
|
2017-10-18 06:54:03 +02:00
|
|
|
'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,
|
2019-09-03 23:27:45 +02:00
|
|
|
mentioned=False, wildcard_mention_notify=False,
|
2019-08-26 04:40:07 +02:00
|
|
|
stream_push_notify=False, stream_email_notify=False,
|
2017-11-21 07:24:24 +01:00
|
|
|
stream_name=None, always_push_notify=False, idle=True, already_notified={
|
2017-10-18 06:54:03 +02:00
|
|
|
'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,
|
2019-09-03 23:27:45 +02:00
|
|
|
mentioned=True, wildcard_mention_notify=False,
|
2019-08-26 04:40:07 +02:00
|
|
|
stream_push_notify=False, stream_email_notify=False,
|
|
|
|
stream_name=None, always_push_notify=False, idle=True, already_notified={})
|
|
|
|
self.assertTrue(email_notice is not None)
|
|
|
|
self.assertTrue(mobile_notice is not None)
|
|
|
|
|
2019-09-03 23:27:45 +02:00
|
|
|
# Wildcard mention triggers both email and push notices (Like a
|
|
|
|
# direct mention, whether the notice is actually delivered is
|
|
|
|
# determined later, in the email/push notification code)
|
2019-08-26 04:40:07 +02:00
|
|
|
email_notice, mobile_notice = self.check_will_notify(
|
|
|
|
user_profile.id, message_id, private_message=False,
|
2019-09-03 23:27:45 +02:00
|
|
|
mentioned=False, wildcard_mention_notify=True,
|
2019-08-26 04:40:07 +02:00
|
|
|
stream_push_notify=False, stream_email_notify=False,
|
2017-11-21 07:24:24 +01:00
|
|
|
stream_name=None, 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,
|
2019-09-03 23:27:45 +02:00
|
|
|
mentioned=False, wildcard_mention_notify=False,
|
2019-08-26 04:40:07 +02:00
|
|
|
stream_push_notify=True, stream_email_notify=False,
|
2017-11-21 07:24:24 +01:00
|
|
|
stream_name="Denmark", 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)
|
|
|
|
|
2017-11-21 07:24:24 +01:00
|
|
|
# stream_email_notify emails but doesn't push
|
|
|
|
email_notice, mobile_notice = self.check_will_notify(
|
|
|
|
user_profile.id, message_id, private_message=False,
|
2019-09-03 23:27:45 +02:00
|
|
|
mentioned=False, wildcard_mention_notify=False,
|
2019-08-26 04:40:07 +02:00
|
|
|
stream_push_notify=False, stream_email_notify=True,
|
2017-11-21 07:24:24 +01:00
|
|
|
stream_name="Denmark", always_push_notify=False, idle=True, already_notified={})
|
|
|
|
self.assertTrue(email_notice is not None)
|
|
|
|
self.assertTrue(mobile_notice is None)
|
|
|
|
|
2017-09-27 20:27:04 +02:00
|
|
|
# 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,
|
2019-09-03 23:27:45 +02:00
|
|
|
mentioned=False, wildcard_mention_notify=False,
|
2019-08-26 04:40:07 +02:00
|
|
|
stream_push_notify=False, stream_email_notify=True,
|
|
|
|
stream_name=None, always_push_notify=False, idle=False, already_notified={})
|
|
|
|
self.assertTrue(email_notice is None)
|
|
|
|
self.assertTrue(mobile_notice is None)
|
|
|
|
|
|
|
|
# Mention doesn't send a notice if not idle
|
|
|
|
email_notice, mobile_notice = self.check_will_notify(
|
|
|
|
user_profile.id, message_id, private_message=False,
|
2019-09-03 23:27:45 +02:00
|
|
|
mentioned=True, wildcard_mention_notify=False,
|
2019-08-26 04:40:07 +02:00
|
|
|
stream_push_notify=False, stream_email_notify=False,
|
|
|
|
stream_name=None, always_push_notify=False, idle=False, already_notified={})
|
|
|
|
self.assertTrue(email_notice is None)
|
|
|
|
self.assertTrue(mobile_notice is None)
|
|
|
|
|
|
|
|
# Wildcard mention doesn't send a notice if not idle
|
|
|
|
email_notice, mobile_notice = self.check_will_notify(
|
|
|
|
user_profile.id, message_id, private_message=False,
|
2019-09-03 23:27:45 +02:00
|
|
|
mentioned=False, wildcard_mention_notify=True,
|
2019-08-26 04:40:07 +02:00
|
|
|
stream_push_notify=False, stream_email_notify=False,
|
2017-11-21 07:24:24 +01:00
|
|
|
stream_name=None, 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,
|
2019-09-03 23:27:45 +02:00
|
|
|
mentioned=False, wildcard_mention_notify=False,
|
2019-08-26 04:40:07 +02:00
|
|
|
stream_push_notify=False, stream_email_notify=True,
|
2017-11-21 07:24:24 +01:00
|
|
|
stream_name=None, 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
|
|
|
|
2019-04-18 03:58:25 +02:00
|
|
|
# Stream 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=False,
|
2019-09-03 23:27:45 +02:00
|
|
|
mentioned=False, wildcard_mention_notify=False,
|
2019-08-26 04:40:07 +02:00
|
|
|
stream_push_notify=True, stream_email_notify=True,
|
2019-04-18 03:58:25 +02:00
|
|
|
stream_name="Denmark", always_push_notify=True, idle=False, already_notified={})
|
|
|
|
self.assertTrue(email_notice is None)
|
|
|
|
self.assertTrue(mobile_notice is not None)
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def tornado_call(self, view_func: Callable[[HttpRequest, UserProfile], HttpResponse],
|
|
|
|
user_profile: UserProfile, post_data: Dict[str, Any]) -> HttpResponse:
|
2017-09-27 20:55:58 +02:00
|
|
|
request = POSTRequestMock(post_data, user_profile)
|
|
|
|
return view_func(request, user_profile)
|
|
|
|
|
2018-03-28 21:42:06 +02:00
|
|
|
def test_stream_watchers(self) -> None:
|
|
|
|
'''
|
|
|
|
We used to have a bug with stream_watchers, where we set their flags to
|
|
|
|
None.
|
|
|
|
'''
|
|
|
|
cordelia = self.example_user('cordelia')
|
|
|
|
hamlet = self.example_user('hamlet')
|
|
|
|
realm = hamlet.realm
|
|
|
|
stream_name = 'Denmark'
|
|
|
|
|
|
|
|
self.unsubscribe(hamlet, stream_name)
|
|
|
|
|
|
|
|
queue_data = dict(
|
|
|
|
all_public_streams=True,
|
|
|
|
apply_markdown=True,
|
|
|
|
client_gravatar=True,
|
|
|
|
client_type_name='home grown api program',
|
|
|
|
event_types=['message'],
|
|
|
|
last_connection_time=time.time(),
|
|
|
|
queue_timeout=0,
|
|
|
|
realm_id=realm.id,
|
|
|
|
user_profile_id=hamlet.id,
|
|
|
|
)
|
|
|
|
|
|
|
|
client = allocate_client_descriptor(queue_data)
|
|
|
|
|
2020-03-07 11:43:05 +01:00
|
|
|
self.send_stream_message(cordelia, stream_name)
|
2018-03-28 21:42:06 +02:00
|
|
|
|
|
|
|
self.assertEqual(len(client.event_queue.contents()), 1)
|
|
|
|
|
|
|
|
# This next line of code should silently succeed and basically do
|
|
|
|
# nothing under the covers. This test is here to prevent a bug
|
|
|
|
# from re-appearing.
|
|
|
|
missedmessage_hook(
|
|
|
|
user_profile_id=hamlet.id,
|
|
|
|
client=client,
|
|
|
|
last_for_client=True,
|
|
|
|
)
|
|
|
|
|
2017-11-05 10:51:25 +01:00
|
|
|
def test_end_to_end_missedmessage_hook(self) -> None:
|
2017-09-27 20:55:58 +02:00
|
|
|
"""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')
|
2019-12-11 01:41:20 +01:00
|
|
|
|
|
|
|
user_profile.enable_online_push_notifications = False
|
|
|
|
user_profile.save()
|
|
|
|
|
2019-09-03 23:27:45 +02:00
|
|
|
# Fetch the Denmark stream for testing
|
|
|
|
stream = get_stream("Denmark", user_profile.realm)
|
|
|
|
sub = Subscription.objects.get(user_profile=user_profile, recipient__type=Recipient.STREAM,
|
|
|
|
recipient__type_id=stream.id)
|
|
|
|
|
2020-03-06 18:40:46 +01:00
|
|
|
self.login_user(user_profile)
|
2017-09-27 20:55:58 +02:00
|
|
|
|
2018-08-08 21:39:19 +02:00
|
|
|
def change_subscription_properties(user_profile: UserProfile, stream: Stream, sub: Subscription,
|
|
|
|
properties: Dict[str, bool]) -> None:
|
|
|
|
for property_name, value in properties.items():
|
|
|
|
do_change_subscription_property(user_profile, sub, stream, property_name, value)
|
|
|
|
|
2019-08-26 04:35:47 +02:00
|
|
|
def allocate_event_queue() -> ClientDescriptor:
|
|
|
|
result = self.tornado_call(get_events, user_profile,
|
|
|
|
{"apply_markdown": ujson.dumps(True),
|
|
|
|
"client_gravatar": 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"]
|
|
|
|
return get_client_descriptor(queue_id)
|
|
|
|
|
|
|
|
def destroy_event_queue(queue_id: str) -> None:
|
|
|
|
result = self.tornado_call(cleanup_event_queue, user_profile,
|
|
|
|
{"queue_id": queue_id})
|
|
|
|
self.assert_json_success(result)
|
|
|
|
|
|
|
|
client_descriptor = allocate_event_queue()
|
2017-09-27 20:55:58 +02:00
|
|
|
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
|
2020-03-07 11:43:05 +01:00
|
|
|
msg_id = self.send_stream_message(self.example_user("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]
|
|
|
|
|
2019-08-26 04:40:07 +02:00
|
|
|
self.assertEqual(args_list, (user_profile.id, msg_id, False, False, False, False, False,
|
2017-10-18 06:54:03 +02:00
|
|
|
"Denmark", False, True,
|
|
|
|
{'email_notified': False, 'push_notified': False}))
|
2019-08-26 04:35:47 +02:00
|
|
|
destroy_event_queue(client_descriptor.event_queue.id)
|
2017-09-27 20:55:58 +02:00
|
|
|
|
2019-09-03 23:27:45 +02:00
|
|
|
# Test the hook with a private message; this should trigger notifications
|
2019-08-26 04:35:47 +02:00
|
|
|
client_descriptor = allocate_event_queue()
|
2017-09-27 20:55:58 +02:00
|
|
|
self.assertTrue(client_descriptor.event_queue.empty())
|
2020-03-07 11:43:05 +01:00
|
|
|
msg_id = self.send_personal_message(self.example_user("iago"), user_profile)
|
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]
|
|
|
|
|
2019-08-26 04:40:07 +02:00
|
|
|
self.assertEqual(args_list, (user_profile.id, msg_id, True, False, False, False,
|
2017-10-18 06:54:03 +02:00
|
|
|
False, None, False, True,
|
|
|
|
{'email_notified': True, 'push_notified': True}))
|
2019-08-26 04:35:47 +02:00
|
|
|
destroy_event_queue(client_descriptor.event_queue.id)
|
2017-09-27 20:55:58 +02:00
|
|
|
|
2019-09-03 23:27:45 +02:00
|
|
|
# Test the hook with a mention; this should trigger notifications
|
2019-08-26 04:35:47 +02:00
|
|
|
client_descriptor = allocate_event_queue()
|
2017-09-27 20:55:58 +02:00
|
|
|
self.assertTrue(client_descriptor.event_queue.empty())
|
2020-03-07 11:43:05 +01:00
|
|
|
msg_id = self.send_stream_message(self.example_user("iago"), "Denmark",
|
2017-10-28 16:22:01 +02:00
|
|
|
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:
|
|
|
|
missedmessage_hook(user_profile.id, client_descriptor, True)
|
|
|
|
mock_enqueue.assert_called_once()
|
|
|
|
args_list = mock_enqueue.call_args_list[0][0]
|
|
|
|
|
2019-08-26 04:40:07 +02:00
|
|
|
self.assertEqual(args_list, (user_profile.id, msg_id, False, True, False, False,
|
2017-10-18 06:54:03 +02:00
|
|
|
False, "Denmark", False, True,
|
|
|
|
{'email_notified': True, 'push_notified': True}))
|
2019-08-26 04:40:07 +02:00
|
|
|
destroy_event_queue(client_descriptor.event_queue.id)
|
|
|
|
|
2019-09-03 23:27:45 +02:00
|
|
|
# Test the hook with a wildcard mention; this should trigger notifications
|
2019-08-26 04:40:07 +02:00
|
|
|
client_descriptor = allocate_event_queue()
|
|
|
|
self.assertTrue(client_descriptor.event_queue.empty())
|
2020-03-07 11:43:05 +01:00
|
|
|
msg_id = self.send_stream_message(self.example_user("iago"), "Denmark",
|
2019-08-26 04:40:07 +02:00
|
|
|
content="@**all** what's up?")
|
|
|
|
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]
|
|
|
|
|
|
|
|
self.assertEqual(args_list, (user_profile.id, msg_id, False, False, True, False,
|
|
|
|
False, "Denmark", False, True,
|
|
|
|
{'email_notified': True, 'push_notified': True}))
|
2019-08-26 04:35:47 +02:00
|
|
|
destroy_event_queue(client_descriptor.event_queue.id)
|
|
|
|
|
2019-09-03 23:27:45 +02:00
|
|
|
# Test the hook with a wildcard mention sent by the user
|
|
|
|
# themself using a human client; should not notify.
|
|
|
|
client_descriptor = allocate_event_queue()
|
|
|
|
self.assertTrue(client_descriptor.event_queue.empty())
|
2020-03-07 11:43:05 +01:00
|
|
|
msg_id = self.send_stream_message(self.example_user("hamlet"), "Denmark",
|
2019-09-03 23:27:45 +02:00
|
|
|
content="@**all** what's up?",
|
|
|
|
sending_client_name="website")
|
|
|
|
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]
|
|
|
|
|
|
|
|
self.assertEqual(args_list, (user_profile.id, msg_id, False, False, False, False,
|
|
|
|
False, "Denmark", False, True,
|
|
|
|
{'email_notified': False, 'push_notified': False}))
|
|
|
|
destroy_event_queue(client_descriptor.event_queue.id)
|
|
|
|
|
|
|
|
# Wildcard mentions in muted streams don't notify.
|
|
|
|
change_subscription_properties(user_profile, stream, sub, {'is_muted': True})
|
|
|
|
client_descriptor = allocate_event_queue()
|
|
|
|
self.assertTrue(client_descriptor.event_queue.empty())
|
2020-03-07 11:43:05 +01:00
|
|
|
msg_id = self.send_stream_message(self.example_user("iago"), "Denmark",
|
2019-09-03 23:27:45 +02:00
|
|
|
content="@**all** what's up?")
|
|
|
|
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]
|
|
|
|
|
|
|
|
self.assertEqual(args_list, (user_profile.id, msg_id, False, False, False, False,
|
|
|
|
False, "Denmark", False, True,
|
|
|
|
{'email_notified': False, 'push_notified': False}))
|
|
|
|
destroy_event_queue(client_descriptor.event_queue.id)
|
|
|
|
change_subscription_properties(user_profile, stream, sub, {'is_muted': False})
|
|
|
|
|
|
|
|
# With wildcard_mentions_notify=False, we treat the user as not mentioned.
|
|
|
|
user_profile.wildcard_mentions_notify = False
|
|
|
|
user_profile.save()
|
|
|
|
client_descriptor = allocate_event_queue()
|
|
|
|
self.assertTrue(client_descriptor.event_queue.empty())
|
2020-03-07 11:43:05 +01:00
|
|
|
msg_id = self.send_stream_message(self.example_user("iago"), "Denmark",
|
2019-09-03 23:27:45 +02:00
|
|
|
content="@**all** what's up?")
|
|
|
|
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]
|
|
|
|
|
|
|
|
self.assertEqual(args_list, (user_profile.id, msg_id, False, False, False, False,
|
|
|
|
False, "Denmark", False, True,
|
|
|
|
{'email_notified': False, 'push_notified': False}))
|
|
|
|
destroy_event_queue(client_descriptor.event_queue.id)
|
|
|
|
user_profile.wildcard_mentions_notify = True
|
|
|
|
user_profile.save()
|
2019-08-26 04:35:47 +02:00
|
|
|
|
2019-11-26 02:37:12 +01:00
|
|
|
# If wildcard_mentions_notify=True for a stream and False for a user, we treat the user
|
|
|
|
# as mentioned for that stream.
|
|
|
|
user_profile.wildcard_mentions_notify = False
|
|
|
|
sub.wildcard_mentions_notify = True
|
|
|
|
user_profile.save()
|
|
|
|
sub.save()
|
|
|
|
client_descriptor = allocate_event_queue()
|
|
|
|
self.assertTrue(client_descriptor.event_queue.empty())
|
2020-03-07 11:43:05 +01:00
|
|
|
msg_id = self.send_stream_message(self.example_user("iago"), "Denmark",
|
2019-11-26 02:37:12 +01:00
|
|
|
content="@**all** what's up?")
|
|
|
|
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]
|
|
|
|
|
|
|
|
self.assertEqual(args_list, (user_profile.id, msg_id, False, False, True, False,
|
|
|
|
False, "Denmark", False, True,
|
|
|
|
{'email_notified': True, 'push_notified': True}))
|
|
|
|
destroy_event_queue(client_descriptor.event_queue.id)
|
|
|
|
user_profile.wildcard_mentions_notify = True
|
|
|
|
sub.wildcard_mentions_notify = None
|
|
|
|
user_profile.save()
|
|
|
|
sub.save()
|
|
|
|
|
2019-08-26 04:35:47 +02:00
|
|
|
# Test the hook with a stream message with stream_push_notify
|
2019-09-03 23:27:45 +02:00
|
|
|
change_subscription_properties(user_profile, stream, sub, {'push_notifications': True})
|
2019-08-26 04:35:47 +02:00
|
|
|
client_descriptor = allocate_event_queue()
|
2017-09-28 00:04:32 +02:00
|
|
|
self.assertTrue(client_descriptor.event_queue.empty())
|
2020-03-07 11:43:05 +01:00
|
|
|
msg_id = self.send_stream_message(self.example_user("iago"), "Denmark",
|
2017-10-28 16:22:01 +02:00
|
|
|
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:
|
|
|
|
missedmessage_hook(user_profile.id, client_descriptor, True)
|
|
|
|
mock_enqueue.assert_called_once()
|
|
|
|
args_list = mock_enqueue.call_args_list[0][0]
|
|
|
|
|
2019-08-26 04:40:07 +02:00
|
|
|
self.assertEqual(args_list, (user_profile.id, msg_id, False, False, False,
|
2017-11-21 07:24:24 +01:00
|
|
|
True, False, "Denmark", False, True,
|
|
|
|
{'email_notified': False, 'push_notified': False}))
|
2019-08-26 04:35:47 +02:00
|
|
|
destroy_event_queue(client_descriptor.event_queue.id)
|
2017-11-21 07:24:24 +01:00
|
|
|
|
2019-08-26 04:35:47 +02:00
|
|
|
# Test the hook with a stream message with stream_email_notify
|
|
|
|
client_descriptor = allocate_event_queue()
|
2018-08-08 21:39:19 +02:00
|
|
|
change_subscription_properties(user_profile, stream, sub,
|
|
|
|
{'push_notifications': False,
|
|
|
|
'email_notifications': True})
|
2017-11-21 07:24:24 +01:00
|
|
|
self.assertTrue(client_descriptor.event_queue.empty())
|
2020-03-07 11:43:05 +01:00
|
|
|
msg_id = self.send_stream_message(self.example_user("iago"), "Denmark",
|
2017-11-21 07:24:24 +01:00
|
|
|
content="what's up everyone?")
|
|
|
|
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]
|
|
|
|
|
2019-08-26 04:40:07 +02:00
|
|
|
self.assertEqual(args_list, (user_profile.id, msg_id, False, False, False,
|
2017-11-21 07:24:24 +01:00
|
|
|
False, True, "Denmark", False, True,
|
2017-10-18 06:54:03 +02:00
|
|
|
{'email_notified': False, 'push_notified': False}))
|
2019-08-26 04:35:47 +02:00
|
|
|
destroy_event_queue(client_descriptor.event_queue.id)
|
2017-09-28 00:04:32 +02:00
|
|
|
|
2019-08-26 04:35:47 +02:00
|
|
|
# Test the hook with stream message with stream_push_notify on
|
|
|
|
# a muted topic, which we should not push notify for
|
|
|
|
client_descriptor = allocate_event_queue()
|
2018-08-08 21:39:19 +02:00
|
|
|
change_subscription_properties(user_profile, stream, sub,
|
|
|
|
{'push_notifications': True,
|
|
|
|
'email_notifications': False})
|
2019-08-26 04:35:47 +02:00
|
|
|
|
2017-10-18 07:49:03 +02:00
|
|
|
self.assertTrue(client_descriptor.event_queue.empty())
|
|
|
|
do_mute_topic(user_profile, stream, sub.recipient, "mutingtest")
|
2020-03-07 11:43:05 +01:00
|
|
|
msg_id = self.send_stream_message(self.example_user("iago"), "Denmark",
|
2017-10-28 16:22:01 +02:00
|
|
|
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:
|
|
|
|
missedmessage_hook(user_profile.id, client_descriptor, True)
|
|
|
|
mock_enqueue.assert_called_once()
|
|
|
|
args_list = mock_enqueue.call_args_list[0][0]
|
|
|
|
|
2019-08-26 04:40:07 +02:00
|
|
|
self.assertEqual(args_list, (user_profile.id, msg_id, False, False, 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}))
|
2019-08-26 04:35:47 +02:00
|
|
|
destroy_event_queue(client_descriptor.event_queue.id)
|
2017-10-18 07:49:03 +02:00
|
|
|
|
2019-08-26 04:35:47 +02:00
|
|
|
# Test the hook with stream message with stream_email_notify on
|
|
|
|
# a muted stream, which we should not push notify for
|
|
|
|
client_descriptor = allocate_event_queue()
|
2018-08-08 21:39:19 +02:00
|
|
|
change_subscription_properties(user_profile, stream, sub,
|
|
|
|
{'push_notifications': False,
|
|
|
|
'email_notifications': True})
|
2019-08-26 04:35:47 +02:00
|
|
|
|
2017-10-18 07:38:54 +02:00
|
|
|
self.assertTrue(client_descriptor.event_queue.empty())
|
2018-08-02 23:46:05 +02:00
|
|
|
change_subscription_properties(user_profile, stream, sub, {'is_muted': True})
|
2020-03-07 11:43:05 +01:00
|
|
|
msg_id = self.send_stream_message(self.example_user("iago"), "Denmark",
|
2017-10-28 16:22:01 +02:00
|
|
|
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:
|
|
|
|
missedmessage_hook(user_profile.id, client_descriptor, True)
|
|
|
|
mock_enqueue.assert_called_once()
|
|
|
|
args_list = mock_enqueue.call_args_list[0][0]
|
|
|
|
|
2019-08-26 04:40:07 +02:00
|
|
|
self.assertEqual(args_list, (user_profile.id, msg_id, False, False, False,
|
2017-11-21 07:24:24 +01:00
|
|
|
False, False, "Denmark", False, True,
|
2017-10-18 07:38:54 +02:00
|
|
|
{'email_notified': False, 'push_notified': False}))
|
2019-08-26 04:35:47 +02:00
|
|
|
destroy_event_queue(client_descriptor.event_queue.id)
|
2017-10-18 07:38:54 +02:00
|
|
|
|
|
|
|
# Clean up the state we just changed (not necessary unless we add more test code below)
|
2018-08-08 21:39:19 +02:00
|
|
|
change_subscription_properties(user_profile, stream, sub,
|
|
|
|
{'push_notifications': True,
|
2018-08-02 23:46:05 +02:00
|
|
|
'is_muted': False})
|
2018-10-04 00:22:39 +02:00
|
|
|
|
|
|
|
class FileReloadLogicTest(ZulipTestCase):
|
|
|
|
def test_persistent_queue_filename(self) -> None:
|
2019-01-15 03:03:10 +01:00
|
|
|
with self.settings(JSON_PERSISTENT_QUEUE_FILENAME_PATTERN="/home/zulip/tornado/event_queues%s.json"):
|
2018-10-04 00:22:39 +02:00
|
|
|
self.assertEqual(persistent_queue_filename(9993),
|
2019-01-15 03:03:10 +01:00
|
|
|
"/home/zulip/tornado/event_queues.json")
|
2018-10-04 00:22:39 +02:00
|
|
|
self.assertEqual(persistent_queue_filename(9993, last=True),
|
2019-01-15 03:03:10 +01:00
|
|
|
"/home/zulip/tornado/event_queues.json.last")
|
|
|
|
with self.settings(JSON_PERSISTENT_QUEUE_FILENAME_PATTERN="/home/zulip/tornado/event_queues%s.json",
|
2018-10-04 00:22:39 +02:00
|
|
|
TORNADO_PROCESSES=4):
|
|
|
|
self.assertEqual(persistent_queue_filename(9993),
|
2019-01-15 03:03:10 +01:00
|
|
|
"/home/zulip/tornado/event_queues.9993.json")
|
2018-10-04 00:22:39 +02:00
|
|
|
self.assertEqual(persistent_queue_filename(9993, last=True),
|
2019-01-15 03:03:10 +01:00
|
|
|
"/home/zulip/tornado/event_queues.9993.last.json")
|
2019-08-02 21:50:27 +02:00
|
|
|
|
|
|
|
class EventQueueTest(ZulipTestCase):
|
2019-08-02 22:23:05 +02:00
|
|
|
def get_client_descriptor(self) -> ClientDescriptor:
|
|
|
|
hamlet = self.example_user('hamlet')
|
|
|
|
realm = hamlet.realm
|
|
|
|
queue_data = dict(
|
|
|
|
all_public_streams=False,
|
|
|
|
apply_markdown=False,
|
|
|
|
client_gravatar=True,
|
|
|
|
client_type_name='website',
|
|
|
|
event_types=None,
|
|
|
|
last_connection_time=time.time(),
|
|
|
|
queue_timeout=0,
|
|
|
|
realm_id=realm.id,
|
|
|
|
user_profile_id=hamlet.id,
|
|
|
|
)
|
|
|
|
|
|
|
|
client = allocate_client_descriptor(queue_data)
|
|
|
|
return client
|
|
|
|
|
|
|
|
def verify_to_dict_end_to_end(self, client: ClientDescriptor) -> None:
|
|
|
|
client_dict = client.to_dict()
|
|
|
|
new_client = ClientDescriptor.from_dict(client_dict)
|
|
|
|
self.assertEqual(client.to_dict(), new_client.to_dict())
|
|
|
|
|
2019-08-06 00:08:56 +02:00
|
|
|
client_dict = client.to_dict()
|
|
|
|
del client_dict['event_queue']['newest_pruned_id']
|
|
|
|
new_client = ClientDescriptor.from_dict(client_dict)
|
|
|
|
self.assertEqual(client_dict, new_client.to_dict())
|
|
|
|
|
2019-08-02 21:50:27 +02:00
|
|
|
def test_one_event(self) -> None:
|
2019-08-02 22:23:05 +02:00
|
|
|
client = self.get_client_descriptor()
|
|
|
|
queue = client.event_queue
|
2019-08-02 21:50:27 +02:00
|
|
|
queue.push({"type": "pointer",
|
|
|
|
"pointer": 1,
|
|
|
|
"timestamp": "1"})
|
|
|
|
self.assertFalse(queue.empty())
|
2019-08-02 22:23:05 +02:00
|
|
|
self.verify_to_dict_end_to_end(client)
|
2019-08-02 21:50:27 +02:00
|
|
|
self.assertEqual(queue.contents(),
|
|
|
|
[{'id': 0,
|
|
|
|
'type': 'pointer',
|
|
|
|
"pointer": 1,
|
|
|
|
"timestamp": "1"}])
|
2019-08-02 22:23:05 +02:00
|
|
|
self.verify_to_dict_end_to_end(client)
|
2019-08-02 21:50:27 +02:00
|
|
|
|
|
|
|
def test_event_collapsing(self) -> None:
|
2019-08-02 22:23:05 +02:00
|
|
|
client = self.get_client_descriptor()
|
|
|
|
queue = client.event_queue
|
2019-08-02 21:50:27 +02:00
|
|
|
for pointer_val in range(1, 10):
|
|
|
|
queue.push({"type": "pointer",
|
|
|
|
"pointer": pointer_val,
|
|
|
|
"timestamp": str(pointer_val)})
|
2019-08-02 22:23:05 +02:00
|
|
|
self.verify_to_dict_end_to_end(client)
|
2019-08-02 21:50:27 +02:00
|
|
|
self.assertEqual(queue.contents(),
|
|
|
|
[{'id': 8,
|
|
|
|
'type': 'pointer',
|
|
|
|
"pointer": 9,
|
|
|
|
"timestamp": "9"}])
|
2019-08-02 22:23:05 +02:00
|
|
|
self.verify_to_dict_end_to_end(client)
|
2019-08-02 21:50:27 +02:00
|
|
|
|
2019-08-02 22:23:05 +02:00
|
|
|
client = self.get_client_descriptor()
|
|
|
|
queue = client.event_queue
|
2019-08-02 21:50:27 +02:00
|
|
|
for pointer_val in range(1, 10):
|
|
|
|
queue.push({"type": "pointer",
|
|
|
|
"pointer": pointer_val,
|
|
|
|
"timestamp": str(pointer_val)})
|
2019-08-02 22:23:05 +02:00
|
|
|
self.verify_to_dict_end_to_end(client)
|
|
|
|
|
2019-08-02 21:50:27 +02:00
|
|
|
queue.push({"type": "unknown"})
|
2019-08-02 22:23:05 +02:00
|
|
|
self.verify_to_dict_end_to_end(client)
|
|
|
|
|
2019-08-02 21:50:27 +02:00
|
|
|
queue.push({"type": "restart", "server_generation": "1"})
|
2019-08-02 22:23:05 +02:00
|
|
|
self.verify_to_dict_end_to_end(client)
|
|
|
|
|
2019-08-02 21:50:27 +02:00
|
|
|
for pointer_val in range(11, 20):
|
|
|
|
queue.push({"type": "pointer",
|
|
|
|
"pointer": pointer_val,
|
|
|
|
"timestamp": str(pointer_val)})
|
2019-08-02 22:23:05 +02:00
|
|
|
self.verify_to_dict_end_to_end(client)
|
2019-08-02 21:50:27 +02:00
|
|
|
queue.push({"type": "restart", "server_generation": "2"})
|
2019-08-02 22:23:05 +02:00
|
|
|
self.verify_to_dict_end_to_end(client)
|
2019-08-02 21:50:27 +02:00
|
|
|
self.assertEqual(queue.contents(),
|
|
|
|
[{"type": "unknown",
|
|
|
|
"id": 9},
|
|
|
|
{'id': 19,
|
|
|
|
'type': 'pointer',
|
|
|
|
"pointer": 19,
|
|
|
|
"timestamp": "19"},
|
|
|
|
{"id": 20,
|
|
|
|
"type": "restart",
|
|
|
|
"server_generation": "2"}])
|
2019-08-02 22:23:05 +02:00
|
|
|
self.verify_to_dict_end_to_end(client)
|
2019-08-02 21:50:27 +02:00
|
|
|
for pointer_val in range(21, 23):
|
|
|
|
queue.push({"type": "pointer",
|
|
|
|
"pointer": pointer_val,
|
|
|
|
"timestamp": str(pointer_val)})
|
2019-08-02 22:23:05 +02:00
|
|
|
self.verify_to_dict_end_to_end(client)
|
2019-08-02 21:50:27 +02:00
|
|
|
self.assertEqual(queue.contents(),
|
|
|
|
[{"type": "unknown",
|
|
|
|
"id": 9},
|
|
|
|
{'id': 19,
|
|
|
|
'type': 'pointer',
|
|
|
|
"pointer": 19,
|
|
|
|
"timestamp": "19"},
|
|
|
|
{"id": 20,
|
|
|
|
"type": "restart",
|
|
|
|
"server_generation": "2"},
|
|
|
|
{'id': 22,
|
|
|
|
'type': 'pointer',
|
|
|
|
"pointer": 22,
|
|
|
|
"timestamp": "22"},
|
|
|
|
])
|
2019-08-02 22:23:05 +02:00
|
|
|
self.verify_to_dict_end_to_end(client)
|
2019-08-02 21:50:27 +02:00
|
|
|
|
|
|
|
def test_flag_add_collapsing(self) -> None:
|
2019-08-02 22:23:05 +02:00
|
|
|
client = self.get_client_descriptor()
|
|
|
|
queue = client.event_queue
|
2019-08-02 21:50:27 +02:00
|
|
|
queue.push({"type": "update_message_flags",
|
|
|
|
"flag": "read",
|
|
|
|
"operation": "add",
|
|
|
|
"all": False,
|
|
|
|
"messages": [1, 2, 3, 4],
|
|
|
|
"timestamp": "1"})
|
2019-08-02 22:23:05 +02:00
|
|
|
self.verify_to_dict_end_to_end(client)
|
2019-08-02 21:50:27 +02:00
|
|
|
queue.push({"type": "update_message_flags",
|
|
|
|
"flag": "read",
|
|
|
|
"all": False,
|
|
|
|
"operation": "add",
|
|
|
|
"messages": [5, 6],
|
|
|
|
"timestamp": "1"})
|
2019-08-02 22:23:05 +02:00
|
|
|
self.verify_to_dict_end_to_end(client)
|
2019-08-02 21:50:27 +02:00
|
|
|
self.assertEqual(queue.contents(),
|
|
|
|
[{'id': 1,
|
|
|
|
'type': 'update_message_flags',
|
|
|
|
"all": False,
|
|
|
|
"flag": "read",
|
|
|
|
"operation": "add",
|
|
|
|
"messages": [1, 2, 3, 4, 5, 6],
|
|
|
|
"timestamp": "1"}])
|
2019-08-02 22:23:05 +02:00
|
|
|
self.verify_to_dict_end_to_end(client)
|
2019-08-02 21:50:27 +02:00
|
|
|
|
|
|
|
def test_flag_remove_collapsing(self) -> None:
|
2019-08-02 22:23:05 +02:00
|
|
|
client = self.get_client_descriptor()
|
|
|
|
queue = client.event_queue
|
2019-08-02 21:50:27 +02:00
|
|
|
queue.push({"type": "update_message_flags",
|
|
|
|
"flag": "collapsed",
|
|
|
|
"operation": "remove",
|
|
|
|
"all": False,
|
|
|
|
"messages": [1, 2, 3, 4],
|
|
|
|
"timestamp": "1"})
|
2019-08-02 22:23:05 +02:00
|
|
|
self.verify_to_dict_end_to_end(client)
|
2019-08-02 21:50:27 +02:00
|
|
|
queue.push({"type": "update_message_flags",
|
|
|
|
"flag": "collapsed",
|
|
|
|
"all": False,
|
|
|
|
"operation": "remove",
|
|
|
|
"messages": [5, 6],
|
|
|
|
"timestamp": "1"})
|
2019-08-02 22:23:05 +02:00
|
|
|
self.verify_to_dict_end_to_end(client)
|
2019-08-02 21:50:27 +02:00
|
|
|
self.assertEqual(queue.contents(),
|
|
|
|
[{'id': 1,
|
|
|
|
'type': 'update_message_flags',
|
|
|
|
"all": False,
|
|
|
|
"flag": "collapsed",
|
|
|
|
"operation": "remove",
|
|
|
|
"messages": [1, 2, 3, 4, 5, 6],
|
|
|
|
"timestamp": "1"}])
|
2019-08-02 22:23:05 +02:00
|
|
|
self.verify_to_dict_end_to_end(client)
|
2019-08-02 21:50:27 +02:00
|
|
|
|
|
|
|
def test_collapse_event(self) -> None:
|
2019-08-02 22:23:05 +02:00
|
|
|
client = self.get_client_descriptor()
|
|
|
|
queue = client.event_queue
|
2019-08-02 21:50:27 +02:00
|
|
|
queue.push({"type": "pointer",
|
|
|
|
"pointer": 1,
|
|
|
|
"timestamp": "1"})
|
2019-08-02 22:23:05 +02:00
|
|
|
# Verify the pointer event is stored as a virtual event
|
|
|
|
self.assertEqual(queue.virtual_events,
|
|
|
|
{'pointer':
|
|
|
|
{'id': 0,
|
|
|
|
'type': 'pointer',
|
|
|
|
'pointer': 1,
|
|
|
|
"timestamp": "1"}})
|
|
|
|
# And we can reconstruct newest_pruned_id etc.
|
|
|
|
self.verify_to_dict_end_to_end(client)
|
|
|
|
|
2019-08-02 21:50:27 +02:00
|
|
|
queue.push({"type": "unknown",
|
|
|
|
"timestamp": "1"})
|
2019-08-02 22:23:05 +02:00
|
|
|
self.assertEqual(list(queue.queue),
|
|
|
|
[{'id': 1,
|
|
|
|
'type': 'unknown',
|
|
|
|
"timestamp": "1"}])
|
|
|
|
self.assertEqual(queue.virtual_events,
|
|
|
|
{'pointer':
|
|
|
|
{'id': 0,
|
|
|
|
'type': 'pointer',
|
|
|
|
'pointer': 1,
|
|
|
|
"timestamp": "1"}})
|
|
|
|
# And we can still reconstruct newest_pruned_id etc. correctly
|
|
|
|
self.verify_to_dict_end_to_end(client)
|
|
|
|
|
|
|
|
# Verify virtual events are converted to real events by .contents()
|
2019-08-02 21:50:27 +02:00
|
|
|
self.assertEqual(queue.contents(),
|
|
|
|
[{'id': 0,
|
|
|
|
'type': 'pointer',
|
|
|
|
"pointer": 1,
|
|
|
|
"timestamp": "1"},
|
|
|
|
{'id': 1,
|
|
|
|
'type': 'unknown',
|
|
|
|
"timestamp": "1"}])
|
2019-08-02 22:23:05 +02:00
|
|
|
|
|
|
|
# And now verify to_dict after pruning
|
|
|
|
queue.prune(0)
|
|
|
|
self.verify_to_dict_end_to_end(client)
|
|
|
|
|
|
|
|
queue.prune(1)
|
|
|
|
self.verify_to_dict_end_to_end(client)
|