2020-07-08 01:29:42 +02:00
import datetime
2020-06-11 00:54:34 +02:00
import os
2020-09-29 18:06:50 +02:00
from typing import Any , Dict , List , Optional , Sequence , Tuple , Union
2020-06-11 00:54:34 +02:00
from unittest import mock
2020-08-07 01:09:47 +02:00
import orjson
2016-07-17 04:07:07 +02:00
from django . db import connection
2020-08-04 19:33:43 +02:00
from django . http import HttpResponse
2020-07-01 04:19:54 +02:00
from django . test import override_settings
2020-07-08 01:29:42 +02:00
from django . utils . timezone import now as timezone_now
2020-11-16 22:52:27 +01:00
from sqlalchemy . sql import Select , and_ , column , select , table
2019-08-28 22:35:22 +02:00
from sqlalchemy . sql . elements import ClauseElement
2016-06-21 21:05:44 +02:00
2020-07-08 01:29:42 +02:00
from analytics . lib . counts import COUNT_STATS
from analytics . models import RealmCount
2020-07-08 00:44:42 +02:00
from zerver . lib . actions import (
do_claim_attachments ,
do_deactivate_user ,
do_set_realm_property ,
do_update_message ,
)
2020-08-04 19:33:43 +02:00
from zerver . lib . avatar import avatar_url
2021-07-16 22:11:10 +02:00
from zerver . lib . exceptions import JsonableError
2021-06-13 00:51:30 +02:00
from zerver . lib . mention import MentionData
2020-07-08 01:29:42 +02:00
from zerver . lib . message import (
MessageDict ,
get_first_visible_message_id ,
maybe_update_first_visible_message_id ,
render_markdown ,
update_first_visible_message_id ,
)
2020-06-11 00:54:34 +02:00
from zerver . lib . narrow import build_narrow_filter , is_web_public_compatible
2016-07-19 08:12:35 +02:00
from zerver . lib . sqlalchemy_utils import get_sqlalchemy_connection
2020-09-29 18:06:50 +02:00
from zerver . lib . streams import StreamDict , create_streams_if_needed , get_public_streams_queryset
2020-06-11 00:54:34 +02:00
from zerver . lib . test_classes import ZulipTestCase
2021-02-07 21:34:01 +01:00
from zerver . lib . test_helpers import HostRequestMock , get_user_messages , queries_captured
2021-07-13 20:23:36 +02:00
from zerver . lib . topic import MATCH_TOPIC , RESOLVED_TOPIC_PREFIX , TOPIC_NAME
2020-06-11 00:54:34 +02:00
from zerver . lib . topic_mutes import set_topic_mutes
2019-08-18 00:40:35 +02:00
from zerver . lib . types import DisplayRecipientT
2020-07-08 00:44:42 +02:00
from zerver . lib . upload import create_attachment
2020-07-08 02:38:54 +02:00
from zerver . lib . url_encoding import near_message_url
2020-06-11 00:54:34 +02:00
from zerver . models import (
2020-07-08 00:44:42 +02:00
Attachment ,
2020-06-11 00:54:34 +02:00
Message ,
Realm ,
Subscription ,
UserMessage ,
2020-07-08 00:44:42 +02:00
UserProfile ,
2020-06-11 00:54:34 +02:00
get_display_recipient ,
get_realm ,
get_stream ,
)
2020-06-22 23:32:53 +02:00
from zerver . views . message_fetch import (
2020-06-11 00:54:34 +02:00
LARGER_THAN_MAX_MESSAGE_ID ,
BadNarrowOperator ,
NarrowBuilder ,
2016-07-19 08:12:35 +02:00
exclude_muting_conditions ,
2018-04-05 14:54:30 +02:00
find_first_unread_anchor ,
2020-06-11 00:54:34 +02:00
get_messages_backend ,
ok_to_include_history ,
post_process_limited_query ,
2016-06-21 21:05:44 +02:00
)
2019-08-28 22:35:22 +02:00
def get_sqlalchemy_sql ( query : ClauseElement ) - > str :
2017-08-25 20:01:20 +02:00
dialect = get_sqlalchemy_connection ( ) . dialect
2019-08-28 22:35:22 +02:00
comp = query . compile ( dialect = dialect )
return str ( comp )
2016-06-21 21:05:44 +02:00
2021-02-12 08:19:30 +01:00
2019-08-28 22:35:22 +02:00
def get_sqlalchemy_query_params ( query : ClauseElement ) - > Dict [ str , object ] :
dialect = get_sqlalchemy_connection ( ) . dialect
comp = query . compile ( dialect = dialect )
return comp . params
2016-06-21 21:05:44 +02:00
2021-02-12 08:19:30 +01:00
2021-07-24 16:56:39 +02:00
def get_recipient_id_for_stream_name ( realm : Realm , stream_name : str ) - > Optional [ int ] :
2016-06-21 21:05:44 +02:00
stream = get_stream ( stream_name , realm )
2021-07-24 16:56:39 +02:00
return stream . recipient . id if stream . recipient is not None else None
2016-06-21 21:05:44 +02:00
2021-02-12 08:19:30 +01:00
2018-05-10 19:00:29 +02:00
def mute_stream ( realm : Realm , user_profile : str , stream_name : str ) - > None :
2017-01-13 15:50:17 +01:00
stream = get_stream ( stream_name , realm )
2020-02-18 17:25:43 +01:00
recipient = stream . recipient
2016-06-21 21:05:44 +02:00
subscription = Subscription . objects . get ( recipient = recipient , user_profile = user_profile )
2018-08-02 23:46:05 +02:00
subscription . is_muted = True
2016-06-21 21:05:44 +02:00
subscription . save ( )
2021-02-12 08:19:30 +01:00
2018-03-15 11:58:25 +01:00
def first_visible_id_as ( message_id : int ) - > Any :
return mock . patch (
2021-02-12 08:20:45 +01:00
" zerver.views.message_fetch.get_first_visible_message_id " ,
2018-03-15 11:58:25 +01:00
return_value = message_id ,
)
2021-02-12 08:19:30 +01:00
2016-08-23 02:08:42 +02:00
class NarrowBuilderTest ( ZulipTestCase ) :
2017-11-05 10:51:25 +01:00
def setUp ( self ) - > None :
2019-10-19 20:47:00 +02:00
super ( ) . setUp ( )
2021-02-12 08:20:45 +01:00
self . realm = get_realm ( " zulip " )
self . user_profile = self . example_user ( " hamlet " )
self . builder = NarrowBuilder ( self . user_profile , column ( " id " ) , self . realm )
2017-02-22 22:13:57 +01:00
self . raw_query = select ( [ column ( " id " ) ] , None , table ( " zerver_message " ) )
2021-02-12 08:20:45 +01:00
self . hamlet_email = self . example_user ( " hamlet " ) . email
self . othello_email = self . example_user ( " othello " ) . email
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def test_add_term_using_not_defined_operator ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " not-defined " , operand = " any " )
2016-06-21 21:05:44 +02:00
self . assertRaises ( BadNarrowOperator , self . _build_query , term )
2017-11-05 10:51:25 +01:00
def test_add_term_using_stream_operator ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " stream " , operand = " Scotland " )
self . _do_add_term_test ( term , " WHERE recipient_id = %(recipient_id_1)s " )
2016-06-21 21:05:44 +02:00
2017-11-19 04:02:03 +01:00
def test_add_term_using_stream_operator_and_negated ( self ) - > None : # NEGATED
2021-02-12 08:20:45 +01:00
term = dict ( operator = " stream " , operand = " Scotland " , negated = True )
self . _do_add_term_test ( term , " WHERE recipient_id != %(recipient_id_1)s " )
2016-06-21 21:05:44 +02:00
2017-11-19 04:02:03 +01:00
def test_add_term_using_stream_operator_and_non_existing_operand_should_raise_error (
2021-02-12 08:19:30 +01:00
self ,
) - > None : # NEGATED
2021-02-12 08:20:45 +01:00
term = dict ( operator = " stream " , operand = " NonExistingStream " )
2016-06-21 21:05:44 +02:00
self . assertRaises ( BadNarrowOperator , self . _build_query , term )
2017-11-05 10:51:25 +01:00
def test_add_term_using_is_operator_and_private_operand ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " is " , operand = " private " )
self . _do_add_term_test ( term , " WHERE (flags & %(flags_1)s ) != %(param_1)s " )
2016-06-21 21:05:44 +02:00
2019-08-13 20:20:36 +02:00
def test_add_term_using_streams_operator_and_invalid_operand_should_raise_error (
2021-02-12 08:19:30 +01:00
self ,
) - > None : # NEGATED
2021-02-12 08:20:45 +01:00
term = dict ( operator = " streams " , operand = " invalid_operands " )
2019-08-13 20:20:36 +02:00
self . assertRaises ( BadNarrowOperator , self . _build_query , term )
def test_add_term_using_streams_operator_and_public_stream_operand ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " streams " , operand = " public " )
2021-02-12 08:19:30 +01:00
self . _do_add_term_test (
term ,
2021-02-12 08:20:45 +01:00
" WHERE recipient_id IN ( %(recipient_id_1)s , %(recipient_id_2)s , %(recipient_id_3)s , %(recipient_id_4)s , %(recipient_id_5)s ) " ,
2021-02-12 08:19:30 +01:00
)
2019-08-13 20:20:36 +02:00
# Add new streams
2020-09-29 18:06:50 +02:00
stream_dicts : List [ StreamDict ] = [
2019-08-13 20:20:36 +02:00
{
" name " : " publicstream " ,
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
" description " : " Public stream with public history " ,
2019-08-13 20:20:36 +02:00
} ,
{
" name " : " privatestream " ,
" description " : " Private stream with non-public history " ,
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
" invite_only " : True ,
2019-08-13 20:20:36 +02:00
} ,
{
" name " : " privatewithhistory " ,
" description " : " Private stream with public history " ,
" invite_only " : True ,
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
" history_public_to_subscribers " : True ,
} ,
python: Convert assignment type annotations to Python 3.6 style.
This commit was split by tabbott; this piece covers the vast majority
of files in Zulip, but excludes scripts/, tools/, and puppet/ to help
ensure we at least show the right error messages for Xenial systems.
We can likely further refine the remaining pieces with some testing.
Generated by com2ann, with whitespace fixes and various manual fixes
for runtime issues:
- invoiced_through: Optional[LicenseLedger] = models.ForeignKey(
+ invoiced_through: Optional["LicenseLedger"] = models.ForeignKey(
-_apns_client: Optional[APNsClient] = None
+_apns_client: Optional["APNsClient"] = None
- notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- signup_notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ signup_notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- author: Optional[UserProfile] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
+ author: Optional["UserProfile"] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
- bot_owner: Optional[UserProfile] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
+ bot_owner: Optional["UserProfile"] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
- default_sending_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
- default_events_register_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_sending_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_events_register_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
-descriptors_by_handler_id: Dict[int, ClientDescriptor] = {}
+descriptors_by_handler_id: Dict[int, "ClientDescriptor"] = {}
-worker_classes: Dict[str, Type[QueueProcessingWorker]] = {}
-queues: Dict[str, Dict[str, Type[QueueProcessingWorker]]] = {}
+worker_classes: Dict[str, Type["QueueProcessingWorker"]] = {}
+queues: Dict[str, Dict[str, Type["QueueProcessingWorker"]]] = {}
-AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional[LDAPSearch] = None
+AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional["LDAPSearch"] = None
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-22 01:09:50 +02:00
]
2021-02-12 08:20:45 +01:00
realm = get_realm ( " zulip " )
2019-08-13 20:20:36 +02:00
created , existing = create_streams_if_needed ( realm , stream_dicts )
2021-05-17 05:41:32 +02:00
self . assert_length ( created , 3 )
self . assert_length ( existing , 0 )
2019-08-13 20:20:36 +02:00
# Number of recipient ids will increase by 1 and not 3
2021-02-12 08:19:30 +01:00
self . _do_add_term_test (
term ,
2021-04-29 17:22:48 +02:00
" WHERE recipient_id IN ( %(recipient_id_1)s , %(recipient_id_2)s , %(recipient_id_3)s , %(recipient_id_4)s , %(recipient_id_5)s , %(recipient_id_6)s " ,
2021-02-12 08:19:30 +01:00
)
2019-08-13 20:20:36 +02:00
def test_add_term_using_streams_operator_and_public_stream_operand_negated ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " streams " , operand = " public " , negated = True )
2021-02-12 08:19:30 +01:00
self . _do_add_term_test (
term ,
2021-02-12 08:20:45 +01:00
" WHERE recipient_id NOT IN ( %(recipient_id_1)s , %(recipient_id_2)s , %(recipient_id_3)s , %(recipient_id_4)s , %(recipient_id_5)s ) " ,
2021-02-12 08:19:30 +01:00
)
2019-08-13 20:20:36 +02:00
# Add new streams
2020-09-29 18:06:50 +02:00
stream_dicts : List [ StreamDict ] = [
2019-08-13 20:20:36 +02:00
{
" name " : " publicstream " ,
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
" description " : " Public stream with public history " ,
2019-08-13 20:20:36 +02:00
} ,
{
" name " : " privatestream " ,
" description " : " Private stream with non-public history " ,
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
" invite_only " : True ,
2019-08-13 20:20:36 +02:00
} ,
{
" name " : " privatewithhistory " ,
" description " : " Private stream with public history " ,
" invite_only " : True ,
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
" history_public_to_subscribers " : True ,
} ,
python: Convert assignment type annotations to Python 3.6 style.
This commit was split by tabbott; this piece covers the vast majority
of files in Zulip, but excludes scripts/, tools/, and puppet/ to help
ensure we at least show the right error messages for Xenial systems.
We can likely further refine the remaining pieces with some testing.
Generated by com2ann, with whitespace fixes and various manual fixes
for runtime issues:
- invoiced_through: Optional[LicenseLedger] = models.ForeignKey(
+ invoiced_through: Optional["LicenseLedger"] = models.ForeignKey(
-_apns_client: Optional[APNsClient] = None
+_apns_client: Optional["APNsClient"] = None
- notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- signup_notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ signup_notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- author: Optional[UserProfile] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
+ author: Optional["UserProfile"] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
- bot_owner: Optional[UserProfile] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
+ bot_owner: Optional["UserProfile"] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
- default_sending_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
- default_events_register_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_sending_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_events_register_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
-descriptors_by_handler_id: Dict[int, ClientDescriptor] = {}
+descriptors_by_handler_id: Dict[int, "ClientDescriptor"] = {}
-worker_classes: Dict[str, Type[QueueProcessingWorker]] = {}
-queues: Dict[str, Dict[str, Type[QueueProcessingWorker]]] = {}
+worker_classes: Dict[str, Type["QueueProcessingWorker"]] = {}
+queues: Dict[str, Dict[str, Type["QueueProcessingWorker"]]] = {}
-AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional[LDAPSearch] = None
+AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional["LDAPSearch"] = None
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-22 01:09:50 +02:00
]
2021-02-12 08:20:45 +01:00
realm = get_realm ( " zulip " )
2019-08-13 20:20:36 +02:00
created , existing = create_streams_if_needed ( realm , stream_dicts )
2021-05-17 05:41:32 +02:00
self . assert_length ( created , 3 )
self . assert_length ( existing , 0 )
2019-08-13 20:20:36 +02:00
# Number of recipient ids will increase by 1 and not 3
2021-02-12 08:19:30 +01:00
self . _do_add_term_test (
term ,
2021-02-12 08:20:45 +01:00
" WHERE recipient_id NOT IN ( %(recipient_id_1)s , %(recipient_id_2)s , %(recipient_id_3)s , %(recipient_id_4)s , %(recipient_id_5)s , %(recipient_id_6)s ) " ,
2021-02-12 08:19:30 +01:00
)
2019-08-13 20:20:36 +02:00
2021-02-12 08:19:30 +01:00
def test_add_term_using_is_operator_private_operand_and_negated ( self ) - > None : # NEGATED
2021-02-12 08:20:45 +01:00
term = dict ( operator = " is " , operand = " private " , negated = True )
self . _do_add_term_test ( term , " WHERE (flags & %(flags_1)s ) = %(param_1)s " )
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def test_add_term_using_is_operator_and_non_private_operand ( self ) - > None :
2021-02-12 08:20:45 +01:00
for operand in [ " starred " , " mentioned " , " alerted " ] :
term = dict ( operator = " is " , operand = operand )
self . _do_add_term_test ( term , " WHERE (flags & %(flags_1)s ) != %(param_1)s " )
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def test_add_term_using_is_operator_and_unread_operand ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " is " , operand = " unread " )
self . _do_add_term_test ( term , " WHERE (flags & %(flags_1)s ) = %(param_1)s " )
2017-06-19 03:21:48 +02:00
2021-02-12 08:19:30 +01:00
def test_add_term_using_is_operator_and_unread_operand_and_negated ( self ) - > None : # NEGATED
2021-02-12 08:20:45 +01:00
term = dict ( operator = " is " , operand = " unread " , negated = True )
self . _do_add_term_test ( term , " WHERE (flags & %(flags_1)s ) != %(param_1)s " )
2017-06-19 03:21:48 +02:00
2021-02-12 08:19:30 +01:00
def test_add_term_using_is_operator_non_private_operand_and_negated ( self ) - > None : # NEGATED
2021-02-12 08:20:45 +01:00
term = dict ( operator = " is " , operand = " starred " , negated = True )
where_clause = " WHERE (flags & %(flags_1)s ) = %(param_1)s "
2017-08-16 15:20:11 +02:00
params = dict (
flags_1 = UserMessage . flags . starred . mask ,
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
param_1 = 0 ,
2017-08-16 15:20:11 +02:00
)
self . _do_add_term_test ( term , where_clause , params )
2021-02-12 08:20:45 +01:00
term = dict ( operator = " is " , operand = " alerted " , negated = True )
where_clause = " WHERE (flags & %(flags_1)s ) = %(param_1)s "
2017-08-16 15:20:11 +02:00
params = dict (
flags_1 = UserMessage . flags . has_alert_word . mask ,
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
param_1 = 0 ,
2017-08-16 15:20:11 +02:00
)
self . _do_add_term_test ( term , where_clause , params )
2021-02-12 08:20:45 +01:00
term = dict ( operator = " is " , operand = " mentioned " , negated = True )
where_clause = " WHERE NOT ((flags & %(flags_1)s ) != %(param_1)s OR (flags & %(flags_2)s ) != %(param_2)s ) "
2017-08-16 15:20:11 +02:00
params = dict (
flags_1 = UserMessage . flags . mentioned . mask ,
param_1 = 0 ,
flags_2 = UserMessage . flags . wildcard_mentioned . mask ,
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
param_2 = 0 ,
2017-08-16 15:20:11 +02:00
)
self . _do_add_term_test ( term , where_clause , params )
2016-06-21 21:05:44 +02:00
2021-07-13 20:23:36 +02:00
def test_add_term_using_is_operator_for_resolved_topics ( self ) - > None :
term = dict ( operator = " is " , operand = " resolved " )
self . _do_add_term_test ( term , " WHERE (subject LIKE %(subject_1)s || ' %% ' " )
def test_add_term_using_is_operator_for_negated_resolved_topics ( self ) - > None :
term = dict ( operator = " is " , operand = " resolved " , negated = True )
self . _do_add_term_test ( term , " WHERE (subject NOT LIKE %(subject_1)s || ' %% ' " )
2017-11-05 10:51:25 +01:00
def test_add_term_using_non_supported_operator_should_raise_error ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " is " , operand = " non_supported " )
2016-06-21 21:05:44 +02:00
self . assertRaises ( BadNarrowOperator , self . _build_query , term )
2017-11-05 10:51:25 +01:00
def test_add_term_using_topic_operator_and_lunch_operand ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " topic " , operand = " lunch " )
self . _do_add_term_test ( term , " WHERE upper(subject) = upper( %(param_1)s ) " )
2016-06-21 21:05:44 +02:00
2021-02-12 08:19:30 +01:00
def test_add_term_using_topic_operator_lunch_operand_and_negated ( self ) - > None : # NEGATED
2021-02-12 08:20:45 +01:00
term = dict ( operator = " topic " , operand = " lunch " , negated = True )
self . _do_add_term_test ( term , " WHERE upper(subject) != upper( %(param_1)s ) " )
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def test_add_term_using_topic_operator_and_personal_operand ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " topic " , operand = " personal " )
self . _do_add_term_test ( term , " WHERE upper(subject) = upper( %(param_1)s ) " )
2016-06-21 21:05:44 +02:00
2021-02-12 08:19:30 +01:00
def test_add_term_using_topic_operator_personal_operand_and_negated ( self ) - > None : # NEGATED
2021-02-12 08:20:45 +01:00
term = dict ( operator = " topic " , operand = " personal " , negated = True )
self . _do_add_term_test ( term , " WHERE upper(subject) != upper( %(param_1)s ) " )
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def test_add_term_using_sender_operator ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " sender " , operand = self . othello_email )
self . _do_add_term_test ( term , " WHERE sender_id = %(param_1)s " )
2016-06-21 21:05:44 +02:00
2017-11-19 04:02:03 +01:00
def test_add_term_using_sender_operator_and_negated ( self ) - > None : # NEGATED
2021-02-12 08:20:45 +01:00
term = dict ( operator = " sender " , operand = self . othello_email , negated = True )
self . _do_add_term_test ( term , " WHERE sender_id != %(param_1)s " )
2016-06-21 21:05:44 +02:00
2017-11-19 04:02:03 +01:00
def test_add_term_using_sender_operator_with_non_existing_user_as_operand (
2021-02-12 08:19:30 +01:00
self ,
) - > None : # NEGATED
2021-02-12 08:20:45 +01:00
term = dict ( operator = " sender " , operand = " non-existing@zulip.com " )
2016-06-21 21:05:44 +02:00
self . assertRaises ( BadNarrowOperator , self . _build_query , term )
2017-11-05 10:51:25 +01:00
def test_add_term_using_pm_with_operator_and_not_the_same_user_as_operand ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " pm-with " , operand = self . othello_email )
2021-02-12 08:19:30 +01:00
self . _do_add_term_test (
term ,
2021-02-12 08:20:45 +01:00
" WHERE sender_id = %(sender_id_1)s AND recipient_id = %(recipient_id_1)s OR sender_id = %(sender_id_2)s AND recipient_id = %(recipient_id_2)s " ,
2021-02-12 08:19:30 +01:00
)
2016-06-21 21:05:44 +02:00
2017-11-19 04:02:03 +01:00
def test_add_term_using_pm_with_operator_not_the_same_user_as_operand_and_negated (
2021-02-12 08:19:30 +01:00
self ,
) - > None : # NEGATED
2021-02-12 08:20:45 +01:00
term = dict ( operator = " pm-with " , operand = self . othello_email , negated = True )
2021-02-12 08:19:30 +01:00
self . _do_add_term_test (
term ,
2021-02-12 08:20:45 +01:00
" WHERE NOT (sender_id = %(sender_id_1)s AND recipient_id = %(recipient_id_1)s OR sender_id = %(sender_id_2)s AND recipient_id = %(recipient_id_2)s ) " ,
2021-02-12 08:19:30 +01:00
)
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def test_add_term_using_pm_with_operator_the_same_user_as_operand ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " pm-with " , operand = self . hamlet_email )
2021-02-12 08:19:30 +01:00
self . _do_add_term_test (
2021-02-12 08:20:45 +01:00
term , " WHERE sender_id = %(sender_id_1)s AND recipient_id = %(recipient_id_1)s "
2021-02-12 08:19:30 +01:00
)
2016-06-21 21:05:44 +02:00
2017-11-19 04:02:03 +01:00
def test_add_term_using_pm_with_operator_the_same_user_as_operand_and_negated (
2021-02-12 08:19:30 +01:00
self ,
) - > None : # NEGATED
2021-02-12 08:20:45 +01:00
term = dict ( operator = " pm-with " , operand = self . hamlet_email , negated = True )
2021-02-12 08:19:30 +01:00
self . _do_add_term_test (
2021-02-12 08:20:45 +01:00
term , " WHERE NOT (sender_id = %(sender_id_1)s AND recipient_id = %(recipient_id_1)s ) "
2021-02-12 08:19:30 +01:00
)
2016-06-21 21:05:44 +02:00
narrow: Handle spurious emails in pm-with searches.
If cordelia searches on pm-with:iago@zulip.com,cordelia@zulip.com,
we now properly treat that the same way as pm-with:iago@zulip.com.
Before this fix, the query would initially go through the
huddle code path. The symptom wasn't completely obvious, as
eventually a deeper function would return a recipient id
corresponding to a single PM with @iago@zulip.com, but we would
only get messages where iago was the recipient, and not any
messages where he was the sender to cordelia.
I put the helper function for this in zerver/lib/addressee, which
is somewhat speculative. Eventually, we'll want pm-with queries
to allow for user ids, and I imagine there will be some shared
logic with other Addressee code in terms of how we handle these
strings. The way we deal with lists of emails/users for various
endpoints is kind of haphazard in the current code, although
granted it's mostly just repeating the same simple patterns. It
would be nice for some of this code to converge a bit. This
affects new messages, typing indicators, search filters, etc.,
and some endpoints have strange legacy stuff like supporting
JSON-encoded lists, so it's not trivial to clean this up.
Tweaked by tabbott to add some additional tests.
2018-10-12 17:56:46 +02:00
def test_add_term_using_pm_with_operator_and_self_and_user_as_operand ( self ) - > None :
2021-02-12 08:20:45 +01:00
myself_and_other = " , " . join (
2021-02-12 08:19:30 +01:00
[
2021-02-12 08:20:45 +01:00
self . example_user ( " hamlet " ) . email ,
self . example_user ( " othello " ) . email ,
2021-02-12 08:19:30 +01:00
]
)
2021-02-12 08:20:45 +01:00
term = dict ( operator = " pm-with " , operand = myself_and_other )
2021-02-12 08:19:30 +01:00
self . _do_add_term_test (
term ,
2021-02-12 08:20:45 +01:00
" WHERE sender_id = %(sender_id_1)s AND recipient_id = %(recipient_id_1)s OR sender_id = %(sender_id_2)s AND recipient_id = %(recipient_id_2)s " ,
2021-02-12 08:19:30 +01:00
)
narrow: Handle spurious emails in pm-with searches.
If cordelia searches on pm-with:iago@zulip.com,cordelia@zulip.com,
we now properly treat that the same way as pm-with:iago@zulip.com.
Before this fix, the query would initially go through the
huddle code path. The symptom wasn't completely obvious, as
eventually a deeper function would return a recipient id
corresponding to a single PM with @iago@zulip.com, but we would
only get messages where iago was the recipient, and not any
messages where he was the sender to cordelia.
I put the helper function for this in zerver/lib/addressee, which
is somewhat speculative. Eventually, we'll want pm-with queries
to allow for user ids, and I imagine there will be some shared
logic with other Addressee code in terms of how we handle these
strings. The way we deal with lists of emails/users for various
endpoints is kind of haphazard in the current code, although
granted it's mostly just repeating the same simple patterns. It
would be nice for some of this code to converge a bit. This
affects new messages, typing indicators, search filters, etc.,
and some endpoints have strange legacy stuff like supporting
JSON-encoded lists, so it's not trivial to clean this up.
Tweaked by tabbott to add some additional tests.
2018-10-12 17:56:46 +02:00
def test_add_term_using_pm_with_operator_more_than_one_user_as_operand ( self ) - > None :
2021-02-12 08:20:45 +01:00
two_others = " , " . join (
2021-02-12 08:19:30 +01:00
[
2021-02-12 08:20:45 +01:00
self . example_user ( " cordelia " ) . email ,
self . example_user ( " othello " ) . email ,
2021-02-12 08:19:30 +01:00
]
)
2021-02-12 08:20:45 +01:00
term = dict ( operator = " pm-with " , operand = two_others )
self . _do_add_term_test ( term , " WHERE recipient_id = %(recipient_id_1)s " )
2016-06-21 21:05:44 +02:00
narrow: Handle spurious emails in pm-with searches.
If cordelia searches on pm-with:iago@zulip.com,cordelia@zulip.com,
we now properly treat that the same way as pm-with:iago@zulip.com.
Before this fix, the query would initially go through the
huddle code path. The symptom wasn't completely obvious, as
eventually a deeper function would return a recipient id
corresponding to a single PM with @iago@zulip.com, but we would
only get messages where iago was the recipient, and not any
messages where he was the sender to cordelia.
I put the helper function for this in zerver/lib/addressee, which
is somewhat speculative. Eventually, we'll want pm-with queries
to allow for user ids, and I imagine there will be some shared
logic with other Addressee code in terms of how we handle these
strings. The way we deal with lists of emails/users for various
endpoints is kind of haphazard in the current code, although
granted it's mostly just repeating the same simple patterns. It
would be nice for some of this code to converge a bit. This
affects new messages, typing indicators, search filters, etc.,
and some endpoints have strange legacy stuff like supporting
JSON-encoded lists, so it's not trivial to clean this up.
Tweaked by tabbott to add some additional tests.
2018-10-12 17:56:46 +02:00
def test_add_term_using_pm_with_operator_self_and_user_as_operand_and_negated (
2021-02-12 08:19:30 +01:00
self ,
) - > None : # NEGATED
2021-02-12 08:20:45 +01:00
myself_and_other = " , " . join (
2021-02-12 08:19:30 +01:00
[
2021-02-12 08:20:45 +01:00
self . example_user ( " hamlet " ) . email ,
self . example_user ( " othello " ) . email ,
2021-02-12 08:19:30 +01:00
]
)
2021-02-12 08:20:45 +01:00
term = dict ( operator = " pm-with " , operand = myself_and_other , negated = True )
2021-02-12 08:19:30 +01:00
self . _do_add_term_test (
term ,
2021-02-12 08:20:45 +01:00
" WHERE NOT (sender_id = %(sender_id_1)s AND recipient_id = %(recipient_id_1)s OR sender_id = %(sender_id_2)s AND recipient_id = %(recipient_id_2)s ) " ,
2021-02-12 08:19:30 +01:00
)
narrow: Handle spurious emails in pm-with searches.
If cordelia searches on pm-with:iago@zulip.com,cordelia@zulip.com,
we now properly treat that the same way as pm-with:iago@zulip.com.
Before this fix, the query would initially go through the
huddle code path. The symptom wasn't completely obvious, as
eventually a deeper function would return a recipient id
corresponding to a single PM with @iago@zulip.com, but we would
only get messages where iago was the recipient, and not any
messages where he was the sender to cordelia.
I put the helper function for this in zerver/lib/addressee, which
is somewhat speculative. Eventually, we'll want pm-with queries
to allow for user ids, and I imagine there will be some shared
logic with other Addressee code in terms of how we handle these
strings. The way we deal with lists of emails/users for various
endpoints is kind of haphazard in the current code, although
granted it's mostly just repeating the same simple patterns. It
would be nice for some of this code to converge a bit. This
affects new messages, typing indicators, search filters, etc.,
and some endpoints have strange legacy stuff like supporting
JSON-encoded lists, so it's not trivial to clean this up.
Tweaked by tabbott to add some additional tests.
2018-10-12 17:56:46 +02:00
2021-02-12 08:19:30 +01:00
def test_add_term_using_pm_with_operator_more_than_one_user_as_operand_and_negated (
self ,
) - > None :
2021-02-12 08:20:45 +01:00
two_others = " , " . join (
2021-02-12 08:19:30 +01:00
[
2021-02-12 08:20:45 +01:00
self . example_user ( " cordelia " ) . email ,
self . example_user ( " othello " ) . email ,
2021-02-12 08:19:30 +01:00
]
)
2021-02-12 08:20:45 +01:00
term = dict ( operator = " pm-with " , operand = two_others , negated = True )
self . _do_add_term_test ( term , " WHERE recipient_id != %(recipient_id_1)s " )
2016-06-21 21:05:44 +02:00
narrow: Handle spurious emails in pm-with searches.
If cordelia searches on pm-with:iago@zulip.com,cordelia@zulip.com,
we now properly treat that the same way as pm-with:iago@zulip.com.
Before this fix, the query would initially go through the
huddle code path. The symptom wasn't completely obvious, as
eventually a deeper function would return a recipient id
corresponding to a single PM with @iago@zulip.com, but we would
only get messages where iago was the recipient, and not any
messages where he was the sender to cordelia.
I put the helper function for this in zerver/lib/addressee, which
is somewhat speculative. Eventually, we'll want pm-with queries
to allow for user ids, and I imagine there will be some shared
logic with other Addressee code in terms of how we handle these
strings. The way we deal with lists of emails/users for various
endpoints is kind of haphazard in the current code, although
granted it's mostly just repeating the same simple patterns. It
would be nice for some of this code to converge a bit. This
affects new messages, typing indicators, search filters, etc.,
and some endpoints have strange legacy stuff like supporting
JSON-encoded lists, so it's not trivial to clean this up.
Tweaked by tabbott to add some additional tests.
2018-10-12 17:56:46 +02:00
def test_add_term_using_pm_with_operator_with_comma_noise ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " pm-with " , operand = " ,,, ,,, , " )
2016-06-21 21:05:44 +02:00
self . assertRaises ( BadNarrowOperator , self . _build_query , term )
2021-02-12 08:19:30 +01:00
def test_add_term_using_pm_with_operator_with_existing_and_non_existing_user_as_operand (
self ,
) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " pm-with " , operand = self . othello_email + " ,non-existing@zulip.com " )
2016-06-21 21:05:44 +02:00
self . assertRaises ( BadNarrowOperator , self . _build_query , term )
2017-11-05 10:51:25 +01:00
def test_add_term_using_id_operator ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " id " , operand = 555 )
self . _do_add_term_test ( term , " WHERE id = %(param_1)s " )
2016-06-21 21:05:44 +02:00
2018-11-07 00:53:02 +01:00
def test_add_term_using_id_operator_invalid ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " id " , operand = " " )
2018-11-07 00:53:02 +01:00
self . assertRaises ( BadNarrowOperator , self . _build_query , term )
2021-02-12 08:20:45 +01:00
term = dict ( operator = " id " , operand = " notanint " )
2018-11-07 00:53:02 +01:00
self . assertRaises ( BadNarrowOperator , self . _build_query , term )
2017-11-19 04:02:03 +01:00
def test_add_term_using_id_operator_and_negated ( self ) - > None : # NEGATED
2021-02-12 08:20:45 +01:00
term = dict ( operator = " id " , operand = 555 , negated = True )
self . _do_add_term_test ( term , " WHERE id != %(param_1)s " )
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def test_add_term_using_group_pm_operator_and_not_the_same_user_as_operand ( self ) - > None :
2018-02-27 00:10:14 +01:00
# Test wtihout any such group PM threads existing
2021-02-12 08:20:45 +01:00
term = dict ( operator = " group-pm-with " , operand = self . othello_email )
self . _do_add_term_test ( term , " WHERE 1 != 1 " )
2017-03-23 23:35:37 +01:00
2018-02-27 00:10:14 +01:00
# Test with at least one such group PM thread existing
2021-02-12 08:19:30 +01:00
self . send_huddle_message (
self . user_profile , [ self . example_user ( " othello " ) , self . example_user ( " cordelia " ) ]
)
2018-02-27 00:10:14 +01:00
2021-02-12 08:20:45 +01:00
term = dict ( operator = " group-pm-with " , operand = self . othello_email )
self . _do_add_term_test ( term , " WHERE recipient_id IN ( %(recipient_id_1)s ) " )
2018-02-27 00:10:14 +01:00
2017-11-19 04:02:03 +01:00
def test_add_term_using_group_pm_operator_not_the_same_user_as_operand_and_negated (
2021-02-12 08:19:30 +01:00
self ,
) - > None : # NEGATED
2021-02-12 08:20:45 +01:00
term = dict ( operator = " group-pm-with " , operand = self . othello_email , negated = True )
self . _do_add_term_test ( term , " WHERE 1 = 1 " )
2017-03-23 23:35:37 +01:00
2017-11-05 10:51:25 +01:00
def test_add_term_using_group_pm_operator_with_non_existing_user_as_operand ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " group-pm-with " , operand = " non-existing@zulip.com " )
2017-03-23 23:35:37 +01:00
self . assertRaises ( BadNarrowOperator , self . _build_query , term )
2016-04-24 17:08:51 +02:00
@override_settings ( USING_PGROONGA = False )
2017-11-05 10:51:25 +01:00
def test_add_term_using_search_operator ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " search " , operand = ' " french fries " ' )
2021-02-12 08:19:30 +01:00
self . _do_add_term_test (
term ,
2021-02-12 08:20:45 +01:00
" WHERE (content ILIKE %(content_1)s OR subject ILIKE %(subject_1)s ) AND (search_tsvector @@ plainto_tsquery( %(param_4)s , %(param_5)s )) " ,
2021-02-12 08:19:30 +01:00
)
2016-06-21 21:05:44 +02:00
2016-04-24 17:08:51 +02:00
@override_settings ( USING_PGROONGA = False )
2021-02-12 08:19:30 +01:00
def test_add_term_using_search_operator_and_negated ( self ) - > None : # NEGATED
2021-02-12 08:20:45 +01:00
term = dict ( operator = " search " , operand = ' " french fries " ' , negated = True )
2021-02-12 08:19:30 +01:00
self . _do_add_term_test (
term ,
2021-02-12 08:20:45 +01:00
" WHERE NOT (content ILIKE %(content_1)s OR subject ILIKE %(subject_1)s ) AND NOT (search_tsvector @@ plainto_tsquery( %(param_4)s , %(param_5)s )) " ,
2021-02-12 08:19:30 +01:00
)
2016-06-21 21:05:44 +02:00
2016-04-24 17:08:51 +02:00
@override_settings ( USING_PGROONGA = True )
2017-11-05 10:51:25 +01:00
def test_add_term_using_search_operator_pgroonga ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " search " , operand = ' " french fries " ' )
self . _do_add_term_test ( term , " WHERE search_pgroonga &@~ escape_html( %(escape_html_1)s ) " )
2016-04-24 17:08:51 +02:00
@override_settings ( USING_PGROONGA = True )
2021-02-12 08:19:30 +01:00
def test_add_term_using_search_operator_and_negated_pgroonga ( self ) - > None : # NEGATED
2021-02-12 08:20:45 +01:00
term = dict ( operator = " search " , operand = ' " french fries " ' , negated = True )
2021-02-12 08:19:30 +01:00
self . _do_add_term_test (
2021-02-12 08:20:45 +01:00
term , " WHERE NOT (search_pgroonga &@~ escape_html( %(escape_html_1)s )) "
2021-02-12 08:19:30 +01:00
)
2016-04-24 17:08:51 +02:00
2017-11-05 10:51:25 +01:00
def test_add_term_using_has_operator_and_attachment_operand ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " has " , operand = " attachment " )
self . _do_add_term_test ( term , " WHERE has_attachment " )
2016-06-21 21:05:44 +02:00
2021-02-12 08:19:30 +01:00
def test_add_term_using_has_operator_attachment_operand_and_negated ( self ) - > None : # NEGATED
2021-02-12 08:20:45 +01:00
term = dict ( operator = " has " , operand = " attachment " , negated = True )
self . _do_add_term_test ( term , " WHERE NOT has_attachment " )
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def test_add_term_using_has_operator_and_image_operand ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " has " , operand = " image " )
self . _do_add_term_test ( term , " WHERE has_image " )
2016-06-21 21:05:44 +02:00
2021-02-12 08:19:30 +01:00
def test_add_term_using_has_operator_image_operand_and_negated ( self ) - > None : # NEGATED
2021-02-12 08:20:45 +01:00
term = dict ( operator = " has " , operand = " image " , negated = True )
self . _do_add_term_test ( term , " WHERE NOT has_image " )
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def test_add_term_using_has_operator_and_link_operand ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " has " , operand = " link " )
self . _do_add_term_test ( term , " WHERE has_link " )
2016-06-21 21:05:44 +02:00
2021-02-12 08:19:30 +01:00
def test_add_term_using_has_operator_link_operand_and_negated ( self ) - > None : # NEGATED
2021-02-12 08:20:45 +01:00
term = dict ( operator = " has " , operand = " link " , negated = True )
self . _do_add_term_test ( term , " WHERE NOT has_link " )
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def test_add_term_using_has_operator_non_supported_operand_should_raise_error ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " has " , operand = " non_supported " )
2016-06-21 21:05:44 +02:00
self . assertRaises ( BadNarrowOperator , self . _build_query , term )
2017-11-05 10:51:25 +01:00
def test_add_term_using_in_operator ( self ) - > None :
2021-02-12 08:20:45 +01:00
mute_stream ( self . realm , self . user_profile , " Verona " )
term = dict ( operator = " in " , operand = " home " )
self . _do_add_term_test ( term , " WHERE recipient_id NOT IN ( %(recipient_id_1)s ) " )
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def test_add_term_using_in_operator_and_negated ( self ) - > None :
2016-06-21 21:05:44 +02:00
# negated = True should not change anything
2021-02-12 08:20:45 +01:00
mute_stream ( self . realm , self . user_profile , " Verona " )
term = dict ( operator = " in " , operand = " home " , negated = True )
self . _do_add_term_test ( term , " WHERE recipient_id NOT IN ( %(recipient_id_1)s ) " )
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def test_add_term_using_in_operator_and_all_operand ( self ) - > None :
2021-02-12 08:20:45 +01:00
mute_stream ( self . realm , self . user_profile , " Verona " )
term = dict ( operator = " in " , operand = " all " )
2016-06-21 21:05:44 +02:00
query = self . _build_query ( term )
2021-02-12 08:20:45 +01:00
self . assertEqual ( get_sqlalchemy_sql ( query ) , " SELECT id \n FROM zerver_message " )
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def test_add_term_using_in_operator_all_operand_and_negated ( self ) - > None :
2016-06-21 21:05:44 +02:00
# negated = True should not change anything
2021-02-12 08:20:45 +01:00
mute_stream ( self . realm , self . user_profile , " Verona " )
term = dict ( operator = " in " , operand = " all " , negated = True )
2016-06-21 21:05:44 +02:00
query = self . _build_query ( term )
2021-02-12 08:20:45 +01:00
self . assertEqual ( get_sqlalchemy_sql ( query ) , " SELECT id \n FROM zerver_message " )
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def test_add_term_using_in_operator_and_not_defined_operand ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " in " , operand = " not_defined " )
2016-06-21 21:05:44 +02:00
self . assertRaises ( BadNarrowOperator , self . _build_query , term )
2017-11-05 10:51:25 +01:00
def test_add_term_using_near_operator ( self ) - > None :
2021-02-12 08:20:45 +01:00
term = dict ( operator = " near " , operand = " operand " )
2016-06-21 21:05:44 +02:00
query = self . _build_query ( term )
2021-02-12 08:20:45 +01:00
self . assertEqual ( get_sqlalchemy_sql ( query ) , " SELECT id \n FROM zerver_message " )
2016-06-21 21:05:44 +02:00
2020-08-04 19:33:43 +02:00
def test_add_term_non_web_public_stream_in_web_public_query ( self ) - > None :
2021-02-12 08:20:45 +01:00
self . make_stream ( " non-web-public-stream " , realm = self . realm )
term = dict ( operator = " stream " , operand = " non-web-public-stream " )
builder = NarrowBuilder ( self . user_profile , column ( " id " ) , self . realm , True )
2020-08-04 19:33:43 +02:00
2020-11-16 22:52:27 +01:00
def _build_query ( term : Dict [ str , Any ] ) - > Select :
2020-08-04 19:33:43 +02:00
return builder . add_term ( self . raw_query , term )
self . assertRaises ( BadNarrowOperator , _build_query , term )
2021-02-12 08:19:30 +01:00
def _do_add_term_test (
self , term : Dict [ str , Any ] , where_clause : str , params : Optional [ Dict [ str , Any ] ] = None
) - > None :
2017-08-16 15:20:11 +02:00
query = self . _build_query ( term )
if params is not None :
2019-08-28 22:35:22 +02:00
actual_params = get_sqlalchemy_query_params ( query )
2017-08-16 15:20:11 +02:00
self . assertEqual ( actual_params , params )
2019-08-28 22:35:22 +02:00
self . assertIn ( where_clause , get_sqlalchemy_sql ( query ) )
2016-06-21 21:05:44 +02:00
2020-11-16 22:52:27 +01:00
def _build_query ( self , term : Dict [ str , Any ] ) - > Select :
2016-06-21 21:05:44 +02:00
return self . builder . add_term ( self . raw_query , term )
2021-02-12 08:19:30 +01:00
2020-07-01 04:19:54 +02:00
class NarrowLibraryTest ( ZulipTestCase ) :
2017-11-05 10:51:25 +01:00
def test_build_narrow_filter ( self ) - > None :
2021-02-12 08:20:45 +01:00
fixtures_path = os . path . join ( os . path . dirname ( __file__ ) , " fixtures/narrow.json " )
2020-08-07 01:09:47 +02:00
with open ( fixtures_path , " rb " ) as f :
scenarios = orjson . loads ( f . read ( ) )
2021-07-13 20:23:36 +02:00
self . assert_length ( scenarios , 10 )
2016-07-16 22:56:33 +02:00
for scenario in scenarios :
2021-02-12 08:20:45 +01:00
narrow = scenario [ " narrow " ]
accept_events = scenario [ " accept_events " ]
reject_events = scenario [ " reject_events " ]
2016-07-16 22:56:33 +02:00
narrow_filter = build_narrow_filter ( narrow )
for e in accept_events :
self . assertTrue ( narrow_filter ( e ) )
for e in reject_events :
self . assertFalse ( narrow_filter ( e ) )
2017-11-05 10:51:25 +01:00
def test_build_narrow_filter_invalid ( self ) - > None :
2017-03-05 08:56:57 +01:00
with self . assertRaises ( JsonableError ) :
build_narrow_filter ( [ " invalid_operator " , " operand " ] )
2018-05-21 17:44:00 +02:00
def test_is_web_public_compatible ( self ) - > None :
self . assertTrue ( is_web_public_compatible ( [ ] ) )
2021-02-12 08:19:30 +01:00
self . assertTrue ( is_web_public_compatible ( [ { " operator " : " has " , " operand " : " attachment " } ] ) )
self . assertTrue ( is_web_public_compatible ( [ { " operator " : " has " , " operand " : " image " } ] ) )
self . assertTrue ( is_web_public_compatible ( [ { " operator " : " search " , " operand " : " magic " } ] ) )
self . assertTrue ( is_web_public_compatible ( [ { " operator " : " near " , " operand " : " 15 " } ] ) )
self . assertTrue (
is_web_public_compatible (
[ { " operator " : " id " , " operand " : " 15 " } , { " operator " : " has " , " operand " : " attachment " } ]
)
)
self . assertTrue (
is_web_public_compatible ( [ { " operator " : " sender " , " operand " : " hamlet@zulip.com " } ] )
)
self . assertFalse (
is_web_public_compatible ( [ { " operator " : " pm-with " , " operand " : " hamlet@zulip.com " } ] )
)
self . assertFalse (
is_web_public_compatible ( [ { " operator " : " group-pm-with " , " operand " : " hamlet@zulip.com " } ] )
)
self . assertTrue ( is_web_public_compatible ( [ { " operator " : " stream " , " operand " : " Denmark " } ] ) )
self . assertTrue (
is_web_public_compatible (
[
{ " operator " : " stream " , " operand " : " Denmark " } ,
{ " operator " : " topic " , " operand " : " logic " } ,
]
)
)
self . assertFalse ( is_web_public_compatible ( [ { " operator " : " is " , " operand " : " starred " } ] ) )
self . assertFalse ( is_web_public_compatible ( [ { " operator " : " is " , " operand " : " private " } ] ) )
self . assertTrue ( is_web_public_compatible ( [ { " operator " : " streams " , " operand " : " public " } ] ) )
2018-05-21 17:44:00 +02:00
# Malformed input not allowed
self . assertFalse ( is_web_public_compatible ( [ { " operator " : " has " } ] ) )
2021-02-12 08:19:30 +01:00
2016-08-23 02:08:42 +02:00
class IncludeHistoryTest ( ZulipTestCase ) :
2017-11-05 10:51:25 +01:00
def test_ok_to_include_history ( self ) - > None :
2018-04-05 00:06:53 +02:00
user_profile = self . example_user ( " hamlet " )
2021-02-12 08:20:45 +01:00
self . make_stream ( " public_stream " , realm = user_profile . realm )
2016-06-21 21:05:44 +02:00
# Negated stream searches should not include history.
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " stream " , operand = " public_stream " , negated = True ) ,
2016-06-21 21:05:44 +02:00
]
2020-08-04 19:33:43 +02:00
self . assertFalse ( ok_to_include_history ( narrow , user_profile , False ) )
2016-06-21 21:05:44 +02:00
2019-08-13 20:20:36 +02:00
# streams:public searches should include history for non-guest members.
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " streams " , operand = " public " ) ,
2019-08-13 20:20:36 +02:00
]
2020-08-04 19:33:43 +02:00
self . assertTrue ( ok_to_include_history ( narrow , user_profile , False ) )
2019-08-13 20:20:36 +02:00
# Negated -streams:public searches should not include history.
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " streams " , operand = " public " , negated = True ) ,
2019-08-13 20:20:36 +02:00
]
2020-08-04 19:33:43 +02:00
self . assertFalse ( ok_to_include_history ( narrow , user_profile , False ) )
2019-08-13 20:20:36 +02:00
2016-06-21 21:05:44 +02:00
# Definitely forbid seeing history on private streams.
2021-02-12 08:20:45 +01:00
self . make_stream ( " private_stream " , realm = user_profile . realm , invite_only = True )
2018-04-05 00:28:14 +02:00
subscribed_user_profile = self . example_user ( " cordelia " )
2021-02-12 08:20:45 +01:00
self . subscribe ( subscribed_user_profile , " private_stream " )
2016-06-21 21:05:44 +02:00
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " stream " , operand = " private_stream " ) ,
2016-06-21 21:05:44 +02:00
]
2020-08-04 19:33:43 +02:00
self . assertFalse ( ok_to_include_history ( narrow , user_profile , False ) )
2016-06-21 21:05:44 +02:00
2018-04-27 01:00:26 +02:00
# Verify that with stream.history_public_to_subscribers, subscribed
# users can access history.
2021-02-12 08:19:30 +01:00
self . make_stream (
2021-02-12 08:20:45 +01:00
" private_stream_2 " ,
2021-02-12 08:19:30 +01:00
realm = user_profile . realm ,
invite_only = True ,
history_public_to_subscribers = True ,
)
2018-04-27 01:00:26 +02:00
subscribed_user_profile = self . example_user ( " cordelia " )
2021-02-12 08:20:45 +01:00
self . subscribe ( subscribed_user_profile , " private_stream_2 " )
2018-04-27 01:00:26 +02:00
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " stream " , operand = " private_stream_2 " ) ,
2018-04-27 01:00:26 +02:00
]
2020-08-04 19:33:43 +02:00
self . assertFalse ( ok_to_include_history ( narrow , user_profile , False ) )
self . assertTrue ( ok_to_include_history ( narrow , subscribed_user_profile , False ) )
2018-04-05 00:28:14 +02:00
2016-06-21 21:05:44 +02:00
# History doesn't apply to PMs.
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " is " , operand = " private " ) ,
2016-06-21 21:05:44 +02:00
]
2020-08-04 19:33:43 +02:00
self . assertFalse ( ok_to_include_history ( narrow , user_profile , False ) )
2016-06-21 21:05:44 +02:00
2017-06-19 03:21:48 +02:00
# History doesn't apply to unread messages.
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " is " , operand = " unread " ) ,
2017-06-19 03:21:48 +02:00
]
2020-08-04 19:33:43 +02:00
self . assertFalse ( ok_to_include_history ( narrow , user_profile , False ) )
2017-06-19 03:21:48 +02:00
2016-06-21 21:05:44 +02:00
# If we are looking for something like starred messages, there is
# no point in searching historical messages.
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " stream " , operand = " public_stream " ) ,
dict ( operator = " is " , operand = " starred " ) ,
2016-06-21 21:05:44 +02:00
]
2020-08-04 19:33:43 +02:00
self . assertFalse ( ok_to_include_history ( narrow , user_profile , False ) )
2016-06-21 21:05:44 +02:00
2019-08-13 20:20:36 +02:00
# No point in searching history for is operator even if included with
# streams:public
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " streams " , operand = " public " ) ,
dict ( operator = " is " , operand = " mentioned " ) ,
2019-08-13 20:20:36 +02:00
]
2020-08-04 19:33:43 +02:00
self . assertFalse ( ok_to_include_history ( narrow , user_profile , False ) )
2019-08-13 20:20:36 +02:00
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " streams " , operand = " public " ) ,
dict ( operator = " is " , operand = " unread " ) ,
2019-08-13 20:20:36 +02:00
]
2020-08-04 19:33:43 +02:00
self . assertFalse ( ok_to_include_history ( narrow , user_profile , False ) )
2019-08-13 20:20:36 +02:00
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " streams " , operand = " public " ) ,
dict ( operator = " is " , operand = " alerted " ) ,
2019-08-13 20:20:36 +02:00
]
2020-08-04 19:33:43 +02:00
self . assertFalse ( ok_to_include_history ( narrow , user_profile , False ) )
2021-07-13 20:23:36 +02:00
narrow = [
dict ( operator = " streams " , operand = " public " ) ,
dict ( operator = " is " , operand = " resolved " ) ,
]
self . assertFalse ( ok_to_include_history ( narrow , user_profile , False ) )
2019-08-13 20:20:36 +02:00
2016-06-21 21:05:44 +02:00
# simple True case
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " stream " , operand = " public_stream " ) ,
2016-06-21 21:05:44 +02:00
]
2020-08-04 19:33:43 +02:00
self . assertTrue ( ok_to_include_history ( narrow , user_profile , False ) )
2016-06-21 21:05:44 +02:00
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " stream " , operand = " public_stream " ) ,
dict ( operator = " topic " , operand = " whatever " ) ,
dict ( operator = " search " , operand = " needle in haystack " ) ,
2016-06-21 21:05:44 +02:00
]
2020-08-04 19:33:43 +02:00
self . assertTrue ( ok_to_include_history ( narrow , user_profile , False ) )
2016-06-21 21:05:44 +02:00
2018-05-02 17:00:06 +02:00
# Tests for guest user
guest_user_profile = self . example_user ( " polonius " )
# Using 'Cordelia' to compare between a guest and a normal user
subscribed_user_profile = self . example_user ( " cordelia " )
2019-08-13 20:20:36 +02:00
# streams:public searches should not include history for guest members.
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " streams " , operand = " public " ) ,
2019-08-13 20:20:36 +02:00
]
2020-08-04 19:33:43 +02:00
self . assertFalse ( ok_to_include_history ( narrow , guest_user_profile , False ) )
2019-08-13 20:20:36 +02:00
2018-05-02 17:00:06 +02:00
# Guest user can't access public stream
2021-02-12 08:20:45 +01:00
self . subscribe ( subscribed_user_profile , " public_stream_2 " )
2018-05-02 17:00:06 +02:00
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " stream " , operand = " public_stream_2 " ) ,
2018-05-02 17:00:06 +02:00
]
2020-08-04 19:33:43 +02:00
self . assertFalse ( ok_to_include_history ( narrow , guest_user_profile , False ) )
self . assertTrue ( ok_to_include_history ( narrow , subscribed_user_profile , False ) )
2018-05-02 17:00:06 +02:00
# Definitely, a guest user can't access the unsubscribed private stream
2021-02-12 08:20:45 +01:00
self . subscribe ( subscribed_user_profile , " private_stream_3 " )
2018-05-02 17:00:06 +02:00
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " stream " , operand = " private_stream_3 " ) ,
2018-05-02 17:00:06 +02:00
]
2020-08-04 19:33:43 +02:00
self . assertFalse ( ok_to_include_history ( narrow , guest_user_profile , False ) )
self . assertTrue ( ok_to_include_history ( narrow , subscribed_user_profile , False ) )
2018-05-02 17:00:06 +02:00
# Guest user can access (history of) subscribed private streams
2021-02-12 08:20:45 +01:00
self . subscribe ( guest_user_profile , " private_stream_4 " )
self . subscribe ( subscribed_user_profile , " private_stream_4 " )
2018-05-02 17:00:06 +02:00
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " stream " , operand = " private_stream_4 " ) ,
2018-05-02 17:00:06 +02:00
]
2020-08-04 19:33:43 +02:00
self . assertTrue ( ok_to_include_history ( narrow , guest_user_profile , False ) )
self . assertTrue ( ok_to_include_history ( narrow , subscribed_user_profile , False ) )
2018-05-02 17:00:06 +02:00
2021-02-12 08:19:30 +01:00
2018-03-15 11:20:55 +01:00
class PostProcessTest ( ZulipTestCase ) :
def test_basics ( self ) - > None :
2021-02-12 08:19:30 +01:00
def verify (
in_ids : List [ int ] ,
num_before : int ,
num_after : int ,
first_visible_message_id : int ,
anchor : int ,
anchored_to_left : bool ,
anchored_to_right : bool ,
out_ids : List [ int ] ,
found_anchor : bool ,
found_oldest : bool ,
found_newest : bool ,
history_limited : bool ,
) - > None :
2018-03-15 11:20:55 +01:00
in_rows = [ [ row_id ] for row_id in in_ids ]
out_rows = [ [ row_id ] for row_id in out_ids ]
info = post_process_limited_query (
rows = in_rows ,
num_before = num_before ,
num_after = num_after ,
anchor = anchor ,
anchored_to_left = anchored_to_left ,
anchored_to_right = anchored_to_right ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = first_visible_message_id ,
2018-03-15 11:20:55 +01:00
)
2021-02-12 08:20:45 +01:00
self . assertEqual ( info [ " rows " ] , out_rows )
self . assertEqual ( info [ " found_anchor " ] , found_anchor )
self . assertEqual ( info [ " found_newest " ] , found_newest )
self . assertEqual ( info [ " found_oldest " ] , found_oldest )
self . assertEqual ( info [ " history_limited " ] , history_limited )
2018-03-15 11:20:55 +01:00
2018-09-19 14:23:02 +02:00
# typical 2-sided query, with a bunch of tests for different
# values of first_visible_message_id.
2018-03-15 11:20:55 +01:00
anchor = 10
verify (
in_ids = [ 8 , 9 , anchor , 11 , 12 ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 0 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-03-15 11:20:55 +01:00
out_ids = [ 8 , 9 , 10 , 11 , 12 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = True ,
found_oldest = False ,
found_newest = False ,
history_limited = False ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ 8 , 9 , anchor , 11 , 12 ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 8 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
out_ids = [ 8 , 9 , 10 , 11 , 12 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = True ,
found_oldest = False ,
found_newest = False ,
history_limited = False ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ 8 , 9 , anchor , 11 , 12 ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 9 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
out_ids = [ 9 , 10 , 11 , 12 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = True ,
found_oldest = True ,
found_newest = False ,
history_limited = True ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ 8 , 9 , anchor , 11 , 12 ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 10 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
out_ids = [ 10 , 11 , 12 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = True ,
found_oldest = True ,
found_newest = False ,
history_limited = True ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ 8 , 9 , anchor , 11 , 12 ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 11 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
out_ids = [ 11 , 12 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = False ,
found_oldest = True ,
found_newest = False ,
history_limited = True ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ 8 , 9 , anchor , 11 , 12 ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 12 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
out_ids = [ 12 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = False ,
found_oldest = True ,
found_newest = True ,
history_limited = True ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ 8 , 9 , anchor , 11 , 12 ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 13 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
out_ids = [ ] ,
2021-02-12 08:19:30 +01:00
found_anchor = False ,
found_oldest = True ,
found_newest = True ,
history_limited = True ,
2018-03-15 11:20:55 +01:00
)
# typical 2-sided query missing anchor and grabbing an extra row
anchor = 10
verify (
in_ids = [ 7 , 9 , 11 , 13 , 15 ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 2 ,
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 0 ,
2018-03-15 11:20:55 +01:00
out_ids = [ 7 , 9 , 11 , 13 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = False ,
found_oldest = False ,
found_newest = False ,
history_limited = False ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ 7 , 9 , 11 , 13 , 15 ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 10 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
out_ids = [ 11 , 13 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = False ,
found_oldest = True ,
found_newest = False ,
history_limited = True ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ 7 , 9 , 11 , 13 , 15 ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 9 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
out_ids = [ 9 , 11 , 13 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = False ,
found_oldest = True ,
found_newest = False ,
history_limited = True ,
2018-03-15 11:20:55 +01:00
)
# 2-sided query with old anchor
anchor = 100
verify (
in_ids = [ 50 , anchor , 150 , 200 ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 0 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-03-15 11:20:55 +01:00
out_ids = [ 50 , 100 , 150 , 200 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = True ,
found_oldest = True ,
found_newest = False ,
history_limited = False ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ 50 , anchor , 150 , 200 ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = anchor ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
out_ids = [ 100 , 150 , 200 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = True ,
found_oldest = True ,
found_newest = False ,
history_limited = True ,
2018-03-15 11:20:55 +01:00
)
# 2-sided query with new anchor
anchor = 900
verify (
in_ids = [ 700 , 800 , anchor , 1000 ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 0 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-03-15 11:20:55 +01:00
out_ids = [ 700 , 800 , 900 , 1000 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = True ,
found_oldest = False ,
found_newest = True ,
history_limited = False ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ 700 , 800 , anchor , 1000 ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = anchor ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
out_ids = [ 900 , 1000 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = True ,
found_oldest = True ,
found_newest = True ,
history_limited = True ,
2018-03-15 11:20:55 +01:00
)
# left-sided query with old anchor
anchor = 100
verify (
in_ids = [ 50 , anchor ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 0 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 0 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-03-15 11:20:55 +01:00
out_ids = [ 50 , 100 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = True ,
found_oldest = True ,
found_newest = False ,
history_limited = False ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ 50 , anchor ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 0 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = anchor ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
out_ids = [ 100 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = True ,
found_oldest = True ,
found_newest = False ,
history_limited = True ,
2018-03-15 11:20:55 +01:00
)
# left-sided query with new anchor
anchor = 900
verify (
in_ids = [ 700 , 800 , anchor ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 0 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 0 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-03-15 11:20:55 +01:00
out_ids = [ 700 , 800 , 900 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = True ,
found_oldest = False ,
found_newest = False ,
history_limited = False ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ 700 , 800 , anchor ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 0 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = anchor ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
out_ids = [ 900 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = True ,
found_oldest = True ,
found_newest = False ,
history_limited = True ,
2018-03-15 11:20:55 +01:00
)
# left-sided query with new anchor and extra row
anchor = 900
verify (
in_ids = [ 600 , 700 , 800 , anchor ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 0 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 0 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-03-15 11:20:55 +01:00
out_ids = [ 700 , 800 , 900 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = True ,
found_oldest = False ,
found_newest = False ,
history_limited = False ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ 600 , 700 , 800 , anchor ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 0 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = anchor ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
out_ids = [ 900 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = True ,
found_oldest = True ,
found_newest = False ,
history_limited = True ,
2018-03-15 11:20:55 +01:00
)
# left-sided query anchored to the right
2020-07-05 01:03:01 +02:00
anchor = LARGER_THAN_MAX_MESSAGE_ID
2018-03-15 11:20:55 +01:00
verify (
in_ids = [ 900 , 1000 ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 0 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 0 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = True ,
2018-03-15 11:20:55 +01:00
out_ids = [ 900 , 1000 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = False ,
found_oldest = False ,
found_newest = True ,
history_limited = False ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ 900 , 1000 ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 0 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 1000 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = True ,
2018-09-19 14:23:02 +02:00
out_ids = [ 1000 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = False ,
found_oldest = True ,
found_newest = True ,
history_limited = True ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ 900 , 1000 ] ,
2021-02-12 08:19:30 +01:00
num_before = 2 ,
num_after = 0 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 1100 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = True ,
2018-09-19 14:23:02 +02:00
out_ids = [ ] ,
2021-02-12 08:19:30 +01:00
found_anchor = False ,
found_oldest = True ,
found_newest = True ,
history_limited = True ,
2018-03-15 11:20:55 +01:00
)
# right-sided query with old anchor
anchor = 100
verify (
in_ids = [ anchor , 200 , 300 , 400 ] ,
2021-02-12 08:19:30 +01:00
num_before = 0 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 0 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
out_ids = [ 100 , 200 , 300 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = True ,
found_oldest = False ,
found_newest = False ,
history_limited = False ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ anchor , 200 , 300 , 400 ] ,
2021-02-12 08:19:30 +01:00
num_before = 0 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = anchor ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-03-15 11:20:55 +01:00
out_ids = [ 100 , 200 , 300 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = True ,
found_oldest = False ,
found_newest = False ,
history_limited = False ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ anchor , 200 , 300 , 400 ] ,
2021-02-12 08:19:30 +01:00
num_before = 0 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 300 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
out_ids = [ 300 , 400 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = False ,
found_oldest = False ,
2018-09-19 14:23:02 +02:00
# BUG: history_limited should be False here.
2021-02-12 08:19:30 +01:00
found_newest = False ,
history_limited = False ,
2018-03-15 11:20:55 +01:00
)
# right-sided query with new anchor
anchor = 900
verify (
in_ids = [ anchor , 1000 ] ,
2021-02-12 08:19:30 +01:00
num_before = 0 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 0 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-03-15 11:20:55 +01:00
out_ids = [ 900 , 1000 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = True ,
found_oldest = False ,
found_newest = True ,
history_limited = False ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ anchor , 1000 ] ,
2021-02-12 08:19:30 +01:00
num_before = 0 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = anchor ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
out_ids = [ 900 , 1000 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = True ,
found_oldest = False ,
found_newest = True ,
history_limited = False ,
2018-03-15 11:20:55 +01:00
)
# right-sided query with non-matching anchor
anchor = 903
verify (
in_ids = [ 1000 , 1100 , 1200 ] ,
2021-02-12 08:19:30 +01:00
num_before = 0 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 0 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
out_ids = [ 1000 , 1100 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = False ,
found_oldest = False ,
found_newest = False ,
history_limited = False ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ 1000 , 1100 , 1200 ] ,
2021-02-12 08:19:30 +01:00
num_before = 0 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = anchor ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
out_ids = [ 1000 , 1100 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = False ,
found_oldest = False ,
found_newest = False ,
history_limited = False ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ 1000 , 1100 , 1200 ] ,
2021-02-12 08:19:30 +01:00
num_before = 0 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 1000 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-03-15 11:20:55 +01:00
out_ids = [ 1000 , 1100 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = False ,
found_oldest = False ,
found_newest = False ,
history_limited = False ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ 1000 , 1100 , 1200 ] ,
2021-02-12 08:19:30 +01:00
num_before = 0 ,
num_after = 2 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 1100 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
out_ids = [ 1100 , 1200 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = False ,
found_oldest = False ,
2018-09-19 14:23:02 +02:00
# BUG: history_limited should be False here.
2021-02-12 08:19:30 +01:00
found_newest = False ,
history_limited = False ,
2018-03-15 11:20:55 +01:00
)
# targeted query that finds row
anchor = 1000
verify (
in_ids = [ 1000 ] ,
2021-02-12 08:19:30 +01:00
num_before = 0 ,
num_after = 0 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 0 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
out_ids = [ 1000 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = True ,
found_oldest = False ,
found_newest = False ,
history_limited = False ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ 1000 ] ,
2021-02-12 08:19:30 +01:00
num_before = 0 ,
num_after = 0 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = anchor ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-03-15 11:20:55 +01:00
out_ids = [ 1000 ] ,
2021-02-12 08:19:30 +01:00
found_anchor = True ,
found_oldest = False ,
found_newest = False ,
history_limited = False ,
2018-09-19 14:23:02 +02:00
)
verify (
in_ids = [ 1000 ] ,
2021-02-12 08:19:30 +01:00
num_before = 0 ,
num_after = 0 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 1100 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-09-19 14:23:02 +02:00
out_ids = [ ] ,
2021-02-12 08:19:30 +01:00
found_anchor = False ,
found_oldest = False ,
found_newest = False ,
history_limited = False ,
2018-03-15 11:20:55 +01:00
)
# targeted query that finds nothing
anchor = 903
verify (
in_ids = [ ] ,
2021-02-12 08:19:30 +01:00
num_before = 0 ,
num_after = 0 ,
2018-09-19 14:23:02 +02:00
first_visible_message_id = 0 ,
2021-02-12 08:19:30 +01:00
anchor = anchor ,
anchored_to_left = False ,
anchored_to_right = False ,
2018-03-15 11:20:55 +01:00
out_ids = [ ] ,
2021-02-12 08:19:30 +01:00
found_anchor = False ,
found_oldest = False ,
found_newest = False ,
history_limited = False ,
2018-03-15 11:20:55 +01:00
)
2016-06-21 21:05:44 +02:00
2021-02-12 08:19:30 +01:00
class GetOldMessagesTest ( ZulipTestCase ) :
def get_and_check_messages (
self , modified_params : Dict [ str , Union [ str , int ] ] , * * kwargs : Any
) - > Dict [ str , Any ] :
python: Convert assignment type annotations to Python 3.6 style.
This commit was split by tabbott; this piece covers the vast majority
of files in Zulip, but excludes scripts/, tools/, and puppet/ to help
ensure we at least show the right error messages for Xenial systems.
We can likely further refine the remaining pieces with some testing.
Generated by com2ann, with whitespace fixes and various manual fixes
for runtime issues:
- invoiced_through: Optional[LicenseLedger] = models.ForeignKey(
+ invoiced_through: Optional["LicenseLedger"] = models.ForeignKey(
-_apns_client: Optional[APNsClient] = None
+_apns_client: Optional["APNsClient"] = None
- notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- signup_notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ signup_notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- author: Optional[UserProfile] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
+ author: Optional["UserProfile"] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
- bot_owner: Optional[UserProfile] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
+ bot_owner: Optional["UserProfile"] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
- default_sending_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
- default_events_register_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_sending_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_events_register_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
-descriptors_by_handler_id: Dict[int, ClientDescriptor] = {}
+descriptors_by_handler_id: Dict[int, "ClientDescriptor"] = {}
-worker_classes: Dict[str, Type[QueueProcessingWorker]] = {}
-queues: Dict[str, Dict[str, Type[QueueProcessingWorker]]] = {}
+worker_classes: Dict[str, Type["QueueProcessingWorker"]] = {}
+queues: Dict[str, Dict[str, Type["QueueProcessingWorker"]]] = {}
-AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional[LDAPSearch] = None
+AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional["LDAPSearch"] = None
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-22 01:09:50 +02:00
post_params : Dict [ str , Union [ str , int ] ] = { " anchor " : 1 , " num_before " : 1 , " num_after " : 1 }
2016-06-21 21:05:44 +02:00
post_params . update ( modified_params )
2021-02-12 08:19:30 +01:00
payload = self . client_get ( " /json/messages " , dict ( post_params ) , * * kwargs )
2016-07-24 16:50:30 +02:00
self . assert_json_success ( payload )
2021-02-12 08:19:30 +01:00
self . assertEqual (
set ( payload [ " Cache-Control " ] . split ( " , " ) ) ,
{ " must-revalidate " , " no-store " , " no-cache " , " max-age=0 " , " private " } ,
)
2019-10-02 00:10:30 +02:00
2020-08-07 01:09:47 +02:00
result = orjson . loads ( payload . content )
2016-06-21 21:05:44 +02:00
self . assertIn ( " messages " , result )
self . assertIsInstance ( result [ " messages " ] , list )
for message in result [ " messages " ] :
2021-02-12 08:19:30 +01:00
for field in (
" content " ,
" content_type " ,
" display_recipient " ,
" avatar_url " ,
" recipient_id " ,
" sender_full_name " ,
" timestamp " ,
" reactions " ,
) :
2016-06-21 21:05:44 +02:00
self . assertIn ( field , message )
2016-07-24 16:50:30 +02:00
return result
2021-02-12 08:19:30 +01:00
def message_visibility_test (
self , narrow : List [ Dict [ str , str ] ] , message_ids : List [ int ] , pivot_index : int
) - > None :
2018-03-15 11:21:36 +01:00
num_before = len ( message_ids )
search: Make `num_after`/`num_after` more consistent.
We now consistently set our query limits so that we get at
least `num_after` rows such that id > anchor. (Obviously, the
caveat is that if there aren't enough rows that fulfill the
query, we'll return the full set of rows, but that may be less
than `num_after`.) Likewise for `num_before`.
Before this change, we would sometimes return one too few rows
for narrow queries.
Now, we're still a bit broken, but in a more consistent way. If
we have a query that does not match the anchor row (which could
be true even for a non-narrow query), but which does match lots
of rows after the anchor, we'll return `num_after + 1` rows
on the right hand side, whether or not the query has narrow
parameters.
The off-by-one semantics here have probably been moot all along,
since our windows are approximate to begin with. If we set
num_after to 100, its just a rough performance optimization to
begin with, so it doesn't matter whether we return 99 or 101 rows,
as long as we set the anchor correctly on the subsequent query.
We will make the results more rigorous in a follow up commit.
2018-03-14 13:22:16 +01:00
2021-02-12 08:19:30 +01:00
post_params = dict (
narrow = orjson . dumps ( narrow ) . decode ( ) ,
num_before = num_before ,
num_after = 0 ,
anchor = LARGER_THAN_MAX_MESSAGE_ID ,
)
2018-01-02 18:33:28 +01:00
payload = self . client_get ( " /json/messages " , dict ( post_params ) )
self . assert_json_success ( payload )
2020-08-07 01:09:47 +02:00
result = orjson . loads ( payload . content )
2018-01-02 18:33:28 +01:00
2021-05-17 05:41:32 +02:00
self . assert_length ( result [ " messages " ] , len ( message_ids ) )
2018-01-02 18:33:28 +01:00
for message in result [ " messages " ] :
2021-02-12 08:19:30 +01:00
assert message [ " id " ] in message_ids
2018-01-02 18:33:28 +01:00
2020-09-03 05:32:15 +02:00
post_params . update ( num_before = len ( message_ids [ pivot_index : ] ) )
2018-03-15 11:58:25 +01:00
with first_visible_id_as ( message_ids [ pivot_index ] ) :
2018-01-02 18:33:28 +01:00
payload = self . client_get ( " /json/messages " , dict ( post_params ) )
2018-03-15 11:58:25 +01:00
2018-01-02 18:33:28 +01:00
self . assert_json_success ( payload )
2020-08-07 01:09:47 +02:00
result = orjson . loads ( payload . content )
2018-01-02 18:33:28 +01:00
2021-05-17 05:41:32 +02:00
self . assert_length ( result [ " messages " ] , len ( message_ids [ pivot_index : ] ) )
2018-01-02 18:33:28 +01:00
for message in result [ " messages " ] :
2021-02-12 08:19:30 +01:00
assert message [ " id " ] in message_ids
2018-01-02 18:33:28 +01:00
2019-08-13 20:20:36 +02:00
def get_query_ids ( self ) - > Dict [ str , Union [ int , str ] ] :
2021-02-12 08:20:45 +01:00
hamlet_user = self . example_user ( " hamlet " )
othello_user = self . example_user ( " othello " )
2016-06-21 21:05:44 +02:00
python: Convert assignment type annotations to Python 3.6 style.
This commit was split by tabbott; this piece covers the vast majority
of files in Zulip, but excludes scripts/, tools/, and puppet/ to help
ensure we at least show the right error messages for Xenial systems.
We can likely further refine the remaining pieces with some testing.
Generated by com2ann, with whitespace fixes and various manual fixes
for runtime issues:
- invoiced_through: Optional[LicenseLedger] = models.ForeignKey(
+ invoiced_through: Optional["LicenseLedger"] = models.ForeignKey(
-_apns_client: Optional[APNsClient] = None
+_apns_client: Optional["APNsClient"] = None
- notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- signup_notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ signup_notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- author: Optional[UserProfile] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
+ author: Optional["UserProfile"] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
- bot_owner: Optional[UserProfile] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
+ bot_owner: Optional["UserProfile"] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
- default_sending_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
- default_events_register_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_sending_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_events_register_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
-descriptors_by_handler_id: Dict[int, ClientDescriptor] = {}
+descriptors_by_handler_id: Dict[int, "ClientDescriptor"] = {}
-worker_classes: Dict[str, Type[QueueProcessingWorker]] = {}
-queues: Dict[str, Dict[str, Type[QueueProcessingWorker]]] = {}
+worker_classes: Dict[str, Type["QueueProcessingWorker"]] = {}
+queues: Dict[str, Dict[str, Type["QueueProcessingWorker"]]] = {}
-AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional[LDAPSearch] = None
+AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional["LDAPSearch"] = None
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-22 01:09:50 +02:00
query_ids : Dict [ str , Union [ int , str ] ] = { }
2016-06-21 21:05:44 +02:00
2021-02-12 08:20:45 +01:00
scotland_stream = get_stream ( " Scotland " , hamlet_user . realm )
query_ids [ " scotland_recipient " ] = scotland_stream . recipient_id
query_ids [ " hamlet_id " ] = hamlet_user . id
query_ids [ " othello_id " ] = othello_user . id
query_ids [ " hamlet_recipient " ] = hamlet_user . recipient_id
query_ids [ " othello_recipient " ] = othello_user . recipient_id
2021-02-12 08:19:30 +01:00
recipients = (
get_public_streams_queryset ( hamlet_user . realm )
. values_list ( " recipient_id " , flat = True )
2021-02-12 08:20:45 +01:00
. order_by ( " id " )
2021-02-12 08:19:30 +01:00
)
2021-02-12 08:20:45 +01:00
query_ids [ " public_streams_recipents " ] = " , " . join ( str ( r ) for r in recipients )
2016-06-21 21:05:44 +02:00
return query_ids
2017-11-05 10:51:25 +01:00
def test_content_types ( self ) - > None :
2017-10-21 03:25:39 +02:00
"""
Test old ` / json / messages ` returns reactions .
"""
2021-02-12 08:20:45 +01:00
self . login ( " hamlet " )
2017-10-21 03:25:39 +02:00
2018-05-10 19:00:29 +02:00
def get_content_type ( apply_markdown : bool ) - > str :
python: Convert assignment type annotations to Python 3.6 style.
This commit was split by tabbott; this piece covers the vast majority
of files in Zulip, but excludes scripts/, tools/, and puppet/ to help
ensure we at least show the right error messages for Xenial systems.
We can likely further refine the remaining pieces with some testing.
Generated by com2ann, with whitespace fixes and various manual fixes
for runtime issues:
- invoiced_through: Optional[LicenseLedger] = models.ForeignKey(
+ invoiced_through: Optional["LicenseLedger"] = models.ForeignKey(
-_apns_client: Optional[APNsClient] = None
+_apns_client: Optional["APNsClient"] = None
- notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- signup_notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ signup_notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- author: Optional[UserProfile] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
+ author: Optional["UserProfile"] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
- bot_owner: Optional[UserProfile] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
+ bot_owner: Optional["UserProfile"] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
- default_sending_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
- default_events_register_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_sending_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_events_register_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
-descriptors_by_handler_id: Dict[int, ClientDescriptor] = {}
+descriptors_by_handler_id: Dict[int, "ClientDescriptor"] = {}
-worker_classes: Dict[str, Type[QueueProcessingWorker]] = {}
-queues: Dict[str, Dict[str, Type[QueueProcessingWorker]]] = {}
+worker_classes: Dict[str, Type["QueueProcessingWorker"]] = {}
+queues: Dict[str, Dict[str, Type["QueueProcessingWorker"]]] = {}
-AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional[LDAPSearch] = None
+AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional["LDAPSearch"] = None
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-22 01:09:50 +02:00
req : Dict [ str , Any ] = dict (
2020-08-07 01:09:47 +02:00
apply_markdown = orjson . dumps ( apply_markdown ) . decode ( ) ,
python: Convert assignment type annotations to Python 3.6 style.
This commit was split by tabbott; this piece covers the vast majority
of files in Zulip, but excludes scripts/, tools/, and puppet/ to help
ensure we at least show the right error messages for Xenial systems.
We can likely further refine the remaining pieces with some testing.
Generated by com2ann, with whitespace fixes and various manual fixes
for runtime issues:
- invoiced_through: Optional[LicenseLedger] = models.ForeignKey(
+ invoiced_through: Optional["LicenseLedger"] = models.ForeignKey(
-_apns_client: Optional[APNsClient] = None
+_apns_client: Optional["APNsClient"] = None
- notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- signup_notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ signup_notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- author: Optional[UserProfile] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
+ author: Optional["UserProfile"] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
- bot_owner: Optional[UserProfile] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
+ bot_owner: Optional["UserProfile"] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
- default_sending_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
- default_events_register_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_sending_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_events_register_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
-descriptors_by_handler_id: Dict[int, ClientDescriptor] = {}
+descriptors_by_handler_id: Dict[int, "ClientDescriptor"] = {}
-worker_classes: Dict[str, Type[QueueProcessingWorker]] = {}
-queues: Dict[str, Dict[str, Type[QueueProcessingWorker]]] = {}
+worker_classes: Dict[str, Type["QueueProcessingWorker"]] = {}
+queues: Dict[str, Dict[str, Type["QueueProcessingWorker"]]] = {}
-AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional[LDAPSearch] = None
+AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional["LDAPSearch"] = None
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-22 01:09:50 +02:00
)
2017-10-21 03:25:39 +02:00
result = self . get_and_check_messages ( req )
2021-02-12 08:20:45 +01:00
message = result [ " messages " ] [ 0 ]
return message [ " content_type " ]
2017-10-21 03:25:39 +02:00
self . assertEqual (
get_content_type ( apply_markdown = False ) ,
2021-02-12 08:20:45 +01:00
" text/x-markdown " ,
2017-10-21 03:25:39 +02:00
)
self . assertEqual (
get_content_type ( apply_markdown = True ) ,
2021-02-12 08:20:45 +01:00
" text/html " ,
2017-10-21 03:25:39 +02:00
)
2017-11-05 10:51:25 +01:00
def test_successful_get_messages_reaction ( self ) - > None :
2016-12-06 07:19:34 +01:00
"""
Test old ` / json / messages ` returns reactions .
"""
2021-04-29 17:22:48 +02:00
self . send_stream_message ( self . example_user ( " iago " ) , " Verona " )
2021-02-12 08:20:45 +01:00
self . login ( " hamlet " )
2021-04-29 17:22:48 +02:00
get_messages_params : Dict [ str , Union [ int , str ] ] = { " anchor " : " newest " , " num_before " : 1 }
messages = self . get_and_check_messages ( get_messages_params ) [ " messages " ]
self . assert_length ( messages , 1 )
message_id = messages [ 0 ] [ " id " ]
self . assert_length ( messages [ 0 ] [ " reactions " ] , 0 )
2016-12-06 07:19:34 +01:00
2021-02-12 08:20:45 +01:00
self . login ( " othello " )
reaction_name = " thumbs_up "
2019-10-10 19:03:09 +02:00
reaction_info = {
2021-02-12 08:20:45 +01:00
" emoji_name " : reaction_name ,
2019-10-10 19:03:09 +02:00
}
2016-12-06 07:19:34 +01:00
2021-02-12 08:20:45 +01:00
url = f " /json/messages/ { message_id } /reactions "
2019-10-10 19:03:09 +02:00
payload = self . client_post ( url , reaction_info )
2016-12-06 07:19:34 +01:00
self . assert_json_success ( payload )
2021-02-12 08:20:45 +01:00
self . login ( " hamlet " )
2021-04-29 17:22:48 +02:00
messages = self . get_and_check_messages ( get_messages_params ) [ " messages " ]
self . assert_length ( messages , 1 )
self . assertEqual ( messages [ 0 ] [ " id " ] , message_id )
self . assert_length ( messages [ 0 ] [ " reactions " ] , 1 )
self . assertEqual ( messages [ 0 ] [ " reactions " ] [ 0 ] [ " emoji_name " ] , reaction_name )
2016-12-06 07:19:34 +01:00
2017-11-05 10:51:25 +01:00
def test_successful_get_messages ( self ) - > None :
2016-06-21 21:05:44 +02:00
"""
A call to GET / json / messages with valid parameters returns a list of
messages .
"""
2021-02-12 08:20:45 +01:00
self . login ( " hamlet " )
2020-09-02 08:14:51 +02:00
self . get_and_check_messages ( { } )
2016-06-21 21:05:44 +02:00
2021-02-12 08:20:45 +01:00
othello_email = self . example_user ( " othello " ) . email
2020-03-12 14:17:25 +01:00
2016-06-21 21:05:44 +02:00
# We have to support the legacy tuple style while there are old
# clients around, which might include third party home-grown bots.
2020-03-12 14:17:25 +01:00
self . get_and_check_messages (
dict (
2020-08-07 01:09:47 +02:00
narrow = orjson . dumps (
2021-02-12 08:20:45 +01:00
[ [ " pm-with " , othello_email ] ] ,
2020-08-07 01:09:47 +02:00
) . decode ( ) ,
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
) ,
2020-03-12 14:17:25 +01:00
)
2016-06-21 21:05:44 +02:00
2020-03-12 14:17:25 +01:00
self . get_and_check_messages (
dict (
2020-08-07 01:09:47 +02:00
narrow = orjson . dumps (
2021-02-12 08:20:45 +01:00
[ dict ( operator = " pm-with " , operand = othello_email ) ] ,
2020-08-07 01:09:47 +02:00
) . decode ( ) ,
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
) ,
2020-03-12 14:17:25 +01:00
)
2016-06-21 21:05:44 +02:00
2020-08-04 19:33:43 +02:00
def test_unauthenticated_get_messages_non_existant_realm ( self ) - > None :
post_params = {
" anchor " : 10000000000000000 ,
" num_before " : 5 ,
" num_after " : 1 ,
2021-02-12 08:20:45 +01:00
" narrow " : orjson . dumps ( [ dict ( operator = " streams " , operand = " web-public " ) ] ) . decode ( ) ,
2020-08-04 19:33:43 +02:00
}
2021-02-12 08:20:45 +01:00
with mock . patch ( " zerver.context_processors.get_realm " , side_effect = Realm . DoesNotExist ) :
2020-08-04 19:33:43 +02:00
result = self . client_get ( " /json/messages " , dict ( post_params ) )
2021-02-12 08:19:30 +01:00
self . assert_json_error ( result , " Invalid subdomain " , status_code = 404 )
2020-08-04 19:33:43 +02:00
def test_unauthenticated_get_messages_without_web_public ( self ) - > None :
"""
An unauthenticated call to GET / json / messages with valid parameters
returns a 401.
"""
post_params = {
" anchor " : 1 ,
" num_before " : 1 ,
" num_after " : 1 ,
2021-02-12 08:20:45 +01:00
" narrow " : orjson . dumps ( [ dict ( operator = " is " , operand = " private " ) ] ) . decode ( ) ,
2020-08-04 19:33:43 +02:00
}
result = self . client_get ( " /json/messages " , dict ( post_params ) )
2021-02-12 08:19:30 +01:00
self . assert_json_error (
result , " Not logged in: API authentication or user session required " , status_code = 401
)
2020-08-04 19:33:43 +02:00
post_params = {
" anchor " : 10000000000000000 ,
" num_before " : 5 ,
" num_after " : 1 ,
}
result = self . client_get ( " /json/messages " , dict ( post_params ) )
2021-02-12 08:19:30 +01:00
self . assert_json_error (
result , " Not logged in: API authentication or user session required " , status_code = 401
)
2020-08-04 19:33:43 +02:00
def test_unauthenticated_get_messages_with_web_public ( self ) - > None :
"""
An unauthenticated call to GET / json / messages without valid
parameters in the ` streams : web - public ` narrow returns a 401.
"""
post_params : Dict [ str , Union [ int , str , bool ] ] = {
" anchor " : 1 ,
" num_before " : 1 ,
" num_after " : 1 ,
# "is:private" is not a is_web_public_compatible narrow.
2021-02-12 08:19:30 +01:00
" narrow " : orjson . dumps (
[
dict ( operator = " streams " , operand = " web-public " ) ,
dict ( operator = " is " , operand = " private " ) ,
]
) . decode ( ) ,
2020-08-04 19:33:43 +02:00
}
result = self . client_get ( " /json/messages " , dict ( post_params ) )
2021-02-12 08:19:30 +01:00
self . assert_json_error (
2021-02-12 08:20:45 +01:00
result , " Not logged in: API authentication or user session required " , status_code = 401
2021-02-12 08:19:30 +01:00
)
2020-08-04 19:33:43 +02:00
def test_unauthenticated_narrow_to_non_web_public_streams_without_web_public ( self ) - > None :
"""
An unauthenticated call to GET / json / messages without ` streams : web - public ` narrow returns a 401.
"""
post_params : Dict [ str , Union [ int , str , bool ] ] = {
" anchor " : 1 ,
" num_before " : 1 ,
" num_after " : 1 ,
2021-02-12 08:20:45 +01:00
" narrow " : orjson . dumps ( [ dict ( operator = " stream " , operand = " Scotland " ) ] ) . decode ( ) ,
2020-08-04 19:33:43 +02:00
}
result = self . client_get ( " /json/messages " , dict ( post_params ) )
2021-02-12 08:19:30 +01:00
self . assert_json_error (
result , " Not logged in: API authentication or user session required " , status_code = 401
)
2020-08-04 19:33:43 +02:00
def test_unauthenticated_narrow_to_non_web_public_streams_with_web_public ( self ) - > None :
"""
An unauthenticated call to GET / json / messages with valid
parameters in the ` streams : web - public ` narrow + narrow to stream returns
a 400 if the target stream is not web - public .
"""
post_params : Dict [ str , Union [ int , str , bool ] ] = {
" anchor " : 1 ,
" num_before " : 1 ,
" num_after " : 1 ,
2021-02-12 08:19:30 +01:00
" narrow " : orjson . dumps (
[
dict ( operator = " streams " , operand = " web-public " ) ,
2021-02-12 08:20:45 +01:00
dict ( operator = " stream " , operand = " Scotland " ) ,
2021-02-12 08:19:30 +01:00
]
) . decode ( ) ,
2020-08-04 19:33:43 +02:00
}
result = self . client_get ( " /json/messages " , dict ( post_params ) )
2021-02-12 08:19:30 +01:00
self . assert_json_error (
2021-02-12 08:20:45 +01:00
result , " Invalid narrow operator: unknown web-public stream Scotland " , status_code = 400
2021-02-12 08:19:30 +01:00
)
2020-08-04 19:33:43 +02:00
2021-02-12 08:19:30 +01:00
def setup_web_public_test ( self , num_web_public_message : int = 1 ) - > None :
2020-08-04 19:33:43 +02:00
"""
Send N + 2 messages , N in a web - public stream , then one in a non web - public stream
and then a private message .
"""
2021-02-12 08:20:45 +01:00
user_profile = self . example_user ( " iago " )
self . login ( " iago " )
web_public_stream = self . make_stream ( " web-public-stream " , is_web_public = True )
non_web_public_stream = self . make_stream ( " non-web-public-stream " )
2020-08-04 19:33:43 +02:00
self . subscribe ( user_profile , web_public_stream . name )
self . subscribe ( user_profile , non_web_public_stream . name )
for _ in range ( num_web_public_message ) :
2021-02-12 08:19:30 +01:00
self . send_stream_message (
user_profile , web_public_stream . name , content = " web-public message "
)
self . send_stream_message (
user_profile , non_web_public_stream . name , content = " non web-public message "
)
self . send_personal_message (
2021-02-12 08:20:45 +01:00
user_profile , self . example_user ( " hamlet " ) , content = " private message "
2021-02-12 08:19:30 +01:00
)
2020-08-04 19:33:43 +02:00
self . logout ( )
2021-02-12 08:19:30 +01:00
def verify_web_public_query_result_success (
self , result : HttpResponse , expected_num_messages : int
) - > None :
2020-08-04 19:33:43 +02:00
self . assert_json_success ( result )
2021-02-12 08:20:45 +01:00
messages = orjson . loads ( result . content ) [ " messages " ]
2020-08-04 19:33:43 +02:00
self . assert_length ( messages , expected_num_messages )
2021-02-12 08:20:45 +01:00
sender = self . example_user ( " iago " )
2020-08-04 19:33:43 +02:00
for msg in messages :
2021-02-12 08:20:45 +01:00
self . assertEqual ( msg [ " content " ] , " <p>web-public message</p> " )
self . assertEqual ( msg [ " flags " ] , [ " read " ] )
self . assertEqual ( msg [ " sender_email " ] , sender . email )
self . assertEqual ( msg [ " avatar_url " ] , avatar_url ( sender ) )
2020-08-04 19:33:43 +02:00
def test_unauthenticated_narrow_to_web_public_streams ( self ) - > None :
self . setup_web_public_test ( )
post_params : Dict [ str , Union [ int , str , bool ] ] = {
" anchor " : 1 ,
" num_before " : 1 ,
" num_after " : 1 ,
2021-02-12 08:19:30 +01:00
" narrow " : orjson . dumps (
[
dict ( operator = " streams " , operand = " web-public " ) ,
2021-02-12 08:20:45 +01:00
dict ( operator = " stream " , operand = " web-public-stream " ) ,
2021-02-12 08:19:30 +01:00
]
) . decode ( ) ,
2020-08-04 19:33:43 +02:00
}
result = self . client_get ( " /json/messages " , dict ( post_params ) )
self . verify_web_public_query_result_success ( result , 1 )
def test_get_messages_with_web_public ( self ) - > None :
"""
An unauthenticated call to GET / json / messages with valid parameters
including ` streams : web - public ` narrow returns list of messages in the
` web - public ` streams .
"""
self . setup_web_public_test ( num_web_public_message = 8 )
post_params = {
" anchor " : " first_unread " ,
" num_before " : 5 ,
" num_after " : 1 ,
2021-02-12 08:20:45 +01:00
" narrow " : orjson . dumps ( [ dict ( operator = " streams " , operand = " web-public " ) ] ) . decode ( ) ,
2020-08-04 19:33:43 +02:00
}
result = self . client_get ( " /json/messages " , dict ( post_params ) )
# Of the last 7 (num_before + num_after + 1) messages, only 5
# messages are returned, which were all web-public messages.
# The other two messages should not be returned even though
# they are the most recent.
self . verify_web_public_query_result_success ( result , 5 )
2017-11-05 10:51:25 +01:00
def test_client_avatar ( self ) - > None :
2017-10-20 16:52:04 +02:00
"""
The client_gravatar flag determines whether we send avatar_url .
"""
2021-02-12 08:20:45 +01:00
hamlet = self . example_user ( " hamlet " )
2020-03-06 18:40:46 +01:00
self . login_user ( hamlet )
2017-10-20 16:52:04 +02:00
2021-02-12 08:19:30 +01:00
do_set_realm_property (
2021-03-01 11:33:24 +01:00
hamlet . realm ,
" email_address_visibility " ,
Realm . EMAIL_ADDRESS_VISIBILITY_EVERYONE ,
acting_user = None ,
2021-02-12 08:19:30 +01:00
)
2020-03-12 14:17:25 +01:00
2020-03-07 11:43:05 +01:00
self . send_personal_message ( hamlet , self . example_user ( " iago " ) )
2017-10-20 16:52:04 +02:00
result = self . get_and_check_messages ( { } )
2021-02-12 08:20:45 +01:00
message = result [ " messages " ] [ 0 ]
self . assertIn ( " gravatar.com " , message [ " avatar_url " ] )
2017-10-20 16:52:04 +02:00
2020-08-07 01:09:47 +02:00
result = self . get_and_check_messages ( dict ( client_gravatar = orjson . dumps ( True ) . decode ( ) ) )
2021-02-12 08:20:45 +01:00
message = result [ " messages " ] [ 0 ]
self . assertEqual ( message [ " avatar_url " ] , None )
2017-10-20 16:52:04 +02:00
2019-02-05 07:12:37 +01:00
# Now verify client_gravatar doesn't run with EMAIL_ADDRESS_VISIBILITY_ADMINS
2021-02-12 08:19:30 +01:00
do_set_realm_property (
2021-03-01 11:33:24 +01:00
hamlet . realm ,
" email_address_visibility " ,
Realm . EMAIL_ADDRESS_VISIBILITY_ADMINS ,
acting_user = None ,
2021-02-12 08:19:30 +01:00
)
2020-08-07 01:09:47 +02:00
result = self . get_and_check_messages ( dict ( client_gravatar = orjson . dumps ( True ) . decode ( ) ) )
2021-02-12 08:20:45 +01:00
message = result [ " messages " ] [ 0 ]
self . assertIn ( " gravatar.com " , message [ " avatar_url " ] )
2019-02-05 07:12:37 +01:00
2017-11-05 10:51:25 +01:00
def test_get_messages_with_narrow_pm_with ( self ) - > None :
2016-06-21 21:05:44 +02:00
"""
A request for old messages with a narrow by pm - with only returns
conversations with that user .
"""
2021-02-12 08:20:45 +01:00
me = self . example_user ( " hamlet " )
2016-11-29 07:22:02 +01:00
2019-08-18 00:40:35 +02:00
def dr_emails ( dr : DisplayRecipientT ) - > str :
2016-12-08 09:39:48 +01:00
assert isinstance ( dr , list )
2021-02-12 08:20:45 +01:00
return " , " . join ( sorted ( { * ( r [ " email " ] for r in dr ) , me . email } ) )
2016-06-21 21:05:44 +02:00
2019-08-18 00:40:35 +02:00
def dr_ids ( dr : DisplayRecipientT ) - > List [ int ] :
2019-06-08 23:21:01 +02:00
assert isinstance ( dr , list )
2021-02-12 08:20:45 +01:00
return sorted ( { * ( r [ " id " ] for r in dr ) , self . example_user ( " hamlet " ) . id } )
2019-06-08 23:21:01 +02:00
2020-03-07 11:43:05 +01:00
self . send_personal_message ( me , self . example_user ( " iago " ) )
2019-06-29 15:09:35 +02:00
2017-10-28 17:38:19 +02:00
self . send_huddle_message (
me ,
2020-03-07 11:43:05 +01:00
[ self . example_user ( " iago " ) , self . example_user ( " cordelia " ) ] ,
2017-10-28 17:38:19 +02:00
)
2019-06-29 15:09:35 +02:00
# Send a 1:1 and group PM containing Aaron.
# Then deactivate aaron to test pm-with narrow includes messages
# from deactivated users also.
2020-03-07 11:43:05 +01:00
self . send_personal_message ( me , self . example_user ( " aaron " ) )
2019-06-29 15:09:35 +02:00
self . send_huddle_message (
me ,
2020-03-07 11:43:05 +01:00
[ self . example_user ( " iago " ) , self . example_user ( " aaron " ) ] ,
2019-06-29 15:09:35 +02:00
)
aaron = self . example_user ( " aaron " )
2021-03-27 06:02:12 +01:00
do_deactivate_user ( aaron , acting_user = None )
2019-06-29 15:09:35 +02:00
self . assertFalse ( aaron . is_active )
2021-02-12 08:19:30 +01:00
personals = [
2021-02-12 08:20:45 +01:00
m for m in get_user_messages ( self . example_user ( " hamlet " ) ) if not m . is_stream_message ( )
2021-02-12 08:19:30 +01:00
]
2017-03-14 09:15:37 +01:00
for personal in personals :
emails = dr_emails ( get_display_recipient ( personal . recipient ) )
2020-03-06 18:40:46 +01:00
self . login_user ( me )
2021-02-12 08:20:45 +01:00
narrow : List [ Dict [ str , Any ] ] = [ dict ( operator = " pm-with " , operand = emails ) ]
2020-08-07 01:09:47 +02:00
result = self . get_and_check_messages ( dict ( narrow = orjson . dumps ( narrow ) . decode ( ) ) )
2019-06-08 23:21:01 +02:00
for message in result [ " messages " ] :
2021-02-12 08:20:45 +01:00
self . assertEqual ( dr_emails ( message [ " display_recipient " ] ) , emails )
2019-06-08 23:21:01 +02:00
# check passing id is conistent with passing emails as operand
ids = dr_ids ( get_display_recipient ( personal . recipient ) )
2021-02-12 08:20:45 +01:00
narrow = [ dict ( operator = " pm-with " , operand = ids ) ]
2020-08-07 01:09:47 +02:00
result = self . get_and_check_messages ( dict ( narrow = orjson . dumps ( narrow ) . decode ( ) ) )
2016-06-21 21:05:44 +02:00
2017-03-14 09:15:37 +01:00
for message in result [ " messages " ] :
2021-02-12 08:20:45 +01:00
self . assertEqual ( dr_emails ( message [ " display_recipient " ] ) , emails )
2016-06-21 21:05:44 +02:00
2018-01-02 18:33:28 +01:00
def test_get_visible_messages_with_narrow_pm_with ( self ) - > None :
2021-02-12 08:20:45 +01:00
me = self . example_user ( " hamlet " )
2020-03-06 18:40:46 +01:00
self . login_user ( me )
2021-02-12 08:20:45 +01:00
self . subscribe ( self . example_user ( " hamlet " ) , " Scotland " )
2018-01-02 18:33:28 +01:00
message_ids = [ ]
for i in range ( 5 ) :
2020-03-07 11:43:05 +01:00
message_ids . append ( self . send_personal_message ( me , self . example_user ( " iago " ) ) )
2018-01-02 18:33:28 +01:00
2021-02-12 08:20:45 +01:00
narrow = [ dict ( operator = " pm-with " , operand = self . example_user ( " iago " ) . email ) ]
2018-01-02 18:33:28 +01:00
self . message_visibility_test ( narrow , message_ids , 2 )
2017-11-05 10:51:25 +01:00
def test_get_messages_with_narrow_group_pm_with ( self ) - > None :
2017-03-23 23:35:37 +01:00
"""
A request for old messages with a narrow by group - pm - with only returns
group - private conversations with that user .
"""
2020-03-07 11:43:05 +01:00
me = self . example_user ( " hamlet " )
2017-03-23 23:35:37 +01:00
2020-03-12 14:17:25 +01:00
iago = self . example_user ( " iago " )
cordelia = self . example_user ( " cordelia " )
othello = self . example_user ( " othello " )
2017-03-23 23:35:37 +01:00
matching_message_ids = [ ]
2017-10-28 17:38:19 +02:00
matching_message_ids . append (
self . send_huddle_message (
me ,
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
[ iago , cordelia , othello ] ,
2017-10-28 17:38:19 +02:00
) ,
)
matching_message_ids . append (
self . send_huddle_message (
me ,
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
[ cordelia , othello ] ,
2017-10-28 17:38:19 +02:00
) ,
)
2017-03-23 23:35:37 +01:00
non_matching_message_ids = [ ]
2017-10-28 17:38:19 +02:00
non_matching_message_ids . append (
2020-03-12 14:17:25 +01:00
self . send_personal_message ( me , cordelia ) ,
2017-10-28 17:38:19 +02:00
)
non_matching_message_ids . append (
self . send_huddle_message (
me ,
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
[ iago , othello ] ,
2017-10-28 17:38:19 +02:00
) ,
)
non_matching_message_ids . append (
self . send_huddle_message (
2020-03-07 11:43:05 +01:00
self . example_user ( " cordelia " ) ,
2020-03-12 14:17:25 +01:00
[ iago , othello ] ,
2017-10-28 17:38:19 +02:00
) ,
)
2017-03-23 23:35:37 +01:00
2020-03-06 18:40:46 +01:00
self . login_user ( me )
2020-03-12 14:17:25 +01:00
test_operands = [ cordelia . email , cordelia . id ]
2019-07-14 19:31:28 +02:00
for operand in test_operands :
2021-02-12 08:20:45 +01:00
narrow = [ dict ( operator = " group-pm-with " , operand = operand ) ]
2020-08-07 01:09:47 +02:00
result = self . get_and_check_messages ( dict ( narrow = orjson . dumps ( narrow ) . decode ( ) ) )
2019-07-14 19:31:28 +02:00
for message in result [ " messages " ] :
self . assertIn ( message [ " id " ] , matching_message_ids )
self . assertNotIn ( message [ " id " ] , non_matching_message_ids )
2017-03-23 23:35:37 +01:00
2018-01-02 18:33:28 +01:00
def test_get_visible_messages_with_narrow_group_pm_with ( self ) - > None :
2021-02-12 08:20:45 +01:00
me = self . example_user ( " hamlet " )
2020-03-06 18:40:46 +01:00
self . login_user ( me )
2018-01-02 18:33:28 +01:00
2020-03-12 14:17:25 +01:00
iago = self . example_user ( " iago " )
cordelia = self . example_user ( " cordelia " )
othello = self . example_user ( " othello " )
2018-01-02 18:33:28 +01:00
message_ids = [ ]
message_ids . append (
self . send_huddle_message (
me ,
2020-03-12 14:17:25 +01:00
[ iago , cordelia , othello ] ,
2018-01-02 18:33:28 +01:00
) ,
)
message_ids . append (
self . send_huddle_message (
me ,
2020-03-12 14:17:25 +01:00
[ cordelia , othello ] ,
2018-01-02 18:33:28 +01:00
) ,
)
message_ids . append (
self . send_huddle_message (
me ,
2020-03-12 14:17:25 +01:00
[ cordelia , iago ] ,
2018-01-02 18:33:28 +01:00
) ,
)
2021-02-12 08:20:45 +01:00
narrow = [ dict ( operator = " group-pm-with " , operand = cordelia . email ) ]
2018-01-02 18:33:28 +01:00
self . message_visibility_test ( narrow , message_ids , 1 )
2017-11-05 10:51:25 +01:00
def test_include_history ( self ) - > None :
2021-02-12 08:20:45 +01:00
hamlet = self . example_user ( " hamlet " )
cordelia = self . example_user ( " cordelia " )
2017-11-07 16:48:06 +01:00
2021-02-12 08:20:45 +01:00
stream_name = " test stream "
2017-11-07 16:48:06 +01:00
self . subscribe ( cordelia , stream_name )
2021-02-12 08:20:45 +01:00
old_message_id = self . send_stream_message ( cordelia , stream_name , content = " foo " )
2017-11-07 16:48:06 +01:00
self . subscribe ( hamlet , stream_name )
2021-02-12 08:20:45 +01:00
content = " hello @**King Hamlet** "
2020-03-07 11:43:05 +01:00
new_message_id = self . send_stream_message ( cordelia , stream_name , content = content )
2017-11-07 16:48:06 +01:00
2020-03-06 18:40:46 +01:00
self . login_user ( hamlet )
2017-11-07 16:48:06 +01:00
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " stream " , operand = stream_name ) ,
2017-11-07 16:48:06 +01:00
]
req = dict (
2020-08-07 01:09:47 +02:00
narrow = orjson . dumps ( narrow ) . decode ( ) ,
2017-11-07 16:48:06 +01:00
anchor = LARGER_THAN_MAX_MESSAGE_ID ,
num_before = 100 ,
num_after = 100 ,
)
2021-02-12 08:20:45 +01:00
payload = self . client_get ( " /json/messages " , req )
2017-11-07 16:48:06 +01:00
self . assert_json_success ( payload )
2020-08-07 01:09:47 +02:00
result = orjson . loads ( payload . content )
2021-02-12 08:20:45 +01:00
messages = result [ " messages " ]
2021-05-17 05:41:32 +02:00
self . assert_length ( messages , 2 )
2017-11-07 16:48:06 +01:00
for message in messages :
2021-02-12 08:20:45 +01:00
if message [ " id " ] == old_message_id :
2017-11-07 16:48:06 +01:00
old_message = message
2021-02-12 08:20:45 +01:00
elif message [ " id " ] == new_message_id :
2017-11-07 16:48:06 +01:00
new_message = message
2021-02-12 08:20:45 +01:00
self . assertEqual ( old_message [ " flags " ] , [ " read " , " historical " ] )
self . assertEqual ( new_message [ " flags " ] , [ " mentioned " ] )
2017-11-07 16:48:06 +01:00
2017-11-05 10:51:25 +01:00
def test_get_messages_with_narrow_stream ( self ) - > None :
2016-06-21 21:05:44 +02:00
"""
A request for old messages with a narrow by stream only returns
messages for that stream .
"""
2021-02-12 08:20:45 +01:00
self . login ( " hamlet " )
2017-02-22 21:23:22 +01:00
# We need to subscribe to a stream and then send a message to
2016-06-21 21:05:44 +02:00
# it to ensure that we actually have a stream message in this
# narrow view.
2021-02-12 08:20:45 +01:00
self . subscribe ( self . example_user ( " hamlet " ) , " Scotland " )
2020-03-07 11:43:05 +01:00
self . send_stream_message ( self . example_user ( " hamlet " ) , " Scotland " )
2021-02-12 08:20:45 +01:00
messages = get_user_messages ( self . example_user ( " hamlet " ) )
2017-10-28 21:53:47 +02:00
stream_messages = [ msg for msg in messages if msg . is_stream_message ( ) ]
2016-06-21 21:05:44 +02:00
stream_name = get_display_recipient ( stream_messages [ 0 ] . recipient )
2019-08-07 17:32:19 +02:00
assert isinstance ( stream_name , str )
stream_id = get_stream ( stream_name , stream_messages [ 0 ] . get_realm ( ) ) . id
2019-08-07 18:20:17 +02:00
stream_recipient_id = stream_messages [ 0 ] . recipient . id
2016-06-21 21:05:44 +02:00
2019-08-07 17:32:19 +02:00
for operand in [ stream_name , stream_id ] :
2021-02-12 08:20:45 +01:00
narrow = [ dict ( operator = " stream " , operand = operand ) ]
2020-08-07 01:09:47 +02:00
result = self . get_and_check_messages ( dict ( narrow = orjson . dumps ( narrow ) . decode ( ) ) )
2016-06-21 21:05:44 +02:00
2019-08-07 17:32:19 +02:00
for message in result [ " messages " ] :
self . assertEqual ( message [ " type " ] , " stream " )
self . assertEqual ( message [ " recipient_id " ] , stream_recipient_id )
2016-06-21 21:05:44 +02:00
2018-01-02 18:33:28 +01:00
def test_get_visible_messages_with_narrow_stream ( self ) - > None :
2021-02-12 08:20:45 +01:00
self . login ( " hamlet " )
self . subscribe ( self . example_user ( " hamlet " ) , " Scotland " )
2018-01-02 18:33:28 +01:00
message_ids = [ ]
for i in range ( 5 ) :
2020-03-07 11:43:05 +01:00
message_ids . append ( self . send_stream_message ( self . example_user ( " iago " ) , " Scotland " ) )
2018-01-02 18:33:28 +01:00
2021-02-12 08:20:45 +01:00
narrow = [ dict ( operator = " stream " , operand = " Scotland " ) ]
2018-01-02 18:33:28 +01:00
self . message_visibility_test ( narrow , message_ids , 2 )
2017-11-05 10:51:25 +01:00
def test_get_messages_with_narrow_stream_mit_unicode_regex ( self ) - > None :
2016-06-21 21:05:44 +02:00
"""
2020-10-23 02:43:28 +02:00
A request for old messages for a user in the mit . edu relam with Unicode
2016-06-21 21:05:44 +02:00
stream name should be correctly escaped in the database query .
"""
2021-02-12 08:20:45 +01:00
user = self . mit_user ( " starnine " )
2020-03-06 18:40:46 +01:00
self . login_user ( user )
2016-06-21 21:05:44 +02:00
# We need to susbcribe to a stream and then send a message to
# it to ensure that we actually have a stream message in this
# narrow view.
2020-04-09 21:51:58 +02:00
lambda_stream_name = " \u03bb -stream "
2020-03-06 18:40:46 +01:00
stream = self . subscribe ( user , lambda_stream_name )
2017-10-08 21:16:51 +02:00
self . assertTrue ( stream . is_in_zephyr_realm )
2016-06-21 21:05:44 +02:00
2020-04-09 21:51:58 +02:00
lambda_stream_d_name = " \u03bb -stream.d "
2020-03-06 18:40:46 +01:00
self . subscribe ( user , lambda_stream_d_name )
2016-06-21 21:05:44 +02:00
2020-04-09 21:51:58 +02:00
self . send_stream_message ( user , " \u03bb -stream " )
self . send_stream_message ( user , " \u03bb -stream.d " )
2016-06-21 21:05:44 +02:00
2021-02-12 08:20:45 +01:00
narrow = [ dict ( operator = " stream " , operand = " \u03bb -stream " ) ]
2021-02-12 08:19:30 +01:00
result = self . get_and_check_messages (
dict ( num_after = 2 , narrow = orjson . dumps ( narrow ) . decode ( ) ) , subdomain = " zephyr "
)
2016-06-21 21:05:44 +02:00
2017-05-24 21:21:35 +02:00
messages = get_user_messages ( self . mit_user ( " starnine " ) )
2017-10-28 21:53:47 +02:00
stream_messages = [ msg for msg in messages if msg . is_stream_message ( ) ]
2016-06-21 21:05:44 +02:00
2021-05-17 05:41:32 +02:00
self . assert_length ( result [ " messages " ] , 2 )
2016-06-21 21:05:44 +02:00
for i , message in enumerate ( result [ " messages " ] ) :
self . assertEqual ( message [ " type " ] , " stream " )
stream_id = stream_messages [ i ] . recipient . id
self . assertEqual ( message [ " recipient_id " ] , stream_id )
2017-11-05 10:51:25 +01:00
def test_get_messages_with_narrow_topic_mit_unicode_regex ( self ) - > None :
2016-06-21 21:05:44 +02:00
"""
2020-10-23 02:43:28 +02:00
A request for old messages for a user in the mit . edu realm with Unicode
2016-06-21 21:05:44 +02:00
topic name should be correctly escaped in the database query .
"""
2017-05-23 02:33:53 +02:00
mit_user_profile = self . mit_user ( " starnine " )
2020-03-06 18:40:46 +01:00
self . login_user ( mit_user_profile )
2016-06-21 21:05:44 +02:00
# We need to susbcribe to a stream and then send a message to
# it to ensure that we actually have a stream message in this
# narrow view.
2017-08-25 06:01:29 +02:00
self . subscribe ( mit_user_profile , " Scotland " )
2020-04-09 21:51:58 +02:00
self . send_stream_message ( mit_user_profile , " Scotland " , topic_name = " \u03bb -topic " )
self . send_stream_message ( mit_user_profile , " Scotland " , topic_name = " \u03bb -topic.d " )
self . send_stream_message ( mit_user_profile , " Scotland " , topic_name = " \u03bb -topic.d.d " )
self . send_stream_message ( mit_user_profile , " Scotland " , topic_name = " \u03bb -topic.d.d.d " )
self . send_stream_message ( mit_user_profile , " Scotland " , topic_name = " \u03bb -topic.d.d.d.d " )
2016-06-21 21:05:44 +02:00
2021-02-12 08:20:45 +01:00
narrow = [ dict ( operator = " topic " , operand = " \u03bb -topic " ) ]
2017-08-26 01:01:12 +02:00
result = self . get_and_check_messages (
2021-02-12 08:19:30 +01:00
dict ( num_after = 100 , narrow = orjson . dumps ( narrow ) . decode ( ) ) , subdomain = " zephyr "
)
2016-06-21 21:05:44 +02:00
2017-05-23 02:33:53 +02:00
messages = get_user_messages ( mit_user_profile )
2017-10-28 21:53:47 +02:00
stream_messages = [ msg for msg in messages if msg . is_stream_message ( ) ]
2021-05-17 05:41:32 +02:00
self . assert_length ( result [ " messages " ] , 5 )
2017-02-22 21:23:22 +01:00
for i , message in enumerate ( result [ " messages " ] ) :
self . assertEqual ( message [ " type " ] , " stream " )
stream_id = stream_messages [ i ] . recipient . id
self . assertEqual ( message [ " recipient_id " ] , stream_id )
2017-11-05 10:51:25 +01:00
def test_get_messages_with_narrow_topic_mit_personal ( self ) - > None :
2017-02-22 21:23:22 +01:00
"""
We handle . d grouping for MIT realm personal messages correctly .
"""
2017-05-23 02:33:53 +02:00
mit_user_profile = self . mit_user ( " starnine " )
2017-11-18 00:11:24 +01:00
# We need to susbcribe to a stream and then send a message to
2017-02-22 21:23:22 +01:00
# it to ensure that we actually have a stream message in this
# narrow view.
2020-03-06 18:40:46 +01:00
self . login_user ( mit_user_profile )
2017-08-25 06:01:29 +02:00
self . subscribe ( mit_user_profile , " Scotland " )
2017-02-22 21:23:22 +01:00
2020-04-09 21:51:58 +02:00
self . send_stream_message ( mit_user_profile , " Scotland " , topic_name = " .d.d " )
self . send_stream_message ( mit_user_profile , " Scotland " , topic_name = " PERSONAL " )
self . send_stream_message ( mit_user_profile , " Scotland " , topic_name = ' (instance " " ).d ' )
self . send_stream_message ( mit_user_profile , " Scotland " , topic_name = " .d.d.d " )
self . send_stream_message ( mit_user_profile , " Scotland " , topic_name = " personal.d " )
self . send_stream_message ( mit_user_profile , " Scotland " , topic_name = ' (instance " " ) ' )
self . send_stream_message ( mit_user_profile , " Scotland " , topic_name = " .d.d.d.d " )
2017-02-22 21:23:22 +01:00
2021-02-12 08:20:45 +01:00
narrow = [ dict ( operator = " topic " , operand = " personal.d.d " ) ]
2017-08-26 01:01:12 +02:00
result = self . get_and_check_messages (
2021-02-12 08:19:30 +01:00
dict ( num_before = 50 , num_after = 50 , narrow = orjson . dumps ( narrow ) . decode ( ) ) ,
subdomain = " zephyr " ,
)
2017-02-22 21:23:22 +01:00
2017-05-23 02:33:53 +02:00
messages = get_user_messages ( mit_user_profile )
2017-10-28 21:53:47 +02:00
stream_messages = [ msg for msg in messages if msg . is_stream_message ( ) ]
2021-05-17 05:41:32 +02:00
self . assert_length ( result [ " messages " ] , 7 )
2016-06-21 21:05:44 +02:00
for i , message in enumerate ( result [ " messages " ] ) :
self . assertEqual ( message [ " type " ] , " stream " )
stream_id = stream_messages [ i ] . recipient . id
self . assertEqual ( message [ " recipient_id " ] , stream_id )
2017-11-05 10:51:25 +01:00
def test_get_messages_with_narrow_sender ( self ) - > None :
2016-06-21 21:05:44 +02:00
"""
A request for old messages with a narrow by sender only returns
messages sent by that person .
"""
2021-02-12 08:20:45 +01:00
self . login ( " hamlet " )
2020-03-12 14:17:25 +01:00
2021-02-12 08:20:45 +01:00
hamlet = self . example_user ( " hamlet " )
othello = self . example_user ( " othello " )
iago = self . example_user ( " iago " )
2020-03-12 14:17:25 +01:00
2016-06-21 21:05:44 +02:00
# We need to send a message here to ensure that we actually
# have a stream message in this narrow view.
2020-03-12 14:17:25 +01:00
self . send_stream_message ( hamlet , " Scotland " )
self . send_stream_message ( othello , " Scotland " )
self . send_personal_message ( othello , hamlet )
self . send_stream_message ( iago , " Scotland " )
2016-06-21 21:05:44 +02:00
2020-03-12 14:17:25 +01:00
test_operands = [ othello . email , othello . id ]
2019-07-13 01:48:04 +02:00
for operand in test_operands :
2021-02-12 08:20:45 +01:00
narrow = [ dict ( operator = " sender " , operand = operand ) ]
2020-08-07 01:09:47 +02:00
result = self . get_and_check_messages ( dict ( narrow = orjson . dumps ( narrow ) . decode ( ) ) )
2016-06-21 21:05:44 +02:00
2019-07-13 01:48:04 +02:00
for message in result [ " messages " ] :
2020-03-12 14:17:25 +01:00
self . assertEqual ( message [ " sender_id " ] , othello . id )
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def _update_tsvector_index ( self ) - > None :
2016-09-19 16:34:01 +02:00
# We use brute force here and update our text search index
# for the entire zerver_message table (which is small in test
# mode). In production there is an async process which keeps
# the search index up to date.
with connection . cursor ( ) as cursor :
2021-02-12 08:19:30 +01:00
cursor . execute (
"""
2016-09-19 16:34:01 +02:00
UPDATE zerver_message SET
search_tsvector = to_tsvector ( ' zulip.english_us_search ' ,
subject | | rendered_content )
2021-02-12 08:19:30 +01:00
"""
)
2016-09-19 16:34:01 +02:00
2016-09-19 20:18:33 +02:00
@override_settings ( USING_PGROONGA = False )
2017-11-05 10:51:25 +01:00
def test_messages_in_narrow ( self ) - > None :
2020-03-07 11:43:05 +01:00
user = self . example_user ( " cordelia " )
2020-03-06 18:40:46 +01:00
self . login_user ( user )
2016-09-19 20:18:33 +02:00
2018-05-10 19:00:29 +02:00
def send ( content : str ) - > int :
2017-10-28 17:38:19 +02:00
msg_id = self . send_stream_message (
2020-03-07 11:43:05 +01:00
sender = user ,
2017-10-28 17:38:19 +02:00
stream_name = " Verona " ,
2016-09-19 20:18:33 +02:00
content = content ,
)
return msg_id
2021-02-12 08:20:45 +01:00
good_id = send ( " KEYWORDMATCH and should work " )
bad_id = send ( " no match " )
2016-09-19 20:18:33 +02:00
msg_ids = [ good_id , bad_id ]
2021-02-12 08:20:45 +01:00
send ( " KEYWORDMATCH but not in msg_ids " )
2016-09-19 20:18:33 +02:00
self . _update_tsvector_index ( )
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " search " , operand = " KEYWORDMATCH " ) ,
2016-09-19 20:18:33 +02:00
]
raw_params = dict ( msg_ids = msg_ids , narrow = narrow )
2020-08-07 01:09:47 +02:00
params = { k : orjson . dumps ( v ) . decode ( ) for k , v in raw_params . items ( ) }
2021-02-12 08:20:45 +01:00
result = self . client_get ( " /json/messages/matches_narrow " , params )
2016-09-19 20:18:33 +02:00
self . assert_json_success ( result )
2021-02-12 08:20:45 +01:00
messages = result . json ( ) [ " messages " ]
2021-05-17 05:41:32 +02:00
self . assert_length ( list ( messages . keys ( ) ) , 1 )
2016-09-19 20:18:33 +02:00
message = messages [ str ( good_id ) ]
2021-02-12 08:19:30 +01:00
self . assertEqual (
2021-02-12 08:20:45 +01:00
message [ " match_content " ] ,
2021-02-12 08:19:30 +01:00
' <p><span class= " highlight " >KEYWORDMATCH</span> and should work</p> ' ,
)
2016-09-19 20:18:33 +02:00
2016-04-24 17:08:51 +02:00
@override_settings ( USING_PGROONGA = False )
2017-11-05 10:51:25 +01:00
def test_get_messages_with_search ( self ) - > None :
2021-02-12 08:20:45 +01:00
self . login ( " cordelia " )
2016-07-17 04:07:07 +02:00
messages_to_search = [
2021-02-12 08:20:45 +01:00
( " breakfast " , " there are muffins in the conference room " ) ,
( " lunch plans " , " I am hungry! " ) ,
( " meetings " , " discuss lunch after lunch " ) ,
( " meetings " , " please bring your laptops to take notes " ) ,
( " dinner " , " Anybody staying late tonight? " ) ,
( " urltest " , " https://google.com " ) ,
( " 日本 " , " こんに ちは 。 今日は いい 天気ですね。 " ) ,
( " 日本 " , " 今朝はごはんを食べました。 " ) ,
( " 日本 " , " 昨日、日本 のお菓子を送りました。 " ) ,
( " english " , " I want to go to 日本! " ) ,
2016-07-17 04:07:07 +02:00
]
2017-08-15 18:20:45 +02:00
next_message_id = self . get_last_message ( ) . id + 1
2021-02-12 08:20:45 +01:00
cordelia = self . example_user ( " cordelia " )
2020-03-12 14:17:25 +01:00
2016-07-17 04:07:07 +02:00
for topic , content in messages_to_search :
2017-10-28 17:38:19 +02:00
self . send_stream_message (
2020-03-12 14:17:25 +01:00
sender = cordelia ,
2017-10-28 17:38:19 +02:00
stream_name = " Verona " ,
2016-07-17 04:07:07 +02:00
content = content ,
2017-10-28 17:38:19 +02:00
topic_name = topic ,
2016-07-17 04:07:07 +02:00
)
2016-09-19 16:34:01 +02:00
self . _update_tsvector_index ( )
2016-07-17 04:07:07 +02:00
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " sender " , operand = cordelia . email ) ,
dict ( operator = " search " , operand = " lunch " ) ,
2016-07-17 04:07:07 +02:00
]
2021-02-12 08:19:30 +01:00
result : Dict [ str , Any ] = self . get_and_check_messages (
dict (
narrow = orjson . dumps ( narrow ) . decode ( ) ,
anchor = next_message_id ,
num_before = 0 ,
num_after = 10 ,
)
)
2021-05-17 05:41:32 +02:00
self . assert_length ( result [ " messages " ] , 2 )
2021-02-12 08:20:45 +01:00
messages = result [ " messages " ]
2016-07-17 04:07:07 +02:00
2021-02-12 08:20:45 +01:00
narrow = [ dict ( operator = " search " , operand = " https://google.com " ) ]
2021-02-12 08:19:30 +01:00
link_search_result : Dict [ str , Any ] = self . get_and_check_messages (
dict (
narrow = orjson . dumps ( narrow ) . decode ( ) ,
anchor = next_message_id ,
num_before = 0 ,
num_after = 10 ,
)
)
2021-05-17 05:41:32 +02:00
self . assert_length ( link_search_result [ " messages " ] , 1 )
2016-07-17 04:07:07 +02:00
self . assertEqual (
2021-02-12 08:20:45 +01:00
link_search_result [ " messages " ] [ 0 ] [ " match_content " ] ,
2021-02-12 08:19:30 +01:00
' <p><a href= " https://google.com " >https://<span class= " highlight " >google.com</span></a></p> ' ,
)
2021-02-12 08:20:45 +01:00
( meeting_message , ) = [ m for m in messages if m [ TOPIC_NAME ] == " meetings " ]
self . assertEqual ( meeting_message [ MATCH_TOPIC ] , " meetings " )
2016-07-17 04:07:07 +02:00
self . assertEqual (
2021-02-12 08:20:45 +01:00
meeting_message [ " match_content " ] ,
2021-02-12 08:19:30 +01:00
' <p>discuss <span class= " highlight " >lunch</span> after '
+ ' <span class= " highlight " >lunch</span></p> ' ,
)
2016-07-17 04:07:07 +02:00
2021-02-12 08:20:45 +01:00
( lunch_message , ) = [ m for m in messages if m [ TOPIC_NAME ] == " lunch plans " ]
2021-02-12 08:19:30 +01:00
self . assertEqual ( lunch_message [ MATCH_TOPIC ] , ' <span class= " highlight " >lunch</span> plans ' )
2021-02-12 08:20:45 +01:00
self . assertEqual ( lunch_message [ " match_content " ] , " <p>I am hungry!</p> " )
2016-07-17 04:07:07 +02:00
2017-01-16 16:53:20 +01:00
# Should not crash when multiple search operands are present
multi_search_narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " search " , operand = " discuss " ) ,
dict ( operator = " search " , operand = " after " ) ,
2017-01-16 16:53:20 +01:00
]
2021-02-12 08:19:30 +01:00
multi_search_result : Dict [ str , Any ] = self . get_and_check_messages (
dict (
narrow = orjson . dumps ( multi_search_narrow ) . decode ( ) ,
anchor = next_message_id ,
num_after = 10 ,
num_before = 0 ,
)
)
2021-05-17 05:41:32 +02:00
self . assert_length ( multi_search_result [ " messages " ] , 1 )
2021-02-12 08:19:30 +01:00
self . assertEqual (
2021-02-12 08:20:45 +01:00
multi_search_result [ " messages " ] [ 0 ] [ " match_content " ] ,
2021-02-12 08:19:30 +01:00
' <p><span class= " highlight " >discuss</span> lunch <span class= " highlight " >after</span> lunch</p> ' ,
)
2017-01-16 16:53:20 +01:00
2020-10-23 02:43:28 +02:00
# Test searching in messages with Unicode characters
2017-10-31 13:00:37 +01:00
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " search " , operand = " 日本 " ) ,
2017-10-31 13:00:37 +01:00
]
2021-02-12 08:19:30 +01:00
result = self . get_and_check_messages (
dict (
narrow = orjson . dumps ( narrow ) . decode ( ) ,
anchor = next_message_id ,
num_after = 10 ,
num_before = 0 ,
)
)
2021-05-17 05:41:32 +02:00
self . assert_length ( result [ " messages " ] , 4 )
2021-02-12 08:20:45 +01:00
messages = result [ " messages " ]
2017-10-31 13:00:37 +01:00
2021-02-12 08:20:45 +01:00
japanese_message = [ m for m in messages if m [ TOPIC_NAME ] == " 日本 " ] [ - 1 ]
2021-02-12 08:19:30 +01:00
self . assertEqual ( japanese_message [ MATCH_TOPIC ] , ' <span class= " highlight " >日本</span> ' )
2017-10-31 13:00:37 +01:00
self . assertEqual (
2021-02-12 08:20:45 +01:00
japanese_message [ " match_content " ] ,
' <p>昨日、<span class= " highlight " >日本</span> ' + " のお菓子を送りました。</p> " ,
2021-02-12 08:19:30 +01:00
)
2017-10-31 13:00:37 +01:00
2021-02-12 08:20:45 +01:00
( english_message , ) = [ m for m in messages if m [ TOPIC_NAME ] == " english " ]
self . assertEqual ( english_message [ MATCH_TOPIC ] , " english " )
2017-10-31 13:00:37 +01:00
self . assertIn (
2021-02-12 08:20:45 +01:00
english_message [ " match_content " ] ,
2021-02-12 08:19:30 +01:00
' <p>I want to go to <span class= " highlight " >日本</span>!</p> ' ,
)
2017-10-31 13:00:37 +01:00
2020-10-23 02:43:28 +02:00
# Multiple search operands with Unicode
2017-10-31 18:24:00 +01:00
multi_search_narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " search " , operand = " ちは " ) ,
dict ( operator = " search " , operand = " 今日は " ) ,
2017-10-31 18:24:00 +01:00
]
2021-02-12 08:19:30 +01:00
multi_search_result = self . get_and_check_messages (
dict (
narrow = orjson . dumps ( multi_search_narrow ) . decode ( ) ,
anchor = next_message_id ,
num_after = 10 ,
num_before = 0 ,
)
)
2021-05-17 05:41:32 +02:00
self . assert_length ( multi_search_result [ " messages " ] , 1 )
2021-02-12 08:19:30 +01:00
self . assertEqual (
2021-02-12 08:20:45 +01:00
multi_search_result [ " messages " ] [ 0 ] [ " match_content " ] ,
2021-02-12 08:19:30 +01:00
' <p>こんに <span class= " highlight " >ちは</span> 。 <span class= " highlight " >今日は</span> いい 天気ですね。</p> ' ,
)
2017-10-31 18:24:00 +01:00
2018-01-02 18:33:28 +01:00
@override_settings ( USING_PGROONGA = False )
def test_get_visible_messages_with_search ( self ) - > None :
2021-02-12 08:20:45 +01:00
self . login ( " hamlet " )
self . subscribe ( self . example_user ( " hamlet " ) , " Scotland " )
2018-01-02 18:33:28 +01:00
messages_to_search = [
( " Gryffindor " , " Hogwart ' s house which values courage, bravery, nerve, and chivalry " ) ,
2021-02-12 08:19:30 +01:00
(
" Hufflepuff " ,
" Hogwart ' s house which values hard work, patience, justice, and loyalty. " ,
) ,
(
" Ravenclaw " ,
" Hogwart ' s house which values intelligence, creativity, learning, and wit " ,
) ,
(
" Slytherin " ,
" Hogwart ' s house which values ambition, cunning, leadership, and resourcefulness " ,
) ,
2018-01-02 18:33:28 +01:00
]
message_ids = [ ]
for topic , content in messages_to_search :
2021-02-12 08:19:30 +01:00
message_ids . append (
self . send_stream_message (
self . example_user ( " iago " ) , " Scotland " , topic_name = topic , content = content
)
)
2018-01-02 18:33:28 +01:00
self . _update_tsvector_index ( )
2021-02-12 08:20:45 +01:00
narrow = [ dict ( operator = " search " , operand = " Hogwart ' s " ) ]
2018-01-02 18:33:28 +01:00
self . message_visibility_test ( narrow , message_ids , 2 )
2017-02-23 00:21:26 +01:00
@override_settings ( USING_PGROONGA = False )
2017-11-05 10:51:25 +01:00
def test_get_messages_with_search_not_subscribed ( self ) - > None :
2017-02-23 00:21:26 +01:00
""" Verify support for searching a stream you ' re not subscribed to """
2017-08-25 06:01:29 +02:00
self . subscribe ( self . example_user ( " hamlet " ) , " newstream " )
2017-10-28 17:38:19 +02:00
self . send_stream_message (
2020-03-07 11:43:05 +01:00
sender = self . example_user ( " hamlet " ) ,
2017-10-28 17:38:19 +02:00
stream_name = " newstream " ,
2017-02-23 00:21:26 +01:00
content = " Public special content! " ,
2017-10-28 17:38:19 +02:00
topic_name = " new " ,
2017-02-23 00:21:26 +01:00
)
self . _update_tsvector_index ( )
2021-02-12 08:20:45 +01:00
self . login ( " cordelia " )
2017-02-23 00:21:26 +01:00
stream_search_narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " search " , operand = " special " ) ,
dict ( operator = " stream " , operand = " newstream " ) ,
2017-02-23 00:21:26 +01:00
]
2021-02-12 08:19:30 +01:00
stream_search_result : Dict [ str , Any ] = self . get_and_check_messages (
dict (
narrow = orjson . dumps ( stream_search_narrow ) . decode ( ) ,
anchor = 0 ,
num_after = 10 ,
num_before = 10 ,
)
)
2021-05-17 05:41:32 +02:00
self . assert_length ( stream_search_result [ " messages " ] , 1 )
2021-02-12 08:19:30 +01:00
self . assertEqual (
2021-02-12 08:20:45 +01:00
stream_search_result [ " messages " ] [ 0 ] [ " match_content " ] ,
2021-02-12 08:19:30 +01:00
' <p>Public <span class= " highlight " >special</span> content!</p> ' ,
)
2017-02-23 00:21:26 +01:00
2016-04-24 17:08:51 +02:00
@override_settings ( USING_PGROONGA = True )
2017-11-05 10:51:25 +01:00
def test_get_messages_with_search_pgroonga ( self ) - > None :
2021-02-12 08:20:45 +01:00
self . login ( " cordelia " )
2016-04-24 17:08:51 +02:00
2017-08-15 18:20:45 +02:00
next_message_id = self . get_last_message ( ) . id + 1
2016-04-24 17:08:51 +02:00
messages_to_search = [
2021-02-12 08:20:45 +01:00
( " 日本語 " , " こんにちは。今日はいい天気ですね。 " ) ,
( " 日本語 " , " 今朝はごはんを食べました。 " ) ,
( " 日本語 " , " 昨日、日本のお菓子を送りました。 " ) ,
( " english " , " I want to go to 日本! " ) ,
( " english " , " Can you speak https://en.wikipedia.org/wiki/Japanese? " ) ,
( " english " , " https://google.com " ) ,
( " bread & butter " , " chalk & cheese " ) ,
2016-04-24 17:08:51 +02:00
]
for topic , content in messages_to_search :
2017-10-28 17:38:19 +02:00
self . send_stream_message (
2020-03-07 11:43:05 +01:00
sender = self . example_user ( " cordelia " ) ,
2017-10-28 17:38:19 +02:00
stream_name = " Verona " ,
2016-04-24 17:08:51 +02:00
content = content ,
2017-10-28 17:38:19 +02:00
topic_name = topic ,
2016-04-24 17:08:51 +02:00
)
# We use brute force here and update our text search index
# for the entire zerver_message table (which is small in test
# mode). In production there is an async process which keeps
# the search index up to date.
with connection . cursor ( ) as cursor :
2021-02-12 08:19:30 +01:00
cursor . execute (
"""
2016-04-24 17:08:51 +02:00
UPDATE zerver_message SET
2018-05-19 05:39:13 +02:00
search_pgroonga = escape_html ( subject ) | | ' ' | | rendered_content
2021-02-12 08:19:30 +01:00
"""
)
2016-04-24 17:08:51 +02:00
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " search " , operand = " 日本 " ) ,
2016-04-24 17:08:51 +02:00
]
2021-02-12 08:19:30 +01:00
result : Dict [ str , Any ] = self . get_and_check_messages (
dict (
narrow = orjson . dumps ( narrow ) . decode ( ) ,
anchor = next_message_id ,
num_after = 10 ,
num_before = 0 ,
)
)
2021-05-17 05:41:32 +02:00
self . assert_length ( result [ " messages " ] , 4 )
2021-02-12 08:20:45 +01:00
messages = result [ " messages " ]
2016-04-24 17:08:51 +02:00
2021-02-12 08:20:45 +01:00
japanese_message = [ m for m in messages if m [ TOPIC_NAME ] == " 日本語 " ] [ - 1 ]
2021-02-12 08:19:30 +01:00
self . assertEqual ( japanese_message [ MATCH_TOPIC ] , ' <span class= " highlight " >日本</span>語 ' )
2016-04-24 17:08:51 +02:00
self . assertEqual (
2021-02-12 08:20:45 +01:00
japanese_message [ " match_content " ] ,
' <p>昨日、<span class= " highlight " >日本</span>の ' + " お菓子を送りました。</p> " ,
2021-02-12 08:19:30 +01:00
)
2016-04-24 17:08:51 +02:00
2021-02-12 08:20:45 +01:00
english_message = [ m for m in messages if m [ TOPIC_NAME ] == " english " ] [ 0 ]
self . assertEqual ( english_message [ MATCH_TOPIC ] , " english " )
2020-10-23 08:27:01 +02:00
self . assertEqual (
2021-02-12 08:20:45 +01:00
english_message [ " match_content " ] ,
2021-02-12 08:19:30 +01:00
' <p>I want to go to <span class= " highlight " >日本</span>!</p> ' ,
)
2016-07-17 04:07:07 +02:00
2017-01-16 16:53:20 +01:00
# Should not crash when multiple search operands are present
multi_search_narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " search " , operand = " can " ) ,
dict ( operator = " search " , operand = " speak " ) ,
dict ( operator = " search " , operand = " wiki " ) ,
2017-01-16 16:53:20 +01:00
]
2021-02-12 08:19:30 +01:00
multi_search_result : Dict [ str , Any ] = self . get_and_check_messages (
dict (
narrow = orjson . dumps ( multi_search_narrow ) . decode ( ) ,
anchor = next_message_id ,
num_after = 10 ,
num_before = 0 ,
)
)
2021-05-17 05:41:32 +02:00
self . assert_length ( multi_search_result [ " messages " ] , 1 )
2021-02-12 08:19:30 +01:00
self . assertEqual (
2021-02-12 08:20:45 +01:00
multi_search_result [ " messages " ] [ 0 ] [ " match_content " ] ,
2021-02-12 08:19:30 +01:00
' <p><span class= " highlight " >Can</span> you <span class= " highlight " >speak</span> <a href= " https://en.wikipedia.org/wiki/Japanese " >https://en.<span class= " highlight " >wiki</span>pedia.org/<span class= " highlight " >wiki</span>/Japanese</a>?</p> ' ,
)
2017-01-16 16:53:20 +01:00
2020-10-23 02:43:28 +02:00
# Multiple search operands with Unicode
2017-10-31 18:24:00 +01:00
multi_search_narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " search " , operand = " 朝は " ) ,
dict ( operator = " search " , operand = " べました " ) ,
2017-10-31 18:24:00 +01:00
]
2021-02-12 08:19:30 +01:00
multi_search_result = self . get_and_check_messages (
dict (
narrow = orjson . dumps ( multi_search_narrow ) . decode ( ) ,
anchor = next_message_id ,
num_after = 10 ,
num_before = 0 ,
)
)
2021-05-17 05:41:32 +02:00
self . assert_length ( multi_search_result [ " messages " ] , 1 )
2021-02-12 08:19:30 +01:00
self . assertEqual (
2021-02-12 08:20:45 +01:00
multi_search_result [ " messages " ] [ 0 ] [ " match_content " ] ,
2021-02-12 08:19:30 +01:00
' <p>今<span class= " highlight " >朝は</span>ごはんを食<span class= " highlight " >べました</span>。</p> ' ,
)
2017-10-31 18:24:00 +01:00
2021-02-12 08:20:45 +01:00
narrow = [ dict ( operator = " search " , operand = " https://google.com " ) ]
2021-02-12 08:19:30 +01:00
link_search_result : Dict [ str , Any ] = self . get_and_check_messages (
dict (
narrow = orjson . dumps ( narrow ) . decode ( ) ,
anchor = next_message_id ,
num_after = 10 ,
num_before = 0 ,
)
)
2021-05-17 05:41:32 +02:00
self . assert_length ( link_search_result [ " messages " ] , 1 )
2021-02-12 08:19:30 +01:00
self . assertEqual (
2021-02-12 08:20:45 +01:00
link_search_result [ " messages " ] [ 0 ] [ " match_content " ] ,
2021-02-12 08:19:30 +01:00
' <p><a href= " https://google.com " ><span class= " highlight " >https://google.com</span></a></p> ' ,
)
2017-07-12 08:19:13 +02:00
2020-10-23 02:43:28 +02:00
# Search operands with HTML special characters
2018-05-19 05:39:13 +02:00
special_search_narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " search " , operand = " butter " ) ,
2018-05-19 05:39:13 +02:00
]
2021-02-12 08:19:30 +01:00
special_search_result : Dict [ str , Any ] = self . get_and_check_messages (
dict (
narrow = orjson . dumps ( special_search_narrow ) . decode ( ) ,
anchor = next_message_id ,
num_after = 10 ,
num_before = 0 ,
)
)
2021-05-17 05:41:32 +02:00
self . assert_length ( special_search_result [ " messages " ] , 1 )
2021-02-12 08:19:30 +01:00
self . assertEqual (
2021-02-12 08:20:45 +01:00
special_search_result [ " messages " ] [ 0 ] [ MATCH_TOPIC ] ,
2021-02-12 08:19:30 +01:00
' bread & <span class= " highlight " >butter</span> ' ,
)
2018-05-19 05:39:13 +02:00
special_search_narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " search " , operand = " & " ) ,
2018-05-19 05:39:13 +02:00
]
2021-02-12 08:19:30 +01:00
special_search_result = self . get_and_check_messages (
dict (
narrow = orjson . dumps ( special_search_narrow ) . decode ( ) ,
anchor = next_message_id ,
num_after = 10 ,
num_before = 0 ,
)
)
2021-05-17 05:41:32 +02:00
self . assert_length ( special_search_result [ " messages " ] , 1 )
2021-02-12 08:19:30 +01:00
self . assertEqual (
2021-02-12 08:20:45 +01:00
special_search_result [ " messages " ] [ 0 ] [ MATCH_TOPIC ] ,
2021-02-12 08:19:30 +01:00
' bread <span class= " highlight " >&</span> butter ' ,
)
self . assertEqual (
2021-02-12 08:20:45 +01:00
special_search_result [ " messages " ] [ 0 ] [ " match_content " ] ,
2021-02-12 08:19:30 +01:00
' <p>chalk <span class= " highlight " >&</span> cheese</p> ' ,
)
2018-05-19 05:39:13 +02:00
2017-11-05 10:51:25 +01:00
def test_messages_in_narrow_for_non_search ( self ) - > None :
2020-03-07 11:43:05 +01:00
user = self . example_user ( " cordelia " )
2020-03-06 18:40:46 +01:00
self . login_user ( user )
2017-08-18 15:50:54 +02:00
2018-05-10 19:00:29 +02:00
def send ( content : str ) - > int :
2017-10-28 17:38:19 +02:00
msg_id = self . send_stream_message (
2020-03-07 11:43:05 +01:00
sender = user ,
2017-10-28 17:38:19 +02:00
stream_name = " Verona " ,
2021-02-12 08:20:45 +01:00
topic_name = " test_topic " ,
2017-08-18 15:50:54 +02:00
content = content ,
)
return msg_id
2021-02-12 08:20:45 +01:00
good_id = send ( " http://foo.com " )
bad_id = send ( " no link here " )
2017-08-18 15:50:54 +02:00
msg_ids = [ good_id , bad_id ]
2021-02-12 08:20:45 +01:00
send ( " http://bar.com but not in msg_ids " )
2017-08-18 15:50:54 +02:00
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " has " , operand = " link " ) ,
2017-08-18 15:50:54 +02:00
]
raw_params = dict ( msg_ids = msg_ids , narrow = narrow )
2020-08-07 01:09:47 +02:00
params = { k : orjson . dumps ( v ) . decode ( ) for k , v in raw_params . items ( ) }
2021-02-12 08:20:45 +01:00
result = self . client_get ( " /json/messages/matches_narrow " , params )
2017-08-18 15:50:54 +02:00
self . assert_json_success ( result )
2021-02-12 08:20:45 +01:00
messages = result . json ( ) [ " messages " ]
2021-05-17 05:41:32 +02:00
self . assert_length ( list ( messages . keys ( ) ) , 1 )
2017-08-18 15:50:54 +02:00
message = messages [ str ( good_id ) ]
2021-02-12 08:20:45 +01:00
self . assertIn ( " a href= " , message [ " match_content " ] )
self . assertIn ( " http://foo.com " , message [ " match_content " ] )
self . assertEqual ( message [ MATCH_TOPIC ] , " test_topic " )
2017-08-18 15:50:54 +02:00
2017-11-05 10:51:25 +01:00
def test_get_messages_with_only_searching_anchor ( self ) - > None :
2016-06-21 21:05:44 +02:00
"""
Test that specifying an anchor but 0 for num_before and num_after
returns at most 1 message .
"""
2021-02-12 08:20:45 +01:00
self . login ( " cordelia " )
2016-06-21 21:05:44 +02:00
2021-02-12 08:20:45 +01:00
cordelia = self . example_user ( " cordelia " )
2020-03-12 14:17:25 +01:00
anchor = self . send_stream_message ( cordelia , " Verona " )
2021-02-12 08:20:45 +01:00
narrow = [ dict ( operator = " sender " , operand = cordelia . email ) ]
2021-02-12 08:19:30 +01:00
result : Dict [ str , Any ] = self . get_and_check_messages (
dict (
narrow = orjson . dumps ( narrow ) . decode ( ) ,
anchor = anchor ,
num_before = 0 ,
num_after = 0 ,
)
)
2021-05-17 05:41:32 +02:00
self . assert_length ( result [ " messages " ] , 1 )
2016-06-21 21:05:44 +02:00
2021-02-12 08:20:45 +01:00
narrow = [ dict ( operator = " is " , operand = " mentioned " ) ]
2021-02-12 08:19:30 +01:00
result = self . get_and_check_messages (
dict ( narrow = orjson . dumps ( narrow ) . decode ( ) , anchor = anchor , num_before = 0 , num_after = 0 )
)
2021-05-17 05:41:32 +02:00
self . assert_length ( result [ " messages " ] , 0 )
2016-06-21 21:05:44 +02:00
2021-07-13 20:23:36 +02:00
def test_get_messages_for_resolved_topics ( self ) - > None :
self . login ( " cordelia " )
cordelia = self . example_user ( " cordelia " )
self . send_stream_message ( cordelia , " Verona " , " whatever1 " )
resolved_topic_name = RESOLVED_TOPIC_PREFIX + " foo "
anchor = self . send_stream_message ( cordelia , " Verona " , " whatever2 " , resolved_topic_name )
self . send_stream_message ( cordelia , " Verona " , " whatever3 " )
narrow = [ dict ( operator = " is " , operand = " resolved " ) ]
result = self . get_and_check_messages (
dict ( narrow = orjson . dumps ( narrow ) . decode ( ) , anchor = anchor , num_before = 1 , num_after = 1 )
)
self . assert_length ( result [ " messages " ] , 1 )
self . assertEqual ( result [ " messages " ] [ 0 ] [ " id " ] , anchor )
2018-01-02 18:33:28 +01:00
def test_get_visible_messages_with_anchor ( self ) - > None :
def messages_matches_ids ( messages : List [ Dict [ str , Any ] ] , message_ids : List [ int ] ) - > None :
2021-05-17 05:41:32 +02:00
self . assert_length ( messages , len ( message_ids ) )
2018-01-02 18:33:28 +01:00
for message in messages :
2021-02-12 08:19:30 +01:00
assert message [ " id " ] in message_ids
2018-01-02 18:33:28 +01:00
2021-02-12 08:20:45 +01:00
self . login ( " hamlet " )
2018-01-02 18:33:28 +01:00
2018-09-19 14:23:02 +02:00
Message . objects . all ( ) . delete ( )
2018-01-02 18:33:28 +01:00
message_ids = [ ]
for i in range ( 10 ) :
2020-03-07 11:43:05 +01:00
message_ids . append ( self . send_stream_message ( self . example_user ( " cordelia " ) , " Verona " ) )
2018-01-02 18:33:28 +01:00
2018-03-15 11:43:51 +01:00
data = self . get_messages_response ( anchor = message_ids [ 9 ] , num_before = 9 , num_after = 0 )
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
self . assertEqual ( data [ " found_anchor " ] , True )
self . assertEqual ( data [ " found_oldest " ] , False )
self . assertEqual ( data [ " found_newest " ] , False )
self . assertEqual ( data [ " history_limited " ] , False )
2018-01-02 18:33:28 +01:00
messages_matches_ids ( messages , message_ids )
2018-03-15 11:58:25 +01:00
with first_visible_id_as ( message_ids [ 5 ] ) :
2018-03-15 11:43:51 +01:00
data = self . get_messages_response ( anchor = message_ids [ 9 ] , num_before = 9 , num_after = 0 )
2018-03-15 11:58:25 +01:00
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
self . assertEqual ( data [ " found_anchor " ] , True )
self . assertEqual ( data [ " found_oldest " ] , True )
self . assertEqual ( data [ " found_newest " ] , False )
self . assertEqual ( data [ " history_limited " ] , True )
2018-01-02 18:33:28 +01:00
messages_matches_ids ( messages , message_ids [ 5 : ] )
2018-03-15 11:58:25 +01:00
with first_visible_id_as ( message_ids [ 2 ] ) :
2018-03-15 11:43:51 +01:00
data = self . get_messages_response ( anchor = message_ids [ 6 ] , num_before = 9 , num_after = 0 )
2018-03-15 11:58:25 +01:00
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
self . assertEqual ( data [ " found_anchor " ] , True )
self . assertEqual ( data [ " found_oldest " ] , True )
self . assertEqual ( data [ " found_newest " ] , False )
self . assertEqual ( data [ " history_limited " ] , True )
2018-01-02 18:33:28 +01:00
messages_matches_ids ( messages , message_ids [ 2 : 7 ] )
2018-03-15 11:58:25 +01:00
with first_visible_id_as ( message_ids [ 9 ] + 1 ) :
2018-03-15 11:43:51 +01:00
data = self . get_messages_response ( anchor = message_ids [ 9 ] , num_before = 9 , num_after = 0 )
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
2018-03-15 11:43:51 +01:00
self . assert_length ( messages , 0 )
2021-02-12 08:20:45 +01:00
self . assertEqual ( data [ " found_anchor " ] , False )
self . assertEqual ( data [ " found_oldest " ] , True )
self . assertEqual ( data [ " found_newest " ] , False )
self . assertEqual ( data [ " history_limited " ] , True )
2018-01-02 18:33:28 +01:00
2018-03-15 11:43:51 +01:00
data = self . get_messages_response ( anchor = message_ids [ 5 ] , num_before = 0 , num_after = 5 )
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
self . assertEqual ( data [ " found_anchor " ] , True )
self . assertEqual ( data [ " found_oldest " ] , False )
self . assertEqual ( data [ " found_newest " ] , True )
self . assertEqual ( data [ " history_limited " ] , False )
2018-01-02 18:33:28 +01:00
messages_matches_ids ( messages , message_ids [ 5 : ] )
2018-03-15 11:58:25 +01:00
with first_visible_id_as ( message_ids [ 7 ] ) :
2018-03-15 11:43:51 +01:00
data = self . get_messages_response ( anchor = message_ids [ 5 ] , num_before = 0 , num_after = 5 )
2018-03-15 11:58:25 +01:00
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
self . assertEqual ( data [ " found_anchor " ] , False )
self . assertEqual ( data [ " found_oldest " ] , False )
self . assertEqual ( data [ " found_newest " ] , True )
self . assertEqual ( data [ " history_limited " ] , False )
2018-01-02 18:33:28 +01:00
messages_matches_ids ( messages , message_ids [ 7 : ] )
2018-03-15 11:58:25 +01:00
with first_visible_id_as ( message_ids [ 2 ] ) :
2018-03-15 11:43:51 +01:00
data = self . get_messages_response ( anchor = message_ids [ 0 ] , num_before = 0 , num_after = 5 )
2018-03-15 11:58:25 +01:00
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
self . assertEqual ( data [ " found_anchor " ] , False )
self . assertEqual ( data [ " found_oldest " ] , False )
self . assertEqual ( data [ " found_newest " ] , False )
self . assertEqual ( data [ " history_limited " ] , False )
2018-03-15 11:21:36 +01:00
messages_matches_ids ( messages , message_ids [ 2 : 7 ] )
2018-01-02 18:33:28 +01:00
2018-03-15 11:58:25 +01:00
with first_visible_id_as ( message_ids [ 9 ] + 1 ) :
2018-03-15 11:43:51 +01:00
data = self . get_messages_response ( anchor = message_ids [ 0 ] , num_before = 0 , num_after = 5 )
2018-01-02 18:33:28 +01:00
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
self . assertEqual ( data [ " found_anchor " ] , False )
self . assertEqual ( data [ " found_oldest " ] , False )
self . assertEqual ( data [ " found_newest " ] , True )
self . assertEqual ( data [ " history_limited " ] , False )
2018-03-15 11:43:51 +01:00
self . assert_length ( messages , 0 )
2018-01-02 18:33:28 +01:00
2020-01-28 06:30:23 +01:00
# Verify that with anchor=0 we always get found_oldest=True
with first_visible_id_as ( 0 ) :
data = self . get_messages_response ( anchor = 0 , num_before = 0 , num_after = 5 )
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
2020-01-28 06:30:23 +01:00
messages_matches_ids ( messages , message_ids [ 0 : 5 ] )
2021-02-12 08:20:45 +01:00
self . assertEqual ( data [ " found_anchor " ] , False )
self . assertEqual ( data [ " found_oldest " ] , True )
self . assertEqual ( data [ " found_newest " ] , False )
self . assertEqual ( data [ " history_limited " ] , False )
2020-01-28 06:30:23 +01:00
2020-01-28 06:37:25 +01:00
# Verify that with anchor=-1 we always get found_oldest=True
# anchor=-1 is arguably invalid input, but it used to be supported
with first_visible_id_as ( 0 ) :
data = self . get_messages_response ( anchor = - 1 , num_before = 0 , num_after = 5 )
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
2020-01-28 06:37:25 +01:00
messages_matches_ids ( messages , message_ids [ 0 : 5 ] )
2021-02-12 08:20:45 +01:00
self . assertEqual ( data [ " found_anchor " ] , False )
self . assertEqual ( data [ " found_oldest " ] , True )
self . assertEqual ( data [ " found_newest " ] , False )
self . assertEqual ( data [ " history_limited " ] , False )
2020-01-28 06:37:25 +01:00
# And anchor='first' does the same thing.
with first_visible_id_as ( 0 ) :
2021-02-12 08:20:45 +01:00
data = self . get_messages_response ( anchor = " oldest " , num_before = 0 , num_after = 5 )
2020-01-28 06:37:25 +01:00
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
2020-01-28 06:37:25 +01:00
messages_matches_ids ( messages , message_ids [ 0 : 5 ] )
2021-02-12 08:20:45 +01:00
self . assertEqual ( data [ " found_anchor " ] , False )
self . assertEqual ( data [ " found_oldest " ] , True )
self . assertEqual ( data [ " found_newest " ] , False )
self . assertEqual ( data [ " history_limited " ] , False )
2020-01-28 06:37:25 +01:00
2018-03-15 11:43:51 +01:00
data = self . get_messages_response ( anchor = message_ids [ 5 ] , num_before = 5 , num_after = 4 )
2018-03-15 11:58:25 +01:00
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
self . assertEqual ( data [ " found_anchor " ] , True )
self . assertEqual ( data [ " found_oldest " ] , False )
self . assertEqual ( data [ " found_newest " ] , False )
self . assertEqual ( data [ " history_limited " ] , False )
2018-09-19 14:23:02 +02:00
messages_matches_ids ( messages , message_ids )
data = self . get_messages_response ( anchor = message_ids [ 5 ] , num_before = 10 , num_after = 10 )
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
self . assertEqual ( data [ " found_anchor " ] , True )
self . assertEqual ( data [ " found_oldest " ] , True )
self . assertEqual ( data [ " found_newest " ] , True )
self . assertEqual ( data [ " history_limited " ] , False )
2018-03-15 11:43:51 +01:00
messages_matches_ids ( messages , message_ids )
2018-01-02 18:33:28 +01:00
2018-03-15 11:58:25 +01:00
with first_visible_id_as ( message_ids [ 5 ] ) :
2018-03-15 11:43:51 +01:00
data = self . get_messages_response ( anchor = message_ids [ 5 ] , num_before = 5 , num_after = 4 )
2018-03-15 11:58:25 +01:00
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
self . assertEqual ( data [ " found_anchor " ] , True )
self . assertEqual ( data [ " found_oldest " ] , True )
self . assertEqual ( data [ " found_newest " ] , False )
self . assertEqual ( data [ " history_limited " ] , True )
2018-01-02 18:33:28 +01:00
messages_matches_ids ( messages , message_ids [ 5 : ] )
2018-09-19 14:23:02 +02:00
with first_visible_id_as ( message_ids [ 5 ] ) :
data = self . get_messages_response ( anchor = message_ids [ 2 ] , num_before = 5 , num_after = 3 )
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
self . assertEqual ( data [ " found_anchor " ] , False )
self . assertEqual ( data [ " found_oldest " ] , True )
self . assertEqual ( data [ " found_newest " ] , False )
self . assertEqual ( data [ " history_limited " ] , True )
2018-09-19 14:23:02 +02:00
messages_matches_ids ( messages , message_ids [ 5 : 8 ] )
2018-03-15 11:58:25 +01:00
with first_visible_id_as ( message_ids [ 5 ] ) :
2018-03-15 11:43:51 +01:00
data = self . get_messages_response ( anchor = message_ids [ 2 ] , num_before = 10 , num_after = 10 )
2018-03-15 11:58:25 +01:00
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
self . assertEqual ( data [ " found_anchor " ] , False )
self . assertEqual ( data [ " found_oldest " ] , True )
self . assertEqual ( data [ " found_newest " ] , True )
2018-01-02 18:33:28 +01:00
messages_matches_ids ( messages , message_ids [ 5 : ] )
2018-03-15 11:58:25 +01:00
with first_visible_id_as ( message_ids [ 9 ] + 1 ) :
2018-03-15 11:43:51 +01:00
data = self . get_messages_response ( anchor = message_ids [ 5 ] , num_before = 5 , num_after = 4 )
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
self . assertEqual ( data [ " found_anchor " ] , False )
self . assertEqual ( data [ " found_oldest " ] , True )
self . assertEqual ( data [ " found_newest " ] , True )
self . assertEqual ( data [ " history_limited " ] , True )
2018-03-15 11:43:51 +01:00
self . assert_length ( messages , 0 )
2018-01-02 18:33:28 +01:00
2018-03-15 11:58:25 +01:00
with first_visible_id_as ( message_ids [ 5 ] ) :
2018-03-15 11:43:51 +01:00
data = self . get_messages_response ( anchor = message_ids [ 5 ] , num_before = 0 , num_after = 0 )
2018-03-15 11:58:25 +01:00
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
self . assertEqual ( data [ " found_anchor " ] , True )
self . assertEqual ( data [ " found_oldest " ] , False )
self . assertEqual ( data [ " found_newest " ] , False )
self . assertEqual ( data [ " history_limited " ] , False )
2018-01-02 18:33:28 +01:00
messages_matches_ids ( messages , message_ids [ 5 : 6 ] )
2018-03-15 11:58:25 +01:00
with first_visible_id_as ( message_ids [ 5 ] ) :
2018-03-15 11:43:51 +01:00
data = self . get_messages_response ( anchor = message_ids [ 2 ] , num_before = 0 , num_after = 0 )
2018-03-15 11:58:25 +01:00
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
self . assertEqual ( data [ " found_anchor " ] , False )
self . assertEqual ( data [ " found_oldest " ] , False )
self . assertEqual ( data [ " found_newest " ] , False )
self . assertEqual ( data [ " history_limited " ] , False )
2018-03-15 11:58:25 +01:00
self . assert_length ( messages , 0 )
2018-01-02 18:33:28 +01:00
2020-01-28 06:30:23 +01:00
# Verify some additional behavior of found_newest.
with first_visible_id_as ( 0 ) :
2021-02-12 08:19:30 +01:00
data = self . get_messages_response (
anchor = LARGER_THAN_MAX_MESSAGE_ID , num_before = 5 , num_after = 0
)
2020-01-28 06:37:25 +01:00
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
2020-01-28 06:37:25 +01:00
self . assert_length ( messages , 5 )
2021-02-12 08:20:45 +01:00
self . assertEqual ( data [ " found_anchor " ] , False )
self . assertEqual ( data [ " found_oldest " ] , False )
self . assertEqual ( data [ " found_newest " ] , True )
self . assertEqual ( data [ " history_limited " ] , False )
2020-01-28 06:37:25 +01:00
# The anchor value of 'last' behaves just like LARGER_THAN_MAX_MESSAGE_ID.
with first_visible_id_as ( 0 ) :
2021-02-12 08:20:45 +01:00
data = self . get_messages_response ( anchor = " newest " , num_before = 5 , num_after = 0 )
2020-01-28 06:30:23 +01:00
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
2020-01-28 06:30:23 +01:00
self . assert_length ( messages , 5 )
2021-02-12 08:20:45 +01:00
self . assertEqual ( data [ " found_anchor " ] , False )
self . assertEqual ( data [ " found_oldest " ] , False )
self . assertEqual ( data [ " found_newest " ] , True )
self . assertEqual ( data [ " history_limited " ] , False )
2020-01-28 06:30:23 +01:00
with first_visible_id_as ( 0 ) :
2021-02-12 08:19:30 +01:00
data = self . get_messages_response (
anchor = LARGER_THAN_MAX_MESSAGE_ID + 1 , num_before = 5 , num_after = 0
)
2020-01-28 06:30:23 +01:00
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
2020-01-28 06:30:23 +01:00
self . assert_length ( messages , 5 )
2021-02-12 08:20:45 +01:00
self . assertEqual ( data [ " found_anchor " ] , False )
self . assertEqual ( data [ " found_oldest " ] , False )
self . assertEqual ( data [ " found_newest " ] , True )
self . assertEqual ( data [ " history_limited " ] , False )
2020-01-28 06:30:23 +01:00
with first_visible_id_as ( 0 ) :
2021-02-12 08:19:30 +01:00
data = self . get_messages_response (
anchor = LARGER_THAN_MAX_MESSAGE_ID , num_before = 20 , num_after = 0
)
2020-01-28 06:30:23 +01:00
2021-02-12 08:20:45 +01:00
messages = data [ " messages " ]
2020-01-28 06:30:23 +01:00
self . assert_length ( messages , 10 )
2021-02-12 08:20:45 +01:00
self . assertEqual ( data [ " found_anchor " ] , False )
self . assertEqual ( data [ " found_oldest " ] , True )
self . assertEqual ( data [ " found_newest " ] , True )
self . assertEqual ( data [ " history_limited " ] , False )
2020-01-28 06:30:23 +01:00
2017-11-05 10:51:25 +01:00
def test_missing_params ( self ) - > None :
2016-06-21 21:05:44 +02:00
"""
anchor , num_before , and num_after are all required
2017-03-24 07:51:46 +01:00
POST parameters for get_messages .
2016-06-21 21:05:44 +02:00
"""
2021-02-12 08:20:45 +01:00
self . login ( " hamlet " )
2016-06-21 21:05:44 +02:00
python: Convert assignment type annotations to Python 3.6 style.
This commit was split by tabbott; this piece covers the vast majority
of files in Zulip, but excludes scripts/, tools/, and puppet/ to help
ensure we at least show the right error messages for Xenial systems.
We can likely further refine the remaining pieces with some testing.
Generated by com2ann, with whitespace fixes and various manual fixes
for runtime issues:
- invoiced_through: Optional[LicenseLedger] = models.ForeignKey(
+ invoiced_through: Optional["LicenseLedger"] = models.ForeignKey(
-_apns_client: Optional[APNsClient] = None
+_apns_client: Optional["APNsClient"] = None
- notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- signup_notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ signup_notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- author: Optional[UserProfile] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
+ author: Optional["UserProfile"] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
- bot_owner: Optional[UserProfile] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
+ bot_owner: Optional["UserProfile"] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
- default_sending_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
- default_events_register_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_sending_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_events_register_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
-descriptors_by_handler_id: Dict[int, ClientDescriptor] = {}
+descriptors_by_handler_id: Dict[int, "ClientDescriptor"] = {}
-worker_classes: Dict[str, Type[QueueProcessingWorker]] = {}
-queues: Dict[str, Dict[str, Type[QueueProcessingWorker]]] = {}
+worker_classes: Dict[str, Type["QueueProcessingWorker"]] = {}
+queues: Dict[str, Dict[str, Type["QueueProcessingWorker"]]] = {}
-AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional[LDAPSearch] = None
+AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional["LDAPSearch"] = None
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-22 01:09:50 +02:00
required_args : Tuple [ Tuple [ str , int ] , . . . ] = ( ( " num_before " , 1 ) , ( " num_after " , 1 ) )
2016-06-21 21:05:44 +02:00
for i in range ( len ( required_args ) ) :
2021-02-12 08:19:30 +01:00
post_params = dict ( required_args [ : i ] + required_args [ i + 1 : ] )
2016-07-28 00:38:45 +02:00
result = self . client_get ( " /json/messages " , post_params )
2021-02-12 08:19:30 +01:00
self . assert_json_error ( result , f " Missing ' { required_args [ i ] [ 0 ] } ' argument " )
2016-06-21 21:05:44 +02:00
2018-09-09 14:54:52 +02:00
def test_get_messages_limits ( self ) - > None :
"""
A call to GET / json / messages requesting more than
MAX_MESSAGES_PER_FETCH messages returns an error message .
"""
2021-02-12 08:20:45 +01:00
self . login ( " hamlet " )
2018-09-09 14:54:52 +02:00
result = self . client_get ( " /json/messages " , dict ( anchor = 1 , num_before = 3000 , num_after = 3000 ) )
self . assert_json_error ( result , " Too many messages requested (maximum 5000). " )
result = self . client_get ( " /json/messages " , dict ( anchor = 1 , num_before = 6000 , num_after = 0 ) )
self . assert_json_error ( result , " Too many messages requested (maximum 5000). " )
result = self . client_get ( " /json/messages " , dict ( anchor = 1 , num_before = 0 , num_after = 6000 ) )
self . assert_json_error ( result , " Too many messages requested (maximum 5000). " )
2017-11-05 10:51:25 +01:00
def test_bad_int_params ( self ) - > None :
2016-06-21 21:05:44 +02:00
"""
num_before , num_after , and narrow must all be non - negative
integers or strings that can be converted to non - negative integers .
"""
2021-02-12 08:20:45 +01:00
self . login ( " hamlet " )
2016-06-21 21:05:44 +02:00
2020-09-02 06:59:07 +02:00
other_params = { " narrow " : { } , " anchor " : 0 }
2016-06-21 21:05:44 +02:00
int_params = [ " num_before " , " num_after " ]
bad_types = ( False , " " , " -1 " , - 1 )
for idx , param in enumerate ( int_params ) :
for type in bad_types :
# Rotate through every bad type for every integer
# parameter, one at a time.
2020-09-02 06:59:07 +02:00
post_params = {
* * other_params ,
param : type ,
2021-02-12 08:19:30 +01:00
* * { other_param : 0 for other_param in int_params [ : idx ] + int_params [ idx + 1 : ] } ,
2020-09-02 06:59:07 +02:00
}
2016-07-28 00:38:45 +02:00
result = self . client_get ( " /json/messages " , post_params )
2021-02-12 08:19:30 +01:00
self . assert_json_error ( result , f " Bad value for ' { param } ' : { type } " )
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def test_bad_narrow_type ( self ) - > None :
2016-06-21 21:05:44 +02:00
"""
narrow must be a list of string pairs .
"""
2021-02-12 08:20:45 +01:00
self . login ( " hamlet " )
2016-06-21 21:05:44 +02:00
2020-09-02 06:59:07 +02:00
other_params = { " anchor " : 0 , " num_before " : 0 , " num_after " : 0 }
2016-06-21 21:05:44 +02:00
python: Convert assignment type annotations to Python 3.6 style.
This commit was split by tabbott; this piece covers the vast majority
of files in Zulip, but excludes scripts/, tools/, and puppet/ to help
ensure we at least show the right error messages for Xenial systems.
We can likely further refine the remaining pieces with some testing.
Generated by com2ann, with whitespace fixes and various manual fixes
for runtime issues:
- invoiced_through: Optional[LicenseLedger] = models.ForeignKey(
+ invoiced_through: Optional["LicenseLedger"] = models.ForeignKey(
-_apns_client: Optional[APNsClient] = None
+_apns_client: Optional["APNsClient"] = None
- notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- signup_notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ signup_notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- author: Optional[UserProfile] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
+ author: Optional["UserProfile"] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
- bot_owner: Optional[UserProfile] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
+ bot_owner: Optional["UserProfile"] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
- default_sending_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
- default_events_register_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_sending_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_events_register_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
-descriptors_by_handler_id: Dict[int, ClientDescriptor] = {}
+descriptors_by_handler_id: Dict[int, "ClientDescriptor"] = {}
-worker_classes: Dict[str, Type[QueueProcessingWorker]] = {}
-queues: Dict[str, Dict[str, Type[QueueProcessingWorker]]] = {}
+worker_classes: Dict[str, Type["QueueProcessingWorker"]] = {}
+queues: Dict[str, Dict[str, Type["QueueProcessingWorker"]]] = {}
-AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional[LDAPSearch] = None
+AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional["LDAPSearch"] = None
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-22 01:09:50 +02:00
bad_types : Tuple [ Union [ int , str , bool ] , . . . ] = (
2021-02-12 08:19:30 +01:00
False ,
0 ,
2021-02-12 08:20:45 +01:00
" " ,
" { malformed json, " ,
" {foo: 3} " ,
" [1,2] " ,
2021-02-12 08:19:30 +01:00
' [[ " x " , " y " , " z " ]] ' ,
python: Convert assignment type annotations to Python 3.6 style.
This commit was split by tabbott; this piece covers the vast majority
of files in Zulip, but excludes scripts/, tools/, and puppet/ to help
ensure we at least show the right error messages for Xenial systems.
We can likely further refine the remaining pieces with some testing.
Generated by com2ann, with whitespace fixes and various manual fixes
for runtime issues:
- invoiced_through: Optional[LicenseLedger] = models.ForeignKey(
+ invoiced_through: Optional["LicenseLedger"] = models.ForeignKey(
-_apns_client: Optional[APNsClient] = None
+_apns_client: Optional["APNsClient"] = None
- notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- signup_notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ signup_notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- author: Optional[UserProfile] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
+ author: Optional["UserProfile"] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
- bot_owner: Optional[UserProfile] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
+ bot_owner: Optional["UserProfile"] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
- default_sending_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
- default_events_register_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_sending_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_events_register_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
-descriptors_by_handler_id: Dict[int, ClientDescriptor] = {}
+descriptors_by_handler_id: Dict[int, "ClientDescriptor"] = {}
-worker_classes: Dict[str, Type[QueueProcessingWorker]] = {}
-queues: Dict[str, Dict[str, Type[QueueProcessingWorker]]] = {}
+worker_classes: Dict[str, Type["QueueProcessingWorker"]] = {}
+queues: Dict[str, Dict[str, Type["QueueProcessingWorker"]]] = {}
-AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional[LDAPSearch] = None
+AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional["LDAPSearch"] = None
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-22 01:09:50 +02:00
)
2016-06-21 21:05:44 +02:00
for type in bad_types :
2020-09-02 06:59:07 +02:00
post_params = { * * other_params , " narrow " : type }
2016-07-28 00:38:45 +02:00
result = self . client_get ( " /json/messages " , post_params )
2021-02-12 08:19:30 +01:00
self . assert_json_error ( result , f " Bad value for ' narrow ' : { type } " )
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def test_bad_narrow_operator ( self ) - > None :
2016-06-21 21:05:44 +02:00
"""
Unrecognized narrow operators are rejected .
"""
2021-02-12 08:20:45 +01:00
self . login ( " hamlet " )
for operator in [ " " , " foo " , " stream:verona " , " __init__ " ] :
narrow = [ dict ( operator = operator , operand = " " ) ]
2020-08-07 01:09:47 +02:00
params = dict ( anchor = 0 , num_before = 0 , num_after = 0 , narrow = orjson . dumps ( narrow ) . decode ( ) )
2016-07-28 00:38:45 +02:00
result = self . client_get ( " /json/messages " , params )
2021-02-12 08:19:30 +01:00
self . assert_json_error_contains ( result , " Invalid narrow operator: unknown operator " )
2016-06-21 21:05:44 +02:00
2019-08-07 17:32:19 +02:00
def test_invalid_narrow_operand_in_dict ( self ) - > None :
2021-02-12 08:20:45 +01:00
self . login ( " hamlet " )
2019-08-07 17:32:19 +02:00
# str or int is required for sender, group-pm-with, stream
2021-02-12 08:20:45 +01:00
invalid_operands = [ [ " 1 " ] , [ 2 ] , None ]
2019-08-07 17:32:19 +02:00
error_msg = ' elem[ " operand " ] is not a string or integer '
2021-02-12 08:20:45 +01:00
for operand in [ " sender " , " group-pm-with " , " stream " ] :
2019-08-07 17:32:19 +02:00
self . exercise_bad_narrow_operand_using_dict_api ( operand , invalid_operands , error_msg )
# str or int list is required for pm-with operator
invalid_operands = [ None ]
error_msg = ' elem[ " operand " ] is not a string or an integer list '
2021-02-12 08:20:45 +01:00
self . exercise_bad_narrow_operand_using_dict_api ( " pm-with " , invalid_operands , error_msg )
2019-08-07 17:32:19 +02:00
2021-02-12 08:20:45 +01:00
invalid_operands = [ [ " 2 " ] ]
2019-08-07 17:32:19 +02:00
error_msg = ' elem[ " operand " ][0] is not an integer '
2021-02-12 08:20:45 +01:00
self . exercise_bad_narrow_operand_using_dict_api ( " pm-with " , invalid_operands , error_msg )
2019-08-07 17:32:19 +02:00
# For others only str is acceptable
invalid_operands = [ 2 , None , [ 1 ] ]
error_msg = ' elem[ " operand " ] is not a string '
2021-02-12 08:20:45 +01:00
for operand in [ " is " , " near " , " has " , " id " ] :
2019-08-07 17:32:19 +02:00
self . exercise_bad_narrow_operand_using_dict_api ( operand , invalid_operands , error_msg )
2020-04-11 17:32:32 +02:00
# Disallow empty search terms
error_msg = ' elem[ " operand " ] cannot be blank. '
2021-02-12 08:20:45 +01:00
self . exercise_bad_narrow_operand_using_dict_api ( " search " , [ " " ] , error_msg )
2020-04-11 17:32:32 +02:00
2019-08-07 17:32:19 +02:00
# The exercise_bad_narrow_operand helper method uses legacy tuple format to
2020-10-23 02:43:28 +02:00
# test bad narrow, this method uses the current dict API format
2021-02-12 08:19:30 +01:00
def exercise_bad_narrow_operand_using_dict_api (
self , operator : str , operands : Sequence [ Any ] , error_msg : str
) - > None :
2019-08-07 17:32:19 +02:00
for operand in operands :
narrow = [ dict ( operator = operator , operand = operand ) ]
2020-08-07 01:09:47 +02:00
params = dict ( anchor = 0 , num_before = 0 , num_after = 0 , narrow = orjson . dumps ( narrow ) . decode ( ) )
2021-02-12 08:20:45 +01:00
result = self . client_get ( " /json/messages " , params )
2019-08-07 17:32:19 +02:00
self . assert_json_error_contains ( result , error_msg )
2016-07-26 23:53:14 +02:00
2021-02-12 08:19:30 +01:00
def exercise_bad_narrow_operand (
self , operator : str , operands : Sequence [ Any ] , error_msg : str
) - > None :
2020-09-02 06:59:07 +02:00
other_params = { " anchor " : " 0 " , " num_before " : " 0 " , " num_after " : " 0 " }
2016-06-21 21:05:44 +02:00
for operand in operands :
2020-09-02 06:59:07 +02:00
post_params = { * * other_params , " narrow " : orjson . dumps ( [ [ operator , operand ] ] ) . decode ( ) }
2016-07-28 00:38:45 +02:00
result = self . client_get ( " /json/messages " , post_params )
2016-06-21 21:05:44 +02:00
self . assert_json_error_contains ( result , error_msg )
2017-11-05 10:51:25 +01:00
def test_bad_narrow_stream_content ( self ) - > None :
2016-06-21 21:05:44 +02:00
"""
2017-03-24 07:51:46 +01:00
If an invalid stream name is requested in get_messages , an error is
2016-06-21 21:05:44 +02:00
returned .
"""
2021-02-12 08:20:45 +01:00
self . login ( " hamlet " )
python: Convert assignment type annotations to Python 3.6 style.
This commit was split by tabbott; this piece covers the vast majority
of files in Zulip, but excludes scripts/, tools/, and puppet/ to help
ensure we at least show the right error messages for Xenial systems.
We can likely further refine the remaining pieces with some testing.
Generated by com2ann, with whitespace fixes and various manual fixes
for runtime issues:
- invoiced_through: Optional[LicenseLedger] = models.ForeignKey(
+ invoiced_through: Optional["LicenseLedger"] = models.ForeignKey(
-_apns_client: Optional[APNsClient] = None
+_apns_client: Optional["APNsClient"] = None
- notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- signup_notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ signup_notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- author: Optional[UserProfile] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
+ author: Optional["UserProfile"] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
- bot_owner: Optional[UserProfile] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
+ bot_owner: Optional["UserProfile"] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
- default_sending_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
- default_events_register_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_sending_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_events_register_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
-descriptors_by_handler_id: Dict[int, ClientDescriptor] = {}
+descriptors_by_handler_id: Dict[int, "ClientDescriptor"] = {}
-worker_classes: Dict[str, Type[QueueProcessingWorker]] = {}
-queues: Dict[str, Dict[str, Type[QueueProcessingWorker]]] = {}
+worker_classes: Dict[str, Type["QueueProcessingWorker"]] = {}
+queues: Dict[str, Dict[str, Type["QueueProcessingWorker"]]] = {}
-AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional[LDAPSearch] = None
+AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional["LDAPSearch"] = None
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-22 01:09:50 +02:00
bad_stream_content : Tuple [ int , List [ None ] , List [ str ] ] = ( 0 , [ ] , [ " x " , " y " ] )
2021-02-12 08:19:30 +01:00
self . exercise_bad_narrow_operand ( " stream " , bad_stream_content , " Bad value for ' narrow ' " )
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def test_bad_narrow_one_on_one_email_content ( self ) - > None :
2016-06-21 21:05:44 +02:00
"""
2017-03-24 07:51:46 +01:00
If an invalid ' pm-with ' is requested in get_messages , an
2016-06-21 21:05:44 +02:00
error is returned .
"""
2021-02-12 08:20:45 +01:00
self . login ( " hamlet " )
python: Convert assignment type annotations to Python 3.6 style.
This commit was split by tabbott; this piece covers the vast majority
of files in Zulip, but excludes scripts/, tools/, and puppet/ to help
ensure we at least show the right error messages for Xenial systems.
We can likely further refine the remaining pieces with some testing.
Generated by com2ann, with whitespace fixes and various manual fixes
for runtime issues:
- invoiced_through: Optional[LicenseLedger] = models.ForeignKey(
+ invoiced_through: Optional["LicenseLedger"] = models.ForeignKey(
-_apns_client: Optional[APNsClient] = None
+_apns_client: Optional["APNsClient"] = None
- notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- signup_notifications_stream: Optional[Stream] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
+ signup_notifications_stream: Optional["Stream"] = models.ForeignKey('Stream', related_name='+', null=True, blank=True, on_delete=CASCADE)
- author: Optional[UserProfile] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
+ author: Optional["UserProfile"] = models.ForeignKey('UserProfile', blank=True, null=True, on_delete=CASCADE)
- bot_owner: Optional[UserProfile] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
+ bot_owner: Optional["UserProfile"] = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
- default_sending_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
- default_events_register_stream: Optional[Stream] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_sending_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
+ default_events_register_stream: Optional["Stream"] = models.ForeignKey('zerver.Stream', null=True, related_name='+', on_delete=CASCADE)
-descriptors_by_handler_id: Dict[int, ClientDescriptor] = {}
+descriptors_by_handler_id: Dict[int, "ClientDescriptor"] = {}
-worker_classes: Dict[str, Type[QueueProcessingWorker]] = {}
-queues: Dict[str, Dict[str, Type[QueueProcessingWorker]]] = {}
+worker_classes: Dict[str, Type["QueueProcessingWorker"]] = {}
+queues: Dict[str, Dict[str, Type["QueueProcessingWorker"]]] = {}
-AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional[LDAPSearch] = None
+AUTH_LDAP_REVERSE_EMAIL_SEARCH: Optional["LDAPSearch"] = None
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-22 01:09:50 +02:00
bad_stream_content : Tuple [ int , List [ None ] , List [ str ] ] = ( 0 , [ ] , [ " x " , " y " ] )
2021-02-12 08:19:30 +01:00
self . exercise_bad_narrow_operand ( " pm-with " , bad_stream_content , " Bad value for ' narrow ' " )
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def test_bad_narrow_nonexistent_stream ( self ) - > None :
2021-02-12 08:20:45 +01:00
self . login ( " hamlet " )
2021-02-12 08:19:30 +01:00
self . exercise_bad_narrow_operand (
2021-02-12 08:20:45 +01:00
" stream " , [ " non-existent stream " ] , " Invalid narrow operator: unknown stream "
2021-02-12 08:19:30 +01:00
)
2016-06-21 21:05:44 +02:00
2019-08-07 17:32:19 +02:00
non_existing_stream_id = 1232891381239
2021-02-12 08:19:30 +01:00
self . exercise_bad_narrow_operand_using_dict_api (
2021-02-12 08:20:45 +01:00
" stream " , [ non_existing_stream_id ] , " Invalid narrow operator: unknown stream "
2021-02-12 08:19:30 +01:00
)
2019-08-07 17:32:19 +02:00
2017-11-05 10:51:25 +01:00
def test_bad_narrow_nonexistent_email ( self ) - > None :
2021-02-12 08:20:45 +01:00
self . login ( " hamlet " )
2021-02-12 08:19:30 +01:00
self . exercise_bad_narrow_operand (
2021-02-12 08:20:45 +01:00
" pm-with " , [ " non-existent-user@zulip.com " ] , " Invalid narrow operator: unknown user "
2021-02-12 08:19:30 +01:00
)
2016-06-21 21:05:44 +02:00
2019-06-08 23:21:01 +02:00
def test_bad_narrow_pm_with_id_list ( self ) - > None :
2021-02-12 08:20:45 +01:00
self . login ( " hamlet " )
2021-02-12 08:19:30 +01:00
self . exercise_bad_narrow_operand (
2021-02-12 08:20:45 +01:00
" pm-with " , [ - 24 ] , " Bad value for ' narrow ' : [[ \" pm-with \" ,-24]] "
2021-02-12 08:19:30 +01:00
)
2019-06-08 23:21:01 +02:00
2017-11-05 10:51:25 +01:00
def test_message_without_rendered_content ( self ) - > None :
2016-06-21 21:05:44 +02:00
""" Older messages may not have rendered_content in the database """
m = self . get_last_message ( )
m . rendered_content = m . rendered_content_version = None
2021-02-12 08:20:45 +01:00
m . content = " test content "
2020-03-26 23:16:23 +01:00
wide_dict = MessageDict . wide_dict ( m )
final_dict = MessageDict . finalize_payload (
wide_dict ,
apply_markdown = True ,
client_gravatar = False ,
)
2021-02-12 08:20:45 +01:00
self . assertEqual ( final_dict [ " content " ] , " <p>test content</p> " )
2016-06-21 21:05:44 +02:00
2021-02-12 08:19:30 +01:00
def common_check_get_messages_query (
self , query_params : Dict [ str , object ] , expected : str
) - > None :
2021-02-12 08:20:45 +01:00
user_profile = self . example_user ( " hamlet " )
2021-02-07 21:34:01 +01:00
request = HostRequestMock ( query_params , user_profile )
2016-06-21 21:05:44 +02:00
with queries_captured ( ) as queries :
2017-03-24 07:51:46 +01:00
get_messages_backend ( request , user_profile )
2016-06-21 21:05:44 +02:00
for query in queries :
2021-02-12 08:20:45 +01:00
if " /* get_messages */ " in query [ " sql " ] :
sql = str ( query [ " sql " ] ) . replace ( " /* get_messages */ " , " " )
2016-06-21 21:05:44 +02:00
self . assertEqual ( sql , expected )
return
2017-03-24 07:51:46 +01:00
raise AssertionError ( " get_messages query not found " )
2016-06-21 21:05:44 +02:00
2018-04-05 14:54:30 +02:00
def test_find_first_unread_anchor ( self ) - > None :
2021-02-12 08:20:45 +01:00
hamlet = self . example_user ( " hamlet " )
cordelia = self . example_user ( " cordelia " )
othello = self . example_user ( " othello " )
2018-04-05 14:54:30 +02:00
2021-02-12 08:20:45 +01:00
self . make_stream ( " England " )
2018-04-05 14:54:30 +02:00
# Send a few messages that Hamlet won't have UserMessage rows for.
2021-02-12 08:20:45 +01:00
unsub_message_id = self . send_stream_message ( cordelia , " England " )
2020-03-07 11:43:05 +01:00
self . send_personal_message ( cordelia , othello )
2018-04-05 14:54:30 +02:00
2021-02-12 08:20:45 +01:00
self . subscribe ( hamlet , " England " )
2018-04-05 14:54:30 +02:00
muted_topics = [
2021-02-12 08:20:45 +01:00
[ " England " , " muted " ] ,
2018-04-05 14:54:30 +02:00
]
set_topic_mutes ( hamlet , muted_topics )
# send a muted message
2021-02-12 08:20:45 +01:00
muted_message_id = self . send_stream_message ( cordelia , " England " , topic_name = " muted " )
2018-04-05 14:54:30 +02:00
# finally send Hamlet a "normal" message
2021-02-12 08:20:45 +01:00
first_message_id = self . send_stream_message ( cordelia , " England " )
2018-04-05 14:54:30 +02:00
# send a few more messages
2021-02-12 08:20:45 +01:00
extra_message_id = self . send_stream_message ( cordelia , " England " )
2020-03-07 11:43:05 +01:00
self . send_personal_message ( cordelia , hamlet )
2018-04-05 14:54:30 +02:00
sa_conn = get_sqlalchemy_connection ( )
user_profile = hamlet
anchor = find_first_unread_anchor (
sa_conn = sa_conn ,
user_profile = user_profile ,
narrow = [ ] ,
)
self . assertEqual ( anchor , first_message_id )
2018-04-05 22:32:30 +02:00
# With the same data setup, we now want to test that a reasonable
# search still gets the first message sent to Hamlet (before he
# subscribed) and other recent messages to the stream.
query_params = dict (
2020-01-29 03:29:15 +01:00
anchor = " first_unread " ,
2018-04-05 22:32:30 +02:00
num_before = 10 ,
num_after = 10 ,
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
narrow = ' [[ " stream " , " England " ]] ' ,
2018-04-05 22:32:30 +02:00
)
2021-02-07 21:34:01 +01:00
request = HostRequestMock ( query_params , user_profile )
2018-04-05 22:32:30 +02:00
payload = get_messages_backend ( request , user_profile )
2020-08-07 01:09:47 +02:00
result = orjson . loads ( payload . content )
2021-02-12 08:20:45 +01:00
self . assertEqual ( result [ " anchor " ] , first_message_id )
self . assertEqual ( result [ " found_newest " ] , True )
self . assertEqual ( result [ " found_oldest " ] , True )
2018-04-05 22:32:30 +02:00
2021-02-12 08:20:45 +01:00
messages = result [ " messages " ]
2018-04-05 22:32:30 +02:00
self . assertEqual (
2021-02-12 08:20:45 +01:00
{ msg [ " id " ] for msg in messages } ,
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
{ unsub_message_id , muted_message_id , first_message_id , extra_message_id } ,
2018-04-05 22:32:30 +02:00
)
2020-11-28 20:30:02 +01:00
def test_parse_anchor_value ( self ) - > None :
2021-02-12 08:20:45 +01:00
hamlet = self . example_user ( " hamlet " )
cordelia = self . example_user ( " cordelia " )
2020-11-28 20:30:02 +01:00
# Send the first message to Hamlet
first_message_id = self . send_personal_message ( cordelia , hamlet )
# Send another message
self . send_personal_message ( cordelia , hamlet )
user_profile = hamlet
# Check if the anchor value in response is correct for different
# values of anchor parameter in request
# With anchor input as first_unread, see if response anchor
# value is same as the id of first unread message of Hamlet
query_params = dict (
anchor = " first_unread " ,
num_before = 10 ,
num_after = 10 ,
2021-02-12 08:20:45 +01:00
narrow = " [] " ,
2020-11-28 20:30:02 +01:00
)
2021-02-07 21:34:01 +01:00
request = HostRequestMock ( query_params , user_profile )
2020-11-28 20:30:02 +01:00
payload = get_messages_backend ( request , user_profile )
result = orjson . loads ( payload . content )
2021-02-12 08:20:45 +01:00
self . assertEqual ( result [ " anchor " ] , first_message_id )
2020-11-28 20:30:02 +01:00
# With anchor input as oldest, see if response anchor value is 0
query_params = dict (
anchor = " oldest " ,
num_before = 10 ,
num_after = 10 ,
2021-02-12 08:20:45 +01:00
narrow = " [] " ,
2020-11-28 20:30:02 +01:00
)
2021-02-07 21:34:01 +01:00
request = HostRequestMock ( query_params , user_profile )
2020-11-28 20:30:02 +01:00
payload = get_messages_backend ( request , user_profile )
result = orjson . loads ( payload . content )
2021-02-12 08:20:45 +01:00
self . assertEqual ( result [ " anchor " ] , 0 )
2020-11-28 20:30:02 +01:00
# With anchor input as newest, see if response
# anchor value is LARGER_THAN_MAX_MESSAGE_ID
query_params = dict (
anchor = " newest " ,
num_before = 10 ,
num_after = 10 ,
2021-02-12 08:20:45 +01:00
narrow = " [] " ,
2020-11-28 20:30:02 +01:00
)
2021-02-07 21:34:01 +01:00
request = HostRequestMock ( query_params , user_profile )
2020-11-28 20:30:02 +01:00
payload = get_messages_backend ( request , user_profile )
result = orjson . loads ( payload . content )
2021-02-12 08:20:45 +01:00
self . assertEqual ( result [ " anchor " ] , LARGER_THAN_MAX_MESSAGE_ID )
2020-11-28 20:30:02 +01:00
# With anchor input negative, see if
# response anchor value is clamped to 0
query_params = dict (
anchor = " -1 " ,
num_before = 10 ,
num_after = 10 ,
2021-02-12 08:20:45 +01:00
narrow = " [] " ,
2020-11-28 20:30:02 +01:00
)
2021-02-07 21:34:01 +01:00
request = HostRequestMock ( query_params , user_profile )
2020-11-28 20:30:02 +01:00
payload = get_messages_backend ( request , user_profile )
result = orjson . loads ( payload . content )
2021-02-12 08:20:45 +01:00
self . assertEqual ( result [ " anchor " ] , 0 )
2020-11-28 20:30:02 +01:00
# With anchor input more than LARGER_THAN_MAX_MESSAGE_ID,
# see if response anchor value is clamped down to LARGER_THAN_MAX_MESSAGE_ID
query_params = dict (
anchor = " 10000000000000001 " ,
num_before = 10 ,
num_after = 10 ,
2021-02-12 08:20:45 +01:00
narrow = " [] " ,
2020-11-28 20:30:02 +01:00
)
2021-02-07 21:34:01 +01:00
request = HostRequestMock ( query_params , user_profile )
2020-11-28 20:30:02 +01:00
payload = get_messages_backend ( request , user_profile )
result = orjson . loads ( payload . content )
2021-02-12 08:20:45 +01:00
self . assertEqual ( result [ " anchor " ] , LARGER_THAN_MAX_MESSAGE_ID )
2020-11-28 20:30:02 +01:00
2017-11-05 10:51:25 +01:00
def test_use_first_unread_anchor_with_some_unread_messages ( self ) - > None :
2021-02-12 08:20:45 +01:00
user_profile = self . example_user ( " hamlet " )
2016-07-23 18:41:39 +02:00
# Have Othello send messages to Hamlet that he hasn't read.
2018-05-19 03:34:51 +02:00
# Here, Hamlet isn't subscribed to the stream Scotland
2020-03-07 11:43:05 +01:00
self . send_stream_message ( self . example_user ( " othello " ) , " Scotland " )
2018-05-19 03:34:51 +02:00
first_unread_message_id = self . send_personal_message (
2020-03-07 11:43:05 +01:00
self . example_user ( " othello " ) ,
self . example_user ( " hamlet " ) ,
2017-10-28 17:38:19 +02:00
)
2016-07-23 18:41:39 +02:00
# Add a few messages that help us test that our query doesn't
# look at messages that are irrelevant to Hamlet.
2020-03-07 11:43:05 +01:00
self . send_personal_message ( self . example_user ( " othello " ) , self . example_user ( " cordelia " ) )
self . send_personal_message ( self . example_user ( " othello " ) , self . example_user ( " iago " ) )
2016-07-23 18:41:39 +02:00
query_params = dict (
2020-01-29 03:29:15 +01:00
anchor = " first_unread " ,
2017-02-22 23:32:43 +01:00
num_before = 10 ,
num_after = 10 ,
2021-02-12 08:20:45 +01:00
narrow = " [] " ,
2016-07-23 18:41:39 +02:00
)
2021-02-07 21:34:01 +01:00
request = HostRequestMock ( query_params , user_profile )
2016-07-23 18:41:39 +02:00
with queries_captured ( ) as all_queries :
2017-03-24 07:51:46 +01:00
get_messages_backend ( request , user_profile )
2016-07-23 18:41:39 +02:00
# Verify the query for old messages looks correct.
2021-02-12 08:20:45 +01:00
queries = [ q for q in all_queries if " /* get_messages */ " in q [ " sql " ] ]
2021-05-17 05:41:32 +02:00
self . assert_length ( queries , 1 )
2021-02-12 08:20:45 +01:00
sql = queries [ 0 ] [ " sql " ]
self . assertNotIn ( f " AND message_id = { LARGER_THAN_MAX_MESSAGE_ID } " , sql )
self . assertIn ( " ORDER BY message_id ASC " , sql )
2016-07-23 18:41:39 +02:00
2021-02-12 08:19:30 +01:00
cond = (
2021-02-12 08:20:45 +01:00
f " WHERE user_profile_id = { user_profile . id } AND message_id >= { first_unread_message_id } "
2021-02-12 08:19:30 +01:00
)
2017-02-22 23:32:43 +01:00
self . assertIn ( cond , sql )
2021-02-12 08:20:45 +01:00
cond = f " WHERE user_profile_id = { user_profile . id } AND message_id <= { first_unread_message_id - 1 } "
2018-01-02 18:33:28 +01:00
self . assertIn ( cond , sql )
2021-02-12 08:20:45 +01:00
self . assertIn ( " UNION " , sql )
2018-01-02 18:33:28 +01:00
def test_visible_messages_use_first_unread_anchor_with_some_unread_messages ( self ) - > None :
2021-02-12 08:20:45 +01:00
user_profile = self . example_user ( " hamlet " )
2018-01-02 18:33:28 +01:00
# Have Othello send messages to Hamlet that he hasn't read.
2021-02-12 08:20:45 +01:00
self . subscribe ( self . example_user ( " hamlet " ) , " Scotland " )
2018-01-02 18:33:28 +01:00
2020-03-07 11:43:05 +01:00
first_unread_message_id = self . send_stream_message ( self . example_user ( " othello " ) , " Scotland " )
self . send_stream_message ( self . example_user ( " othello " ) , " Scotland " )
self . send_stream_message ( self . example_user ( " othello " ) , " Scotland " )
2018-01-02 18:33:28 +01:00
self . send_personal_message (
2020-03-07 11:43:05 +01:00
self . example_user ( " othello " ) ,
self . example_user ( " hamlet " ) ,
2018-01-02 18:33:28 +01:00
)
# Add a few messages that help us test that our query doesn't
# look at messages that are irrelevant to Hamlet.
2020-03-07 11:43:05 +01:00
self . send_personal_message ( self . example_user ( " othello " ) , self . example_user ( " cordelia " ) )
self . send_personal_message ( self . example_user ( " othello " ) , self . example_user ( " iago " ) )
2018-01-02 18:33:28 +01:00
query_params = dict (
2020-01-29 03:29:15 +01:00
anchor = " first_unread " ,
2018-01-02 18:33:28 +01:00
num_before = 10 ,
num_after = 10 ,
2021-02-12 08:20:45 +01:00
narrow = " [] " ,
2018-01-02 18:33:28 +01:00
)
2021-02-07 21:34:01 +01:00
request = HostRequestMock ( query_params , user_profile )
2018-01-02 18:33:28 +01:00
first_visible_message_id = first_unread_message_id + 2
2018-03-15 11:58:25 +01:00
with first_visible_id_as ( first_visible_message_id ) :
2018-01-02 18:33:28 +01:00
with queries_captured ( ) as all_queries :
get_messages_backend ( request , user_profile )
2021-02-12 08:20:45 +01:00
queries = [ q for q in all_queries if " /* get_messages */ " in q [ " sql " ] ]
2021-05-17 05:41:32 +02:00
self . assert_length ( queries , 1 )
2021-02-12 08:20:45 +01:00
sql = queries [ 0 ] [ " sql " ]
self . assertNotIn ( f " AND message_id = { LARGER_THAN_MAX_MESSAGE_ID } " , sql )
self . assertIn ( " ORDER BY message_id ASC " , sql )
cond = f " WHERE user_profile_id = { user_profile . id } AND message_id <= { first_unread_message_id - 1 } "
2018-01-02 18:33:28 +01:00
self . assertIn ( cond , sql )
2021-02-12 08:20:45 +01:00
cond = f " WHERE user_profile_id = { user_profile . id } AND message_id >= { first_visible_message_id } "
2016-07-23 18:41:39 +02:00
self . assertIn ( cond , sql )
2017-11-05 10:51:25 +01:00
def test_use_first_unread_anchor_with_no_unread_messages ( self ) - > None :
2021-02-12 08:20:45 +01:00
user_profile = self . example_user ( " hamlet " )
2016-07-23 18:41:39 +02:00
query_params = dict (
2020-01-29 03:29:15 +01:00
anchor = " first_unread " ,
2017-02-22 23:32:43 +01:00
num_before = 10 ,
num_after = 10 ,
2021-02-12 08:20:45 +01:00
narrow = " [] " ,
2016-07-23 18:41:39 +02:00
)
2021-02-07 21:34:01 +01:00
request = HostRequestMock ( query_params , user_profile )
2016-07-23 18:41:39 +02:00
with queries_captured ( ) as all_queries :
2017-03-24 07:51:46 +01:00
get_messages_backend ( request , user_profile )
2016-07-23 18:41:39 +02:00
2021-02-12 08:20:45 +01:00
queries = [ q for q in all_queries if " /* get_messages */ " in q [ " sql " ] ]
2021-05-17 05:41:32 +02:00
self . assert_length ( queries , 1 )
2018-03-12 20:33:00 +01:00
2021-02-12 08:20:45 +01:00
sql = queries [ 0 ] [ " sql " ]
2018-03-12 20:33:00 +01:00
2021-02-12 08:20:45 +01:00
self . assertNotIn ( " AND message_id <= " , sql )
self . assertNotIn ( " AND message_id >= " , sql )
2016-07-23 18:41:39 +02:00
2018-01-02 18:33:28 +01:00
first_visible_message_id = 5
2018-03-15 11:58:25 +01:00
with first_visible_id_as ( first_visible_message_id ) :
2018-01-02 18:33:28 +01:00
with queries_captured ( ) as all_queries :
get_messages_backend ( request , user_profile )
2021-02-12 08:20:45 +01:00
queries = [ q for q in all_queries if " /* get_messages */ " in q [ " sql " ] ]
sql = queries [ 0 ] [ " sql " ]
self . assertNotIn ( " AND message_id <= " , sql )
self . assertNotIn ( " AND message_id >= " , sql )
2018-01-02 18:33:28 +01:00
2017-11-05 10:51:25 +01:00
def test_use_first_unread_anchor_with_muted_topics ( self ) - > None :
2016-07-23 18:07:08 +02:00
"""
Test that our logic related to ` use_first_unread_anchor `
2017-02-23 05:50:15 +01:00
invokes the ` message_id = LARGER_THAN_MAX_MESSAGE_ID ` hack for
2017-03-24 07:51:46 +01:00
the ` / * get_messages * / ` query when relevant muting
2016-07-23 18:07:08 +02:00
is in effect .
This is a very arcane test on arcane , but very heavily
2017-03-24 07:51:46 +01:00
field - tested , logic in get_messages_backend ( ) . If
2016-07-23 18:07:08 +02:00
this test breaks , be absolutely sure you know what you ' re
doing .
"""
2021-02-12 08:20:45 +01:00
realm = get_realm ( " zulip " )
self . make_stream ( " web stuff " )
self . make_stream ( " bogus " )
user_profile = self . example_user ( " hamlet " )
2017-08-24 17:58:40 +02:00
muted_topics = [
2021-02-12 08:20:45 +01:00
[ " Scotland " , " golf " ] ,
[ " web stuff " , " css " ] ,
[ " bogus " , " bogus " ] ,
2017-08-24 17:58:40 +02:00
]
set_topic_mutes ( user_profile , muted_topics )
2016-06-21 21:05:44 +02:00
query_params = dict (
2020-01-29 03:29:15 +01:00
anchor = " first_unread " ,
2016-06-21 21:05:44 +02:00
num_before = 0 ,
num_after = 0 ,
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
narrow = ' [[ " stream " , " Scotland " ]] ' ,
2016-06-21 21:05:44 +02:00
)
2021-02-07 21:34:01 +01:00
request = HostRequestMock ( query_params , user_profile )
2016-06-21 21:05:44 +02:00
2016-07-23 18:07:08 +02:00
with queries_captured ( ) as all_queries :
2017-03-24 07:51:46 +01:00
get_messages_backend ( request , user_profile )
2016-06-21 21:05:44 +02:00
2016-07-23 18:07:08 +02:00
# Do some tests on the main query, to verify the muting logic
# runs on this code path.
2021-02-12 08:20:45 +01:00
queries = [ q for q in all_queries if str ( q [ " sql " ] ) . startswith ( " SELECT message_id, flags " ) ]
2021-05-17 05:41:32 +02:00
self . assert_length ( queries , 1 )
2016-07-23 18:07:08 +02:00
2021-02-12 08:20:45 +01:00
stream = get_stream ( " Scotland " , realm )
2021-07-24 16:56:39 +02:00
assert stream . recipient is not None
2020-02-18 17:25:43 +01:00
recipient_id = stream . recipient . id
2020-06-09 00:25:09 +02:00
cond = f " AND NOT (recipient_id = { recipient_id } AND upper(subject) = upper( ' golf ' )) "
2021-02-12 08:20:45 +01:00
self . assertIn ( cond , queries [ 0 ] [ " sql " ] )
2016-07-23 18:07:08 +02:00
# Next, verify the use_first_unread_anchor setting invokes
2017-02-23 05:50:15 +01:00
# the `message_id = LARGER_THAN_MAX_MESSAGE_ID` hack.
2021-02-12 08:20:45 +01:00
queries = [ q for q in all_queries if " /* get_messages */ " in q [ " sql " ] ]
2021-05-17 05:41:32 +02:00
self . assert_length ( queries , 1 )
2021-02-12 08:20:45 +01:00
self . assertIn ( f " AND zerver_message.id = { LARGER_THAN_MAX_MESSAGE_ID } " , queries [ 0 ] [ " sql " ] )
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def test_exclude_muting_conditions ( self ) - > None :
2021-02-12 08:20:45 +01:00
realm = get_realm ( " zulip " )
self . make_stream ( " web stuff " )
user_profile = self . example_user ( " hamlet " )
2016-07-23 17:07:38 +02:00
2021-02-12 08:20:45 +01:00
self . make_stream ( " irrelevant_stream " )
2017-08-30 02:19:34 +02:00
2016-07-23 17:07:38 +02:00
# Test the do-nothing case first.
2017-08-24 17:58:40 +02:00
muted_topics = [
2021-02-12 08:20:45 +01:00
[ " irrelevant_stream " , " irrelevant_topic " ] ,
2017-08-24 17:58:40 +02:00
]
set_topic_mutes ( user_profile , muted_topics )
2016-07-23 17:07:38 +02:00
# If nothing relevant is muted, then exclude_muting_conditions()
# should return an empty list.
2020-07-02 03:13:26 +02:00
narrow : List [ Dict [ str , object ] ] = [
2021-02-12 08:20:45 +01:00
dict ( operator = " stream " , operand = " Scotland " ) ,
2016-07-23 17:07:38 +02:00
]
muting_conditions = exclude_muting_conditions ( user_profile , narrow )
self . assertEqual ( muting_conditions , [ ] )
2019-08-07 17:32:19 +02:00
# Also test that passing stream ID works
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " stream " , operand = get_stream ( " Scotland " , realm ) . id ) ,
2019-08-07 17:32:19 +02:00
]
muting_conditions = exclude_muting_conditions ( user_profile , narrow )
self . assertEqual ( muting_conditions , [ ] )
2016-07-23 17:07:38 +02:00
# Ok, now set up our muted topics to include a topic relevant to our narrow.
2017-08-24 17:58:40 +02:00
muted_topics = [
2021-02-12 08:20:45 +01:00
[ " Scotland " , " golf " ] ,
[ " web stuff " , " css " ] ,
2017-08-24 17:58:40 +02:00
]
set_topic_mutes ( user_profile , muted_topics )
2016-06-21 21:05:44 +02:00
2016-07-23 17:07:38 +02:00
# And verify that our query will exclude them.
2016-06-21 21:05:44 +02:00
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " stream " , operand = " Scotland " ) ,
2016-06-21 21:05:44 +02:00
]
muting_conditions = exclude_muting_conditions ( user_profile , narrow )
2017-02-22 22:13:57 +01:00
query = select ( [ column ( " id " ) . label ( " message_id " ) ] , None , table ( " zerver_message " ) )
2016-06-21 21:05:44 +02:00
query = query . where ( * muting_conditions )
2021-02-12 08:20:45 +01:00
expected_query = """ \
2019-08-28 22:35:22 +02:00
SELECT id AS message_id \n \
FROM zerver_message \n \
WHERE NOT ( recipient_id = % ( recipient_id_1 ) s AND upper ( subject ) = upper ( % ( param_1 ) s ) ) \
2021-02-12 08:20:45 +01:00
"""
2019-08-28 22:35:22 +02:00
self . assertEqual ( get_sqlalchemy_sql ( query ) , expected_query )
2016-06-21 21:05:44 +02:00
params = get_sqlalchemy_query_params ( query )
2021-02-12 08:19:30 +01:00
self . assertEqual (
2021-02-12 08:20:45 +01:00
params [ " recipient_id_1 " ] , get_recipient_id_for_stream_name ( realm , " Scotland " )
2021-02-12 08:19:30 +01:00
)
2021-02-12 08:20:45 +01:00
self . assertEqual ( params [ " param_1 " ] , " golf " )
2016-06-21 21:05:44 +02:00
2021-02-12 08:20:45 +01:00
mute_stream ( realm , user_profile , " Verona " )
2017-09-20 22:02:22 +02:00
# Using a bogus stream name should be similar to using no narrow at
# all, and we'll exclude all mutes.
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " stream " , operand = " bogus-stream-name " ) ,
2017-09-20 22:02:22 +02:00
]
2016-06-21 21:05:44 +02:00
muting_conditions = exclude_muting_conditions ( user_profile , narrow )
2017-02-22 22:13:57 +01:00
query = select ( [ column ( " id " ) ] , None , table ( " zerver_message " ) )
2016-06-21 21:05:44 +02:00
query = query . where ( and_ ( * muting_conditions ) )
2021-02-12 08:20:45 +01:00
expected_query = """ \
2019-08-28 22:35:22 +02:00
SELECT id \n \
FROM zerver_message \n \
WHERE recipient_id NOT IN ( % ( recipient_id_1 ) s ) \
AND NOT \
( recipient_id = % ( recipient_id_2 ) s AND upper ( subject ) = upper ( % ( param_1 ) s ) OR \
recipient_id = % ( recipient_id_3 ) s AND upper ( subject ) = upper ( % ( param_2 ) s ) ) \
2021-02-12 08:20:45 +01:00
"""
2019-08-28 22:35:22 +02:00
self . assertEqual ( get_sqlalchemy_sql ( query ) , expected_query )
2016-06-21 21:05:44 +02:00
params = get_sqlalchemy_query_params ( query )
2021-02-12 08:19:30 +01:00
self . assertEqual (
2021-02-12 08:20:45 +01:00
params [ " recipient_id_1 " ] , get_recipient_id_for_stream_name ( realm , " Verona " )
2021-02-12 08:19:30 +01:00
)
self . assertEqual (
2021-02-12 08:20:45 +01:00
params [ " recipient_id_2 " ] , get_recipient_id_for_stream_name ( realm , " Scotland " )
2021-02-12 08:19:30 +01:00
)
2021-02-12 08:20:45 +01:00
self . assertEqual ( params [ " param_1 " ] , " golf " )
2021-02-12 08:19:30 +01:00
self . assertEqual (
2021-02-12 08:20:45 +01:00
params [ " recipient_id_3 " ] , get_recipient_id_for_stream_name ( realm , " web stuff " )
2021-02-12 08:19:30 +01:00
)
2021-02-12 08:20:45 +01:00
self . assertEqual ( params [ " param_2 " ] , " css " )
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def test_get_messages_queries ( self ) - > None :
2016-06-21 21:05:44 +02:00
query_ids = self . get_query_ids ( )
2021-02-12 08:20:45 +01:00
sql_template = " SELECT anon_1.message_id, anon_1.flags \n FROM (SELECT message_id, flags \n FROM zerver_usermessage \n WHERE user_profile_id = {hamlet_id} AND message_id = 0) AS anon_1 ORDER BY message_id ASC "
2018-03-13 18:14:58 +01:00
sql = sql_template . format ( * * query_ids )
2021-02-12 08:20:45 +01:00
self . common_check_get_messages_query ( { " anchor " : 0 , " num_before " : 0 , " num_after " : 0 } , sql )
2018-03-13 18:14:58 +01:00
2021-02-12 08:20:45 +01:00
sql_template = " SELECT anon_1.message_id, anon_1.flags \n FROM (SELECT message_id, flags \n FROM zerver_usermessage \n WHERE user_profile_id = {hamlet_id} AND message_id = 0) AS anon_1 ORDER BY message_id ASC "
2018-03-13 18:14:58 +01:00
sql = sql_template . format ( * * query_ids )
2021-02-12 08:20:45 +01:00
self . common_check_get_messages_query ( { " anchor " : 0 , " num_before " : 1 , " num_after " : 0 } , sql )
2018-03-13 18:14:58 +01:00
2021-02-12 08:20:45 +01:00
sql_template = " SELECT anon_1.message_id, anon_1.flags \n FROM (SELECT message_id, flags \n FROM zerver_usermessage \n WHERE user_profile_id = {hamlet_id} ORDER BY message_id ASC \n LIMIT 2) AS anon_1 ORDER BY message_id ASC "
2018-03-13 18:14:58 +01:00
sql = sql_template . format ( * * query_ids )
2021-02-12 08:20:45 +01:00
self . common_check_get_messages_query ( { " anchor " : 0 , " num_before " : 0 , " num_after " : 1 } , sql )
2018-03-13 18:14:58 +01:00
2021-02-12 08:20:45 +01:00
sql_template = " SELECT anon_1.message_id, anon_1.flags \n FROM (SELECT message_id, flags \n FROM zerver_usermessage \n WHERE user_profile_id = {hamlet_id} ORDER BY message_id ASC \n LIMIT 11) AS anon_1 ORDER BY message_id ASC "
2016-06-21 21:05:44 +02:00
sql = sql_template . format ( * * query_ids )
2021-02-12 08:20:45 +01:00
self . common_check_get_messages_query ( { " anchor " : 0 , " num_before " : 0 , " num_after " : 10 } , sql )
2016-06-21 21:05:44 +02:00
2021-02-12 08:20:45 +01:00
sql_template = " SELECT anon_1.message_id, anon_1.flags \n FROM (SELECT message_id, flags \n FROM zerver_usermessage \n WHERE user_profile_id = {hamlet_id} AND message_id <= 100 ORDER BY message_id DESC \n LIMIT 11) AS anon_1 ORDER BY message_id ASC "
2016-06-21 21:05:44 +02:00
sql = sql_template . format ( * * query_ids )
2021-02-12 08:20:45 +01:00
self . common_check_get_messages_query ( { " anchor " : 100 , " num_before " : 10 , " num_after " : 0 } , sql )
2016-06-21 21:05:44 +02:00
2021-02-12 08:20:45 +01:00
sql_template = " SELECT anon_1.message_id, anon_1.flags \n FROM ((SELECT message_id, flags \n FROM zerver_usermessage \n WHERE user_profile_id = {hamlet_id} AND message_id <= 99 ORDER BY message_id DESC \n LIMIT 10) UNION ALL (SELECT message_id, flags \n FROM zerver_usermessage \n WHERE user_profile_id = {hamlet_id} AND message_id >= 100 ORDER BY message_id ASC \n LIMIT 11)) AS anon_1 ORDER BY message_id ASC "
2016-06-21 21:05:44 +02:00
sql = sql_template . format ( * * query_ids )
2021-02-12 08:19:30 +01:00
self . common_check_get_messages_query (
2021-02-12 08:20:45 +01:00
{ " anchor " : 100 , " num_before " : 10 , " num_after " : 10 } , sql
2021-02-12 08:19:30 +01:00
)
2016-06-21 21:05:44 +02:00
2017-11-05 10:51:25 +01:00
def test_get_messages_with_narrow_queries ( self ) - > None :
2016-06-21 21:05:44 +02:00
query_ids = self . get_query_ids ( )
2021-02-12 08:20:45 +01:00
hamlet_email = self . example_user ( " hamlet " ) . email
othello_email = self . example_user ( " othello " ) . email
2016-06-21 21:05:44 +02:00
2021-02-12 08:20:45 +01:00
sql_template = " SELECT anon_1.message_id, anon_1.flags \n FROM (SELECT message_id, flags \n FROM zerver_usermessage JOIN zerver_message ON zerver_usermessage.message_id = zerver_message.id \n WHERE user_profile_id = {hamlet_id} AND (sender_id = {othello_id} AND recipient_id = {hamlet_recipient} OR sender_id = {hamlet_id} AND recipient_id = {othello_recipient} ) AND message_id = 0) AS anon_1 ORDER BY message_id ASC "
2018-03-13 18:14:58 +01:00
sql = sql_template . format ( * * query_ids )
2021-02-12 08:19:30 +01:00
self . common_check_get_messages_query (
{
2021-02-12 08:20:45 +01:00
" anchor " : 0 ,
" num_before " : 0 ,
" num_after " : 0 ,
" narrow " : f ' [[ " pm-with " , " { othello_email } " ]] ' ,
2021-02-12 08:19:30 +01:00
} ,
sql ,
)
2018-03-13 18:14:58 +01:00
2021-02-12 08:20:45 +01:00
sql_template = " SELECT anon_1.message_id, anon_1.flags \n FROM (SELECT message_id, flags \n FROM zerver_usermessage JOIN zerver_message ON zerver_usermessage.message_id = zerver_message.id \n WHERE user_profile_id = {hamlet_id} AND (sender_id = {othello_id} AND recipient_id = {hamlet_recipient} OR sender_id = {hamlet_id} AND recipient_id = {othello_recipient} ) AND message_id = 0) AS anon_1 ORDER BY message_id ASC "
2018-03-13 18:14:58 +01:00
sql = sql_template . format ( * * query_ids )
2021-02-12 08:19:30 +01:00
self . common_check_get_messages_query (
{
2021-02-12 08:20:45 +01:00
" anchor " : 0 ,
" num_before " : 1 ,
" num_after " : 0 ,
" narrow " : f ' [[ " pm-with " , " { othello_email } " ]] ' ,
2021-02-12 08:19:30 +01:00
} ,
sql ,
)
2018-03-13 18:14:58 +01:00
2021-02-12 08:20:45 +01:00
sql_template = " SELECT anon_1.message_id, anon_1.flags \n FROM (SELECT message_id, flags \n FROM zerver_usermessage JOIN zerver_message ON zerver_usermessage.message_id = zerver_message.id \n WHERE user_profile_id = {hamlet_id} AND (sender_id = {othello_id} AND recipient_id = {hamlet_recipient} OR sender_id = {hamlet_id} AND recipient_id = {othello_recipient} ) ORDER BY message_id ASC \n LIMIT 10) AS anon_1 ORDER BY message_id ASC "
2016-06-21 21:05:44 +02:00
sql = sql_template . format ( * * query_ids )
2021-02-12 08:19:30 +01:00
self . common_check_get_messages_query (
{
2021-02-12 08:20:45 +01:00
" anchor " : 0 ,
" num_before " : 0 ,
" num_after " : 9 ,
" narrow " : f ' [[ " pm-with " , " { othello_email } " ]] ' ,
2021-02-12 08:19:30 +01:00
} ,
sql ,
)
2016-06-21 21:05:44 +02:00
2021-02-12 08:20:45 +01:00
sql_template = " SELECT anon_1.message_id, anon_1.flags \n FROM (SELECT message_id, flags \n FROM zerver_usermessage JOIN zerver_message ON zerver_usermessage.message_id = zerver_message.id \n WHERE user_profile_id = {hamlet_id} AND (flags & 2) != 0 ORDER BY message_id ASC \n LIMIT 10) AS anon_1 ORDER BY message_id ASC "
2016-06-21 21:05:44 +02:00
sql = sql_template . format ( * * query_ids )
2021-02-12 08:19:30 +01:00
self . common_check_get_messages_query (
2021-02-12 08:20:45 +01:00
{ " anchor " : 0 , " num_before " : 0 , " num_after " : 9 , " narrow " : ' [[ " is " , " starred " ]] ' } , sql
2021-02-12 08:19:30 +01:00
)
2016-06-21 21:05:44 +02:00
2021-02-12 08:20:45 +01:00
sql_template = " SELECT anon_1.message_id, anon_1.flags \n FROM (SELECT message_id, flags \n FROM zerver_usermessage JOIN zerver_message ON zerver_usermessage.message_id = zerver_message.id \n WHERE user_profile_id = {hamlet_id} AND sender_id = {othello_id} ORDER BY message_id ASC \n LIMIT 10) AS anon_1 ORDER BY message_id ASC "
2016-06-21 21:05:44 +02:00
sql = sql_template . format ( * * query_ids )
2021-02-12 08:19:30 +01:00
self . common_check_get_messages_query (
{
2021-02-12 08:20:45 +01:00
" anchor " : 0 ,
" num_before " : 0 ,
" num_after " : 9 ,
" narrow " : f ' [[ " sender " , " { othello_email } " ]] ' ,
2021-02-12 08:19:30 +01:00
} ,
sql ,
)
2016-06-21 21:05:44 +02:00
2021-02-12 08:20:45 +01:00
sql_template = " SELECT anon_1.message_id \n FROM (SELECT id AS message_id \n FROM zerver_message \n WHERE recipient_id = {scotland_recipient} ORDER BY zerver_message.id ASC \n LIMIT 10) AS anon_1 ORDER BY message_id ASC "
2016-06-21 21:05:44 +02:00
sql = sql_template . format ( * * query_ids )
2021-02-12 08:19:30 +01:00
self . common_check_get_messages_query (
2021-02-12 08:20:45 +01:00
{ " anchor " : 0 , " num_before " : 0 , " num_after " : 9 , " narrow " : ' [[ " stream " , " Scotland " ]] ' } ,
2021-02-12 08:19:30 +01:00
sql ,
)
2016-06-21 21:05:44 +02:00
2021-02-12 08:20:45 +01:00
sql_template = " SELECT anon_1.message_id \n FROM (SELECT id AS message_id \n FROM zerver_message \n WHERE recipient_id IN ( {public_streams_recipents} ) ORDER BY zerver_message.id ASC \n LIMIT 10) AS anon_1 ORDER BY message_id ASC "
2019-08-13 20:20:36 +02:00
sql = sql_template . format ( * * query_ids )
2021-02-12 08:19:30 +01:00
self . common_check_get_messages_query (
2021-02-12 08:20:45 +01:00
{ " anchor " : 0 , " num_before " : 0 , " num_after " : 9 , " narrow " : ' [[ " streams " , " public " ]] ' } , sql
2021-02-12 08:19:30 +01:00
)
2019-08-13 20:20:36 +02:00
2021-02-12 08:20:45 +01:00
sql_template = " SELECT anon_1.message_id, anon_1.flags \n FROM (SELECT message_id, flags \n FROM zerver_usermessage JOIN zerver_message ON zerver_usermessage.message_id = zerver_message.id \n WHERE user_profile_id = {hamlet_id} AND recipient_id NOT IN ( {public_streams_recipents} ) ORDER BY message_id ASC \n LIMIT 10) AS anon_1 ORDER BY message_id ASC "
2019-08-13 20:20:36 +02:00
sql = sql_template . format ( * * query_ids )
2021-02-12 08:19:30 +01:00
self . common_check_get_messages_query (
{
2021-02-12 08:20:45 +01:00
" anchor " : 0 ,
" num_before " : 0 ,
" num_after " : 9 ,
" narrow " : ' [ { " operator " : " streams " , " operand " : " public " , " negated " : true}] ' ,
2021-02-12 08:19:30 +01:00
} ,
sql ,
)
2019-08-13 20:20:36 +02:00
2018-03-13 00:17:07 +01:00
sql_template = " SELECT anon_1.message_id, anon_1.flags \n FROM (SELECT message_id, flags \n FROM zerver_usermessage JOIN zerver_message ON zerver_usermessage.message_id = zerver_message.id \n WHERE user_profile_id = {hamlet_id} AND upper(subject) = upper( ' blah ' ) ORDER BY message_id ASC \n LIMIT 10) AS anon_1 ORDER BY message_id ASC "
2016-06-21 21:05:44 +02:00
sql = sql_template . format ( * * query_ids )
2021-02-12 08:19:30 +01:00
self . common_check_get_messages_query (
2021-02-12 08:20:45 +01:00
{ " anchor " : 0 , " num_before " : 0 , " num_after " : 9 , " narrow " : ' [[ " topic " , " blah " ]] ' } , sql
2021-02-12 08:19:30 +01:00
)
2016-06-21 21:05:44 +02:00
2018-03-13 00:17:07 +01:00
sql_template = " SELECT anon_1.message_id \n FROM (SELECT id AS message_id \n FROM zerver_message \n WHERE recipient_id = {scotland_recipient} AND upper(subject) = upper( ' blah ' ) ORDER BY zerver_message.id ASC \n LIMIT 10) AS anon_1 ORDER BY message_id ASC "
2016-06-21 21:05:44 +02:00
sql = sql_template . format ( * * query_ids )
2021-02-12 08:19:30 +01:00
self . common_check_get_messages_query (
{
2021-02-12 08:20:45 +01:00
" anchor " : 0 ,
" num_before " : 0 ,
" num_after " : 9 ,
" narrow " : ' [[ " stream " , " Scotland " ], [ " topic " , " blah " ]] ' ,
2021-02-12 08:19:30 +01:00
} ,
sql ,
)
2016-06-21 21:05:44 +02:00
# Narrow to pms with yourself
2021-02-12 08:20:45 +01:00
sql_template = " SELECT anon_1.message_id, anon_1.flags \n FROM (SELECT message_id, flags \n FROM zerver_usermessage JOIN zerver_message ON zerver_usermessage.message_id = zerver_message.id \n WHERE user_profile_id = {hamlet_id} AND sender_id = {hamlet_id} AND recipient_id = {hamlet_recipient} ORDER BY message_id ASC \n LIMIT 10) AS anon_1 ORDER BY message_id ASC "
2016-06-21 21:05:44 +02:00
sql = sql_template . format ( * * query_ids )
2021-02-12 08:19:30 +01:00
self . common_check_get_messages_query (
{
2021-02-12 08:20:45 +01:00
" anchor " : 0 ,
" num_before " : 0 ,
" num_after " : 9 ,
" narrow " : f ' [[ " pm-with " , " { hamlet_email } " ]] ' ,
2021-02-12 08:19:30 +01:00
} ,
sql ,
)
2016-06-21 21:05:44 +02:00
2021-02-12 08:20:45 +01:00
sql_template = " SELECT anon_1.message_id, anon_1.flags \n FROM (SELECT message_id, flags \n FROM zerver_usermessage JOIN zerver_message ON zerver_usermessage.message_id = zerver_message.id \n WHERE user_profile_id = {hamlet_id} AND recipient_id = {scotland_recipient} AND (flags & 2) != 0 ORDER BY message_id ASC \n LIMIT 10) AS anon_1 ORDER BY message_id ASC "
2016-06-21 21:05:44 +02:00
sql = sql_template . format ( * * query_ids )
2021-02-12 08:19:30 +01:00
self . common_check_get_messages_query (
{
2021-02-12 08:20:45 +01:00
" anchor " : 0 ,
" num_before " : 0 ,
" num_after " : 9 ,
" narrow " : ' [[ " stream " , " Scotland " ], [ " is " , " starred " ]] ' ,
2021-02-12 08:19:30 +01:00
} ,
sql ,
)
2016-06-21 21:05:44 +02:00
2016-04-24 17:08:51 +02:00
@override_settings ( USING_PGROONGA = False )
2017-11-05 10:51:25 +01:00
def test_get_messages_with_search_queries ( self ) - > None :
2016-06-21 21:05:44 +02:00
query_ids = self . get_query_ids ( )
2019-08-28 11:06:38 +02:00
sql_template = """ \
SELECT anon_1 . message_id , anon_1 . flags , anon_1 . subject , anon_1 . rendered_content , anon_1 . content_matches , anon_1 . topic_matches \n \
FROM ( SELECT message_id , flags , subject , rendered_content , array ( ( SELECT ARRAY [ sum ( length ( anon_3 ) - 11 ) OVER ( ROWS BETWEEN UNBOUNDED PRECEDING AND 1 PRECEDING ) + 11 , strpos ( anon_3 , ' </ts-match> ' ) - 1 ] AS anon_2 \n \
FROM unnest ( string_to_array ( ts_headline ( ' zulip.english_us_search ' , rendered_content , plainto_tsquery ( ' zulip.english_us_search ' , ' jumping ' ) , ' HighlightAll = TRUE, StartSel = <ts-match>, StopSel = </ts-match> ' ) , ' <ts-match> ' ) ) AS anon_3 \n \
LIMIT ALL OFFSET 1 ) ) AS content_matches , array ( ( SELECT ARRAY [ sum ( length ( anon_5 ) - 11 ) OVER ( ROWS BETWEEN UNBOUNDED PRECEDING AND 1 PRECEDING ) + 11 , strpos ( anon_5 , ' </ts-match> ' ) - 1 ] AS anon_4 \n \
FROM unnest ( string_to_array ( ts_headline ( ' zulip.english_us_search ' , escape_html ( subject ) , plainto_tsquery ( ' zulip.english_us_search ' , ' jumping ' ) , ' HighlightAll = TRUE, StartSel = <ts-match>, StopSel = </ts-match> ' ) , ' <ts-match> ' ) ) AS anon_5 \n \
LIMIT ALL OFFSET 1 ) ) AS topic_matches \n \
FROM zerver_usermessage JOIN zerver_message ON zerver_usermessage . message_id = zerver_message . id \n \
WHERE user_profile_id = { hamlet_id } AND ( search_tsvector @ @ plainto_tsquery ( ' zulip.english_us_search ' , ' jumping ' ) ) ORDER BY message_id ASC \n \
LIMIT 10 ) AS anon_1 ORDER BY message_id ASC \
"""
2016-06-21 21:05:44 +02:00
sql = sql_template . format ( * * query_ids )
2021-02-12 08:19:30 +01:00
self . common_check_get_messages_query (
2021-02-12 08:20:45 +01:00
{ " anchor " : 0 , " num_before " : 0 , " num_after " : 9 , " narrow " : ' [[ " search " , " jumping " ]] ' } , sql
2021-02-12 08:19:30 +01:00
)
2016-06-21 21:05:44 +02:00
2019-08-28 11:06:38 +02:00
sql_template = """ \
SELECT anon_1 . message_id , anon_1 . subject , anon_1 . rendered_content , anon_1 . content_matches , anon_1 . topic_matches \n \
FROM ( SELECT id AS message_id , subject , rendered_content , array ( ( SELECT ARRAY [ sum ( length ( anon_3 ) - 11 ) OVER ( ROWS BETWEEN UNBOUNDED PRECEDING AND 1 PRECEDING ) + 11 , strpos ( anon_3 , ' </ts-match> ' ) - 1 ] AS anon_2 \n \
FROM unnest ( string_to_array ( ts_headline ( ' zulip.english_us_search ' , rendered_content , plainto_tsquery ( ' zulip.english_us_search ' , ' jumping ' ) , ' HighlightAll = TRUE, StartSel = <ts-match>, StopSel = </ts-match> ' ) , ' <ts-match> ' ) ) AS anon_3 \n \
LIMIT ALL OFFSET 1 ) ) AS content_matches , array ( ( SELECT ARRAY [ sum ( length ( anon_5 ) - 11 ) OVER ( ROWS BETWEEN UNBOUNDED PRECEDING AND 1 PRECEDING ) + 11 , strpos ( anon_5 , ' </ts-match> ' ) - 1 ] AS anon_4 \n \
FROM unnest ( string_to_array ( ts_headline ( ' zulip.english_us_search ' , escape_html ( subject ) , plainto_tsquery ( ' zulip.english_us_search ' , ' jumping ' ) , ' HighlightAll = TRUE, StartSel = <ts-match>, StopSel = </ts-match> ' ) , ' <ts-match> ' ) ) AS anon_5 \n \
LIMIT ALL OFFSET 1 ) ) AS topic_matches \n \
FROM zerver_message \n \
WHERE recipient_id = { scotland_recipient } AND ( search_tsvector @ @ plainto_tsquery ( ' zulip.english_us_search ' , ' jumping ' ) ) ORDER BY zerver_message . id ASC \n \
LIMIT 10 ) AS anon_1 ORDER BY message_id ASC \
"""
2016-06-21 21:05:44 +02:00
sql = sql_template . format ( * * query_ids )
2021-02-12 08:19:30 +01:00
self . common_check_get_messages_query (
{
2021-02-12 08:20:45 +01:00
" anchor " : 0 ,
" num_before " : 0 ,
" num_after " : 9 ,
" narrow " : ' [[ " stream " , " Scotland " ], [ " search " , " jumping " ]] ' ,
2021-02-12 08:19:30 +01:00
} ,
sql ,
)
2016-06-21 21:05:44 +02:00
2019-08-28 11:06:38 +02:00
sql_template = """ \
SELECT anon_1 . message_id , anon_1 . flags , anon_1 . subject , anon_1 . rendered_content , anon_1 . content_matches , anon_1 . topic_matches \n \
FROM ( SELECT message_id , flags , subject , rendered_content , array ( ( SELECT ARRAY [ sum ( length ( anon_3 ) - 11 ) OVER ( ROWS BETWEEN UNBOUNDED PRECEDING AND 1 PRECEDING ) + 11 , strpos ( anon_3 , ' </ts-match> ' ) - 1 ] AS anon_2 \n \
FROM unnest ( string_to_array ( ts_headline ( ' zulip.english_us_search ' , rendered_content , plainto_tsquery ( ' zulip.english_us_search ' , ' " jumping " quickly ' ) , ' HighlightAll = TRUE, StartSel = <ts-match>, StopSel = </ts-match> ' ) , ' <ts-match> ' ) ) AS anon_3 \n \
LIMIT ALL OFFSET 1 ) ) AS content_matches , array ( ( SELECT ARRAY [ sum ( length ( anon_5 ) - 11 ) OVER ( ROWS BETWEEN UNBOUNDED PRECEDING AND 1 PRECEDING ) + 11 , strpos ( anon_5 , ' </ts-match> ' ) - 1 ] AS anon_4 \n \
FROM unnest ( string_to_array ( ts_headline ( ' zulip.english_us_search ' , escape_html ( subject ) , plainto_tsquery ( ' zulip.english_us_search ' , ' " jumping " quickly ' ) , ' HighlightAll = TRUE, StartSel = <ts-match>, StopSel = </ts-match> ' ) , ' <ts-match> ' ) ) AS anon_5 \n \
LIMIT ALL OFFSET 1 ) ) AS topic_matches \n \
FROM zerver_usermessage JOIN zerver_message ON zerver_usermessage . message_id = zerver_message . id \n \
WHERE user_profile_id = { hamlet_id } AND ( content ILIKE ' % jumping % ' OR subject ILIKE ' % jumping % ' ) AND ( search_tsvector @ @ plainto_tsquery ( ' zulip.english_us_search ' , ' " jumping " quickly ' ) ) ORDER BY message_id ASC \n \
LIMIT 10 ) AS anon_1 ORDER BY message_id ASC \
"""
2016-06-21 21:05:44 +02:00
sql = sql_template . format ( * * query_ids )
2021-02-12 08:19:30 +01:00
self . common_check_get_messages_query (
{
2021-02-12 08:20:45 +01:00
" anchor " : 0 ,
" num_before " : 0 ,
" num_after " : 9 ,
" narrow " : ' [[ " search " , " \\ " jumping \\ " quickly " ]] ' ,
2021-02-12 08:19:30 +01:00
} ,
sql ,
)
2017-04-29 00:03:43 +02:00
@override_settings ( USING_PGROONGA = False )
2017-11-05 10:51:25 +01:00
def test_get_messages_with_search_using_email ( self ) - > None :
2021-02-12 08:20:45 +01:00
self . login ( " cordelia " )
2017-04-29 00:03:43 +02:00
2021-02-12 08:20:45 +01:00
othello = self . example_user ( " othello " )
cordelia = self . example_user ( " cordelia " )
2020-03-12 14:17:25 +01:00
2017-04-29 00:03:43 +02:00
messages_to_search = [
2021-02-12 08:20:45 +01:00
( " say hello " , " How are you doing, @**Othello, the Moor of Venice**? " ) ,
( " lunch plans " , " I am hungry! " ) ,
2017-04-29 00:03:43 +02:00
]
2017-08-15 18:20:45 +02:00
next_message_id = self . get_last_message ( ) . id + 1
2017-04-29 00:03:43 +02:00
for topic , content in messages_to_search :
2017-10-28 17:38:19 +02:00
self . send_stream_message (
2020-03-12 14:17:25 +01:00
sender = cordelia ,
2017-10-28 17:38:19 +02:00
stream_name = " Verona " ,
2017-04-29 00:03:43 +02:00
content = content ,
2017-10-28 17:38:19 +02:00
topic_name = topic ,
2017-04-29 00:03:43 +02:00
)
self . _update_tsvector_index ( )
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " sender " , operand = cordelia . email ) ,
dict ( operator = " search " , operand = othello . email ) ,
2017-04-29 00:03:43 +02:00
]
2021-02-12 08:19:30 +01:00
result : Dict [ str , Any ] = self . get_and_check_messages (
dict (
narrow = orjson . dumps ( narrow ) . decode ( ) ,
anchor = next_message_id ,
num_after = 10 ,
)
)
2021-05-17 05:41:32 +02:00
self . assert_length ( result [ " messages " ] , 0 )
2017-04-29 00:03:43 +02:00
narrow = [
2021-02-12 08:20:45 +01:00
dict ( operator = " sender " , operand = cordelia . email ) ,
dict ( operator = " search " , operand = " othello " ) ,
2017-04-29 00:03:43 +02:00
]
2021-02-12 08:19:30 +01:00
result = self . get_and_check_messages (
dict (
narrow = orjson . dumps ( narrow ) . decode ( ) ,
anchor = next_message_id ,
num_after = 10 ,
)
)
2021-05-17 05:41:32 +02:00
self . assert_length ( result [ " messages " ] , 1 )
2021-02-12 08:20:45 +01:00
messages = result [ " messages " ]
2017-04-29 00:03:43 +02:00
2021-02-12 08:20:45 +01:00
( hello_message , ) = [ m for m in messages if m [ TOPIC_NAME ] == " say hello " ]
self . assertEqual ( hello_message [ MATCH_TOPIC ] , " say hello " )
2017-04-29 00:03:43 +02:00
self . assertEqual (
2021-02-12 08:20:45 +01:00
hello_message [ " match_content " ] ,
2020-06-14 02:57:50 +02:00
f ' <p>How are you doing, <span class= " user-mention " data-user-id= " { othello . id } " > '
' @<span class= " highlight " >Othello</span>, the Moor of Venice</span>?</p> ' ,
)
2020-07-08 00:44:42 +02:00
2021-02-12 08:19:30 +01:00
2020-07-08 00:44:42 +02:00
class MessageHasKeywordsTest ( ZulipTestCase ) :
2021-02-12 08:20:45 +01:00
""" Test for keywords like has_link, has_image, has_attachment. """
2020-07-08 00:44:42 +02:00
def setup_dummy_attachments ( self , user_profile : UserProfile ) - > List [ str ] :
sample_size = 10
realm_id = user_profile . realm_id
dummy_files = [
2021-02-12 08:20:45 +01:00
( " zulip.txt " , f " { realm_id } /31/4CBjtTLYZhk66pZrF8hnYGwc/zulip.txt " , sample_size ) ,
( " temp_file.py " , f " { realm_id } /31/4CBjtTLYZhk66pZrF8hnYGwc/temp_file.py " , sample_size ) ,
( " abc.py " , f " { realm_id } /31/4CBjtTLYZhk66pZrF8hnYGwc/abc.py " , sample_size ) ,
2020-07-08 00:44:42 +02:00
]
for file_name , path_id , size in dummy_files :
create_attachment ( file_name , path_id , user_profile , size )
# return path ids
return [ x [ 1 ] for x in dummy_files ]
def test_claim_attachment ( self ) - > None :
2021-02-12 08:20:45 +01:00
user_profile = self . example_user ( " hamlet " )
2020-07-08 00:44:42 +02:00
dummy_path_ids = self . setup_dummy_attachments ( user_profile )
dummy_urls = [ f " http://zulip.testserver/user_uploads/ { x } " for x in dummy_path_ids ]
# Send message referring the attachment
self . subscribe ( user_profile , " Denmark " )
def assert_attachment_claimed ( path_id : str , claimed : bool ) - > None :
attachment = Attachment . objects . get ( path_id = path_id )
self . assertEqual ( attachment . is_claimed ( ) , claimed )
# This message should claim attachments 1 only because attachment 2
# is not being parsed as a link by Markdown.
2021-02-12 08:19:30 +01:00
body = (
f " Some files here ...[zulip.txt]( { dummy_urls [ 0 ] } ) "
f " { dummy_urls [ 1 ] } .... Some more.... "
f " { dummy_urls [ 1 ] } "
)
2020-07-08 00:44:42 +02:00
self . send_stream_message ( user_profile , " Denmark " , body , " test " )
assert_attachment_claimed ( dummy_path_ids [ 0 ] , True )
assert_attachment_claimed ( dummy_path_ids [ 1 ] , False )
# This message tries to claim the third attachment but fails because
# Markdown would not set has_attachments = True here.
body = f " Link in code: ` { dummy_urls [ 2 ] } ` "
self . send_stream_message ( user_profile , " Denmark " , body , " test " )
assert_attachment_claimed ( dummy_path_ids [ 2 ] , False )
# Another scenario where we wouldn't parse the link.
body = f " Link to not parse: . { dummy_urls [ 2 ] } .` "
self . send_stream_message ( user_profile , " Denmark " , body , " test " )
assert_attachment_claimed ( dummy_path_ids [ 2 ] , False )
# Finally, claim attachment 3.
body = f " Link: { dummy_urls [ 2 ] } "
self . send_stream_message ( user_profile , " Denmark " , body , " test " )
assert_attachment_claimed ( dummy_path_ids [ 2 ] , True )
assert_attachment_claimed ( dummy_path_ids [ 1 ] , False )
def test_finds_all_links ( self ) - > None :
msg_ids = [ ]
msg_contents = [ " foo.org " , " [bar](baz.gov) " , " http://quux.ca " ]
for msg_content in msg_contents :
2021-02-12 08:19:30 +01:00
msg_ids . append (
self . send_stream_message (
2021-02-12 08:20:45 +01:00
self . example_user ( " hamlet " ) , " Denmark " , content = msg_content
2021-02-12 08:19:30 +01:00
)
)
2020-07-08 00:44:42 +02:00
msgs = [ Message . objects . get ( id = id ) for id in msg_ids ]
2020-09-02 06:20:26 +02:00
self . assertTrue ( all ( msg . has_link for msg in msgs ) )
2020-07-08 00:44:42 +02:00
def test_finds_only_links ( self ) - > None :
msg_ids = [ ]
2021-02-12 08:20:45 +01:00
msg_contents = [ " `example.org` " , " ``example.org``` " , " $$https://example.org$$ " , " foo " ]
2020-07-08 00:44:42 +02:00
for msg_content in msg_contents :
2021-02-12 08:19:30 +01:00
msg_ids . append (
self . send_stream_message (
2021-02-12 08:20:45 +01:00
self . example_user ( " hamlet " ) , " Denmark " , content = msg_content
2021-02-12 08:19:30 +01:00
)
)
2020-07-08 00:44:42 +02:00
msgs = [ Message . objects . get ( id = id ) for id in msg_ids ]
2020-09-02 06:20:26 +02:00
self . assertFalse ( all ( msg . has_link for msg in msgs ) )
2020-07-08 00:44:42 +02:00
def update_message ( self , msg : Message , content : str ) - > None :
2021-02-12 08:20:45 +01:00
hamlet = self . example_user ( " hamlet " )
2020-07-08 00:44:42 +02:00
realm_id = hamlet . realm . id
2021-06-17 12:20:40 +02:00
rendering_result = render_markdown ( msg , content )
2020-07-08 00:44:42 +02:00
mention_data = MentionData ( realm_id , content )
2021-02-12 08:19:30 +01:00
do_update_message (
hamlet ,
msg ,
None ,
None ,
" change_one " ,
False ,
False ,
content ,
2021-06-17 12:20:40 +02:00
rendering_result ,
2021-02-12 08:19:30 +01:00
set ( ) ,
mention_data = mention_data ,
)
2020-07-08 00:44:42 +02:00
def test_finds_link_after_edit ( self ) - > None :
2021-02-12 08:20:45 +01:00
hamlet = self . example_user ( " hamlet " )
msg_id = self . send_stream_message ( hamlet , " Denmark " , content = " a " )
2020-07-08 00:44:42 +02:00
msg = Message . objects . get ( id = msg_id )
self . assertFalse ( msg . has_link )
2021-02-12 08:20:45 +01:00
self . update_message ( msg , " a http://foo.com " )
2020-07-08 00:44:42 +02:00
self . assertTrue ( msg . has_link )
2021-02-12 08:20:45 +01:00
self . update_message ( msg , " a " )
2020-07-08 00:44:42 +02:00
self . assertFalse ( msg . has_link )
# Check in blockquotes work
2021-02-12 08:20:45 +01:00
self . update_message ( msg , " > http://bar.com " )
2020-07-08 00:44:42 +02:00
self . assertTrue ( msg . has_link )
2021-02-12 08:20:45 +01:00
self . update_message ( msg , " a `http://foo.com` " )
2020-07-08 00:44:42 +02:00
self . assertFalse ( msg . has_link )
def test_has_image ( self ) - > None :
msg_ids = [ ]
2021-02-12 08:19:30 +01:00
msg_contents = [
" Link: foo.org " ,
" Image: https://www.google.com/images/srpr/logo4w.png " ,
" Image: https://www.google.com/images/srpr/logo4w.pdf " ,
" [Google link](https://www.google.com/images/srpr/logo4w.png) " ,
]
2020-07-08 00:44:42 +02:00
for msg_content in msg_contents :
2021-02-12 08:19:30 +01:00
msg_ids . append (
self . send_stream_message (
2021-02-12 08:20:45 +01:00
self . example_user ( " hamlet " ) , " Denmark " , content = msg_content
2021-02-12 08:19:30 +01:00
)
)
2020-07-08 00:44:42 +02:00
msgs = [ Message . objects . get ( id = id ) for id in msg_ids ]
self . assertEqual ( [ False , True , False , True ] , [ msg . has_image for msg in msgs ] )
2021-02-12 08:20:45 +01:00
self . update_message ( msgs [ 0 ] , " https://www.google.com/images/srpr/logo4w.png " )
2020-07-08 00:44:42 +02:00
self . assertTrue ( msgs [ 0 ] . has_image )
2021-02-12 08:20:45 +01:00
self . update_message ( msgs [ 0 ] , " No image again " )
2020-07-08 00:44:42 +02:00
self . assertFalse ( msgs [ 0 ] . has_image )
def test_has_attachment ( self ) - > None :
2021-02-12 08:20:45 +01:00
hamlet = self . example_user ( " hamlet " )
2020-07-08 00:44:42 +02:00
dummy_path_ids = self . setup_dummy_attachments ( hamlet )
dummy_urls = [ f " http://zulip.testserver/user_uploads/ { x } " for x in dummy_path_ids ]
self . subscribe ( hamlet , " Denmark " )
2021-02-12 08:19:30 +01:00
body = ( " Files ...[zulip.txt]( {} ) {} {} " ) . format (
dummy_urls [ 0 ] , dummy_urls [ 1 ] , dummy_urls [ 2 ]
)
2020-07-08 00:44:42 +02:00
msg_id = self . send_stream_message ( hamlet , " Denmark " , body , " test " )
msg = Message . objects . get ( id = msg_id )
self . assertTrue ( msg . has_attachment )
2021-02-12 08:20:45 +01:00
self . update_message ( msg , " No attachments " )
2020-07-08 00:44:42 +02:00
self . assertFalse ( msg . has_attachment )
self . update_message ( msg , body )
self . assertTrue ( msg . has_attachment )
2021-02-12 08:20:45 +01:00
self . update_message ( msg , f " Link in code: ` { dummy_urls [ 1 ] } ` " )
2020-07-08 00:44:42 +02:00
self . assertFalse ( msg . has_attachment )
# Test blockquotes
2021-02-12 08:20:45 +01:00
self . update_message ( msg , f " > { dummy_urls [ 1 ] } " )
2020-07-08 00:44:42 +02:00
self . assertTrue ( msg . has_attachment )
# Additional test to check has_attachment is being set is due to the correct attachment.
2021-02-12 08:20:45 +01:00
self . update_message ( msg , f " Outside: { dummy_urls [ 0 ] } . In code: ` { dummy_urls [ 1 ] } `. " )
2020-07-08 00:44:42 +02:00
self . assertTrue ( msg . has_attachment )
self . assertTrue ( msg . attachment_set . filter ( path_id = dummy_path_ids [ 0 ] ) )
self . assertEqual ( msg . attachment_set . count ( ) , 1 )
2021-02-12 08:20:45 +01:00
self . update_message ( msg , f " Outside: { dummy_urls [ 1 ] } . In code: ` { dummy_urls [ 0 ] } `. " )
2020-07-08 00:44:42 +02:00
self . assertTrue ( msg . has_attachment )
self . assertTrue ( msg . attachment_set . filter ( path_id = dummy_path_ids [ 1 ] ) )
self . assertEqual ( msg . attachment_set . count ( ) , 1 )
2021-02-12 08:20:45 +01:00
self . update_message ( msg , f " Both in code: ` { dummy_urls [ 1 ] } { dummy_urls [ 0 ] } `. " )
2020-07-08 00:44:42 +02:00
self . assertFalse ( msg . has_attachment )
self . assertEqual ( msg . attachment_set . count ( ) , 0 )
def test_potential_attachment_path_ids ( self ) - > None :
2021-02-12 08:20:45 +01:00
hamlet = self . example_user ( " hamlet " )
2020-07-08 00:44:42 +02:00
self . subscribe ( hamlet , " Denmark " )
dummy_path_ids = self . setup_dummy_attachments ( hamlet )
body = " Hello "
msg_id = self . send_stream_message ( hamlet , " Denmark " , body , " test " )
msg = Message . objects . get ( id = msg_id )
2021-02-12 08:19:30 +01:00
with mock . patch ( " zerver.lib.actions.do_claim_attachments " , wraps = do_claim_attachments ) as m :
self . update_message (
2021-02-12 08:20:45 +01:00
msg , f " [link](http:// { hamlet . realm . host } /user_uploads/ { dummy_path_ids [ 0 ] } ) "
2021-02-12 08:19:30 +01:00
)
2020-07-08 00:44:42 +02:00
self . assertTrue ( m . called )
m . reset_mock ( )
2021-02-12 08:20:45 +01:00
self . update_message ( msg , f " [link](/user_uploads/ { dummy_path_ids [ 1 ] } ) " )
2020-07-08 00:44:42 +02:00
self . assertTrue ( m . called )
m . reset_mock ( )
2021-02-12 08:20:45 +01:00
self . update_message ( msg , f " [new text link](/user_uploads/ { dummy_path_ids [ 1 ] } ) " )
2020-07-08 00:44:42 +02:00
self . assertFalse ( m . called )
m . reset_mock ( )
# It's not clear this is correct behavior
2021-02-12 08:20:45 +01:00
self . update_message ( msg , f " [link](user_uploads/ { dummy_path_ids [ 2 ] } ) " )
2020-07-08 00:44:42 +02:00
self . assertFalse ( m . called )
m . reset_mock ( )
2021-02-12 08:20:45 +01:00
self . update_message ( msg , f " [link](https://github.com/user_uploads/ { dummy_path_ids [ 0 ] } ) " )
2020-07-08 00:44:42 +02:00
self . assertFalse ( m . called )
m . reset_mock ( )
2020-07-08 01:29:42 +02:00
2021-02-12 08:19:30 +01:00
2020-07-08 01:29:42 +02:00
class MessageVisibilityTest ( ZulipTestCase ) :
def test_update_first_visible_message_id ( self ) - > None :
Message . objects . all ( ) . delete ( )
2021-02-12 08:19:30 +01:00
message_ids = [
self . send_stream_message ( self . example_user ( " othello " ) , " Scotland " ) for i in range ( 15 )
]
2020-07-08 01:29:42 +02:00
# If message_visibility_limit is None update_first_visible_message_id
# should set first_visible_message_id to 0
realm = get_realm ( " zulip " )
realm . message_visibility_limit = None
# Setting to a random value other than 0 as the default value of
# first_visible_message_id is 0
realm . first_visible_message_id = 5
realm . save ( )
update_first_visible_message_id ( realm )
self . assertEqual ( get_first_visible_message_id ( realm ) , 0 )
realm . message_visibility_limit = 10
realm . save ( )
expected_message_id = message_ids [ 5 ]
update_first_visible_message_id ( realm )
self . assertEqual ( get_first_visible_message_id ( realm ) , expected_message_id )
# If the message_visibility_limit is greater than number of messages
# get_first_visible_message_id should return 0
realm . message_visibility_limit = 50
realm . save ( )
update_first_visible_message_id ( realm )
self . assertEqual ( get_first_visible_message_id ( realm ) , 0 )
def test_maybe_update_first_visible_message_id ( self ) - > None :
realm = get_realm ( " zulip " )
lookback_hours = 30
realm . message_visibility_limit = None
realm . save ( )
end_time = timezone_now ( ) - datetime . timedelta ( hours = lookback_hours - 5 )
2021-02-12 08:20:45 +01:00
stat = COUNT_STATS [ " messages_sent:is_bot:hour " ]
2020-07-08 01:29:42 +02:00
2021-02-12 08:19:30 +01:00
RealmCount . objects . create ( realm = realm , property = stat . property , end_time = end_time , value = 5 )
2020-07-08 01:29:42 +02:00
with mock . patch ( " zerver.lib.message.update_first_visible_message_id " ) as m :
maybe_update_first_visible_message_id ( realm , lookback_hours )
m . assert_not_called ( )
realm . message_visibility_limit = 10
realm . save ( )
RealmCount . objects . all ( ) . delete ( )
with mock . patch ( " zerver.lib.message.update_first_visible_message_id " ) as m :
maybe_update_first_visible_message_id ( realm , lookback_hours )
m . assert_not_called ( )
2021-02-12 08:19:30 +01:00
RealmCount . objects . create ( realm = realm , property = stat . property , end_time = end_time , value = 5 )
2020-07-08 01:29:42 +02:00
with mock . patch ( " zerver.lib.message.update_first_visible_message_id " ) as m :
maybe_update_first_visible_message_id ( realm , lookback_hours )
m . assert_called_once_with ( realm )
2020-07-08 02:38:54 +02:00
2021-02-12 08:19:30 +01:00
2020-07-08 02:38:54 +02:00
class PersonalMessagesNearTest ( ZulipTestCase ) :
def test_near_pm_message_url ( self ) - > None :
2021-02-12 08:20:45 +01:00
realm = get_realm ( " zulip " )
2020-07-08 02:38:54 +02:00
message = dict (
2021-02-12 08:20:45 +01:00
type = " personal " ,
2020-07-08 02:38:54 +02:00
id = 555 ,
display_recipient = [
dict ( id = 77 ) ,
dict ( id = 80 ) ,
] ,
)
url = near_message_url (
realm = realm ,
message = message ,
)
2021-02-12 08:20:45 +01:00
self . assertEqual ( url , " http://zulip.testserver/#narrow/pm-with/77,80-pm/near/555 " )