2021-04-06 07:21:02 -04:00
|
|
|
# Copyright 2018-2021 The Matrix.org Foundation C.I.C.
|
2018-01-25 16:25:03 -05:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2021-10-15 10:53:05 -04:00
|
|
|
from typing import Any, Dict, Set, Tuple
|
2021-10-05 13:35:25 -04:00
|
|
|
from unittest import mock
|
2021-10-04 07:45:51 -04:00
|
|
|
from unittest.mock import Mock, patch
|
2021-09-30 06:04:40 -04:00
|
|
|
|
|
|
|
from twisted.test.proto_helpers import MemoryReactor
|
|
|
|
|
2021-10-05 13:35:25 -04:00
|
|
|
from synapse.api.constants import EventTypes, Membership, UserTypes
|
2021-10-04 07:45:51 -04:00
|
|
|
from synapse.appservice import ApplicationService
|
2021-09-30 06:04:40 -04:00
|
|
|
from synapse.rest import admin
|
2021-10-04 07:45:51 -04:00
|
|
|
from synapse.rest.client import login, register, room
|
2021-09-30 06:04:40 -04:00
|
|
|
from synapse.server import HomeServer
|
|
|
|
from synapse.storage import DataStore
|
2021-11-29 11:57:06 -05:00
|
|
|
from synapse.storage.background_updates import _BackgroundUpdateHandler
|
2021-10-05 13:35:25 -04:00
|
|
|
from synapse.storage.roommember import ProfileInfo
|
2021-09-30 06:04:40 -04:00
|
|
|
from synapse.util import Clock
|
2018-01-25 16:25:03 -05:00
|
|
|
|
2021-10-04 07:45:51 -04:00
|
|
|
from tests.test_utils.event_injection import inject_member_event
|
2021-04-06 07:21:02 -04:00
|
|
|
from tests.unittest import HomeserverTestCase, override_config
|
2018-01-25 16:25:03 -05:00
|
|
|
|
|
|
|
ALICE = "@alice:a"
|
|
|
|
BOB = "@bob:b"
|
|
|
|
BOBBY = "@bobby:a"
|
2020-12-17 08:42:30 -05:00
|
|
|
# The localpart isn't 'Bela' on purpose so we can test looking up display names.
|
|
|
|
BELA = "@somenickname:a"
|
2018-01-25 16:25:03 -05:00
|
|
|
|
|
|
|
|
2021-09-30 06:04:40 -04:00
|
|
|
class GetUserDirectoryTables:
|
|
|
|
"""Helper functions that we want to reuse in tests/handlers/test_user_directory.py"""
|
|
|
|
|
|
|
|
def __init__(self, store: DataStore):
|
|
|
|
self.store = store
|
|
|
|
|
2021-10-15 10:53:05 -04:00
|
|
|
async def get_users_in_public_rooms(self) -> Set[Tuple[str, str]]:
|
2021-10-05 13:35:25 -04:00
|
|
|
"""Fetch the entire `users_in_public_rooms` table.
|
|
|
|
|
|
|
|
Returns a list of tuples (user_id, room_id) where room_id is public and
|
|
|
|
contains the user with the given id.
|
|
|
|
"""
|
2021-09-30 06:04:40 -04:00
|
|
|
r = await self.store.db_pool.simple_select_list(
|
|
|
|
"users_in_public_rooms", None, ("user_id", "room_id")
|
|
|
|
)
|
|
|
|
|
2021-10-15 10:53:05 -04:00
|
|
|
retval = set()
|
2021-09-30 06:04:40 -04:00
|
|
|
for i in r:
|
2021-10-15 10:53:05 -04:00
|
|
|
retval.add((i["user_id"], i["room_id"]))
|
2021-09-30 06:04:40 -04:00
|
|
|
return retval
|
|
|
|
|
2021-10-15 10:53:05 -04:00
|
|
|
async def get_users_who_share_private_rooms(self) -> Set[Tuple[str, str, str]]:
|
2021-10-05 13:35:25 -04:00
|
|
|
"""Fetch the entire `users_who_share_private_rooms` table.
|
|
|
|
|
2021-10-15 10:53:05 -04:00
|
|
|
Returns a set of tuples (user_id, other_user_id, room_id) corresponding
|
|
|
|
to the rows of `users_who_share_private_rooms`.
|
2021-10-05 13:35:25 -04:00
|
|
|
"""
|
|
|
|
|
2021-10-15 10:53:05 -04:00
|
|
|
rows = await self.store.db_pool.simple_select_list(
|
2021-09-30 06:04:40 -04:00
|
|
|
"users_who_share_private_rooms",
|
|
|
|
None,
|
|
|
|
["user_id", "other_user_id", "room_id"],
|
|
|
|
)
|
2021-10-15 10:53:05 -04:00
|
|
|
rv = set()
|
|
|
|
for row in rows:
|
|
|
|
rv.add((row["user_id"], row["other_user_id"], row["room_id"]))
|
|
|
|
return rv
|
2021-09-30 06:04:40 -04:00
|
|
|
|
2021-10-04 07:45:51 -04:00
|
|
|
async def get_users_in_user_directory(self) -> Set[str]:
|
2021-10-05 13:35:25 -04:00
|
|
|
"""Fetch the set of users in the `user_directory` table.
|
|
|
|
|
|
|
|
This is useful when checking we've correctly excluded users from the directory.
|
|
|
|
"""
|
2021-10-04 07:45:51 -04:00
|
|
|
result = await self.store.db_pool.simple_select_list(
|
|
|
|
"user_directory",
|
|
|
|
None,
|
|
|
|
["user_id"],
|
|
|
|
)
|
|
|
|
return {row["user_id"] for row in result}
|
|
|
|
|
2021-10-05 13:35:25 -04:00
|
|
|
async def get_profiles_in_user_directory(self) -> Dict[str, ProfileInfo]:
|
|
|
|
"""Fetch users and their profiles from the `user_directory` table.
|
|
|
|
|
|
|
|
This is useful when we want to inspect display names and avatars.
|
|
|
|
It's almost the entire contents of the `user_directory` table: the only
|
|
|
|
thing missing is an unused room_id column.
|
|
|
|
"""
|
|
|
|
rows = await self.store.db_pool.simple_select_list(
|
|
|
|
"user_directory",
|
|
|
|
None,
|
|
|
|
("user_id", "display_name", "avatar_url"),
|
|
|
|
)
|
|
|
|
return {
|
|
|
|
row["user_id"]: ProfileInfo(
|
|
|
|
display_name=row["display_name"], avatar_url=row["avatar_url"]
|
|
|
|
)
|
|
|
|
for row in rows
|
|
|
|
}
|
|
|
|
|
2021-10-15 10:53:05 -04:00
|
|
|
async def get_tables(
|
|
|
|
self,
|
|
|
|
) -> Tuple[Set[str], Set[Tuple[str, str]], Set[Tuple[str, str, str]]]:
|
|
|
|
"""Multiple tests want to inspect these tables, so expose them together."""
|
|
|
|
return (
|
|
|
|
await self.get_users_in_user_directory(),
|
|
|
|
await self.get_users_in_public_rooms(),
|
|
|
|
await self.get_users_who_share_private_rooms(),
|
|
|
|
)
|
|
|
|
|
2021-09-30 06:04:40 -04:00
|
|
|
|
|
|
|
class UserDirectoryInitialPopulationTestcase(HomeserverTestCase):
|
|
|
|
"""Ensure that rebuilding the directory writes the correct data to the DB.
|
|
|
|
|
|
|
|
See also tests/handlers/test_user_directory.py for similar checks. They
|
|
|
|
test the incremental updates, rather than the big rebuild.
|
|
|
|
"""
|
|
|
|
|
|
|
|
servlets = [
|
|
|
|
login.register_servlets,
|
2021-10-04 07:45:51 -04:00
|
|
|
admin.register_servlets,
|
2021-09-30 06:04:40 -04:00
|
|
|
room.register_servlets,
|
2021-10-04 07:45:51 -04:00
|
|
|
register.register_servlets,
|
2021-09-30 06:04:40 -04:00
|
|
|
]
|
|
|
|
|
2021-10-04 07:45:51 -04:00
|
|
|
def make_homeserver(self, reactor: MemoryReactor, clock: Clock) -> HomeServer:
|
|
|
|
self.appservice = ApplicationService(
|
|
|
|
token="i_am_an_app_service",
|
|
|
|
hostname="test",
|
|
|
|
id="1234",
|
|
|
|
namespaces={"users": [{"regex": r"@as_user.*", "exclusive": True}]},
|
|
|
|
sender="@as:test",
|
|
|
|
)
|
|
|
|
|
|
|
|
mock_load_appservices = Mock(return_value=[self.appservice])
|
|
|
|
with patch(
|
|
|
|
"synapse.storage.databases.main.appservice.load_appservices",
|
|
|
|
mock_load_appservices,
|
|
|
|
):
|
|
|
|
hs = super().make_homeserver(reactor, clock)
|
|
|
|
return hs
|
|
|
|
|
2021-09-30 06:04:40 -04:00
|
|
|
def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer) -> None:
|
|
|
|
self.store = hs.get_datastore()
|
|
|
|
self.user_dir_helper = GetUserDirectoryTables(self.store)
|
|
|
|
|
|
|
|
def _purge_and_rebuild_user_dir(self) -> None:
|
|
|
|
"""Nuke the user directory tables, start the background process to
|
|
|
|
repopulate them, and wait for the process to complete. This allows us
|
|
|
|
to inspect the outcome of the background process alone, without any of
|
|
|
|
the other incremental updates.
|
|
|
|
"""
|
|
|
|
self.get_success(self.store.update_user_directory_stream_pos(None))
|
|
|
|
self.get_success(self.store.delete_all_from_user_dir())
|
|
|
|
|
|
|
|
shares_private = self.get_success(
|
|
|
|
self.user_dir_helper.get_users_who_share_private_rooms()
|
|
|
|
)
|
|
|
|
public_users = self.get_success(
|
|
|
|
self.user_dir_helper.get_users_in_public_rooms()
|
|
|
|
)
|
|
|
|
|
|
|
|
# Nothing updated yet
|
2021-10-15 10:53:05 -04:00
|
|
|
self.assertEqual(shares_private, set())
|
|
|
|
self.assertEqual(public_users, set())
|
2021-09-30 06:04:40 -04:00
|
|
|
|
|
|
|
# Ugh, have to reset this flag
|
|
|
|
self.store.db_pool.updates._all_done = False
|
|
|
|
|
|
|
|
self.get_success(
|
|
|
|
self.store.db_pool.simple_insert(
|
|
|
|
"background_updates",
|
|
|
|
{
|
|
|
|
"update_name": "populate_user_directory_createtables",
|
|
|
|
"progress_json": "{}",
|
|
|
|
},
|
|
|
|
)
|
|
|
|
)
|
|
|
|
self.get_success(
|
|
|
|
self.store.db_pool.simple_insert(
|
|
|
|
"background_updates",
|
|
|
|
{
|
|
|
|
"update_name": "populate_user_directory_process_rooms",
|
|
|
|
"progress_json": "{}",
|
|
|
|
"depends_on": "populate_user_directory_createtables",
|
|
|
|
},
|
|
|
|
)
|
|
|
|
)
|
|
|
|
self.get_success(
|
|
|
|
self.store.db_pool.simple_insert(
|
|
|
|
"background_updates",
|
|
|
|
{
|
|
|
|
"update_name": "populate_user_directory_process_users",
|
|
|
|
"progress_json": "{}",
|
|
|
|
"depends_on": "populate_user_directory_process_rooms",
|
|
|
|
},
|
|
|
|
)
|
|
|
|
)
|
|
|
|
self.get_success(
|
|
|
|
self.store.db_pool.simple_insert(
|
|
|
|
"background_updates",
|
|
|
|
{
|
|
|
|
"update_name": "populate_user_directory_cleanup",
|
|
|
|
"progress_json": "{}",
|
|
|
|
"depends_on": "populate_user_directory_process_users",
|
|
|
|
},
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2021-10-06 08:56:45 -04:00
|
|
|
self.wait_for_background_updates()
|
2021-09-30 06:04:40 -04:00
|
|
|
|
|
|
|
def test_initial(self) -> None:
|
|
|
|
"""
|
|
|
|
The user directory's initial handler correctly updates the search tables.
|
|
|
|
"""
|
|
|
|
u1 = self.register_user("user1", "pass")
|
|
|
|
u1_token = self.login(u1, "pass")
|
|
|
|
u2 = self.register_user("user2", "pass")
|
|
|
|
u2_token = self.login(u2, "pass")
|
|
|
|
u3 = self.register_user("user3", "pass")
|
|
|
|
u3_token = self.login(u3, "pass")
|
|
|
|
|
|
|
|
room = self.helper.create_room_as(u1, is_public=True, tok=u1_token)
|
|
|
|
self.helper.invite(room, src=u1, targ=u2, tok=u1_token)
|
|
|
|
self.helper.join(room, user=u2, tok=u2_token)
|
|
|
|
|
|
|
|
private_room = self.helper.create_room_as(u1, is_public=False, tok=u1_token)
|
|
|
|
self.helper.invite(private_room, src=u1, targ=u3, tok=u1_token)
|
|
|
|
self.helper.join(private_room, user=u3, tok=u3_token)
|
|
|
|
|
|
|
|
# Do the initial population of the user directory via the background update
|
|
|
|
self._purge_and_rebuild_user_dir()
|
|
|
|
|
2021-10-15 10:53:05 -04:00
|
|
|
users, in_public, in_private = self.get_success(
|
|
|
|
self.user_dir_helper.get_tables()
|
2021-09-30 06:04:40 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# User 1 and User 2 are in the same public room
|
2021-10-15 10:53:05 -04:00
|
|
|
self.assertEqual(in_public, {(u1, room), (u2, room)})
|
2021-09-30 06:04:40 -04:00
|
|
|
# User 1 and User 3 share private rooms
|
2021-10-15 10:53:05 -04:00
|
|
|
self.assertEqual(in_private, {(u1, u3, private_room), (u3, u1, private_room)})
|
2021-10-04 07:45:51 -04:00
|
|
|
# All three should have entries in the directory
|
|
|
|
self.assertEqual(users, {u1, u2, u3})
|
|
|
|
|
2021-10-13 05:38:22 -04:00
|
|
|
# The next four tests (test_population_excludes_*) all set up
|
2021-10-04 07:45:51 -04:00
|
|
|
# - A normal user included in the user dir
|
|
|
|
# - A public and private room created by that user
|
|
|
|
# - A user excluded from the room dir, belonging to both rooms
|
|
|
|
|
|
|
|
# They match similar logic in handlers/test_user_directory.py But that tests
|
|
|
|
# updating the directory; this tests rebuilding it from scratch.
|
|
|
|
|
|
|
|
def _create_rooms_and_inject_memberships(
|
|
|
|
self, creator: str, token: str, joiner: str
|
|
|
|
) -> Tuple[str, str]:
|
|
|
|
"""Create a public and private room as a normal user.
|
|
|
|
Then get the `joiner` into those rooms.
|
|
|
|
"""
|
|
|
|
public_room = self.helper.create_room_as(
|
|
|
|
creator,
|
|
|
|
is_public=True,
|
|
|
|
# See https://github.com/matrix-org/synapse/issues/10951
|
|
|
|
extra_content={"visibility": "public"},
|
|
|
|
tok=token,
|
|
|
|
)
|
|
|
|
private_room = self.helper.create_room_as(creator, is_public=False, tok=token)
|
|
|
|
|
|
|
|
# HACK: get the user into these rooms
|
|
|
|
self.get_success(inject_member_event(self.hs, public_room, joiner, "join"))
|
|
|
|
self.get_success(inject_member_event(self.hs, private_room, joiner, "join"))
|
|
|
|
|
|
|
|
return public_room, private_room
|
|
|
|
|
|
|
|
def _check_room_sharing_tables(
|
|
|
|
self, normal_user: str, public_room: str, private_room: str
|
|
|
|
) -> None:
|
|
|
|
# After rebuilding the directory, we should only see the normal user.
|
2021-10-15 10:53:05 -04:00
|
|
|
users, in_public, in_private = self.get_success(
|
|
|
|
self.user_dir_helper.get_tables()
|
2021-10-04 07:45:51 -04:00
|
|
|
)
|
2021-10-15 10:53:05 -04:00
|
|
|
self.assertEqual(users, {normal_user})
|
|
|
|
self.assertEqual(in_public, {(normal_user, public_room)})
|
|
|
|
self.assertEqual(in_private, set())
|
2021-10-04 07:45:51 -04:00
|
|
|
|
|
|
|
def test_population_excludes_support_user(self) -> None:
|
|
|
|
# Create a normal and support user.
|
|
|
|
user = self.register_user("user", "pass")
|
|
|
|
token = self.login(user, "pass")
|
|
|
|
support = "@support1:test"
|
|
|
|
self.get_success(
|
|
|
|
self.store.register_user(
|
|
|
|
user_id=support, password_hash=None, user_type=UserTypes.SUPPORT
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
# Join the support user to rooms owned by the normal user.
|
|
|
|
public, private = self._create_rooms_and_inject_memberships(
|
|
|
|
user, token, support
|
|
|
|
)
|
|
|
|
|
|
|
|
# Rebuild the directory.
|
|
|
|
self._purge_and_rebuild_user_dir()
|
|
|
|
|
|
|
|
# Check the support user is not in the directory.
|
|
|
|
self._check_room_sharing_tables(user, public, private)
|
|
|
|
|
|
|
|
def test_population_excludes_deactivated_user(self) -> None:
|
|
|
|
user = self.register_user("naughty", "pass")
|
|
|
|
admin = self.register_user("admin", "pass", admin=True)
|
|
|
|
admin_token = self.login(admin, "pass")
|
|
|
|
|
|
|
|
# Deactivate the user.
|
|
|
|
channel = self.make_request(
|
|
|
|
"PUT",
|
|
|
|
f"/_synapse/admin/v2/users/{user}",
|
|
|
|
access_token=admin_token,
|
|
|
|
content={"deactivated": True},
|
|
|
|
)
|
|
|
|
self.assertEqual(channel.code, 200)
|
|
|
|
self.assertEqual(channel.json_body["deactivated"], True)
|
|
|
|
|
|
|
|
# Join the deactivated user to rooms owned by the admin.
|
|
|
|
# Is this something that could actually happen outside of a test?
|
|
|
|
public, private = self._create_rooms_and_inject_memberships(
|
|
|
|
admin, admin_token, user
|
|
|
|
)
|
|
|
|
|
|
|
|
# Rebuild the user dir. The deactivated user should be missing.
|
|
|
|
self._purge_and_rebuild_user_dir()
|
|
|
|
self._check_room_sharing_tables(admin, public, private)
|
|
|
|
|
|
|
|
def test_population_excludes_appservice_user(self) -> None:
|
|
|
|
# Register an AS user.
|
|
|
|
user = self.register_user("user", "pass")
|
|
|
|
token = self.login(user, "pass")
|
2022-02-02 04:59:55 -05:00
|
|
|
as_user, _ = self.register_appservice_user(
|
|
|
|
"as_user_potato", self.appservice.token
|
|
|
|
)
|
2021-10-04 07:45:51 -04:00
|
|
|
|
|
|
|
# Join the AS user to rooms owned by the normal user.
|
|
|
|
public, private = self._create_rooms_and_inject_memberships(
|
|
|
|
user, token, as_user
|
|
|
|
)
|
|
|
|
|
|
|
|
# Rebuild the directory.
|
|
|
|
self._purge_and_rebuild_user_dir()
|
|
|
|
|
|
|
|
# Check the AS user is not in the directory.
|
|
|
|
self._check_room_sharing_tables(user, public, private)
|
|
|
|
|
2021-10-13 05:38:22 -04:00
|
|
|
def test_population_excludes_appservice_sender(self) -> None:
|
|
|
|
user = self.register_user("user", "pass")
|
|
|
|
token = self.login(user, "pass")
|
|
|
|
|
|
|
|
# Join the AS sender to rooms owned by the normal user.
|
|
|
|
public, private = self._create_rooms_and_inject_memberships(
|
|
|
|
user, token, self.appservice.sender
|
|
|
|
)
|
|
|
|
|
|
|
|
# Rebuild the directory.
|
|
|
|
self._purge_and_rebuild_user_dir()
|
|
|
|
|
|
|
|
# Check the AS sender is not in the directory.
|
|
|
|
self._check_room_sharing_tables(user, public, private)
|
|
|
|
|
2021-10-05 13:35:25 -04:00
|
|
|
def test_population_conceals_private_nickname(self) -> None:
|
|
|
|
# Make a private room, and set a nickname within
|
|
|
|
user = self.register_user("aaaa", "pass")
|
|
|
|
user_token = self.login(user, "pass")
|
|
|
|
private_room = self.helper.create_room_as(user, is_public=False, tok=user_token)
|
|
|
|
self.helper.send_state(
|
|
|
|
private_room,
|
|
|
|
EventTypes.Member,
|
|
|
|
state_key=user,
|
|
|
|
body={"membership": Membership.JOIN, "displayname": "BBBB"},
|
|
|
|
tok=user_token,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Rebuild the user directory. Make the rescan of the `users` table a no-op
|
|
|
|
# so we only see the effect of scanning the `room_memberships` table.
|
|
|
|
async def mocked_process_users(*args: Any, **kwargs: Any) -> int:
|
|
|
|
await self.store.db_pool.updates._end_background_update(
|
|
|
|
"populate_user_directory_process_users"
|
|
|
|
)
|
|
|
|
return 1
|
|
|
|
|
|
|
|
with mock.patch.dict(
|
|
|
|
self.store.db_pool.updates._background_update_handlers,
|
2021-11-29 11:57:06 -05:00
|
|
|
populate_user_directory_process_users=_BackgroundUpdateHandler(
|
|
|
|
mocked_process_users,
|
|
|
|
),
|
2021-10-05 13:35:25 -04:00
|
|
|
):
|
|
|
|
self._purge_and_rebuild_user_dir()
|
|
|
|
|
|
|
|
# Local users are ignored by the scan over rooms
|
|
|
|
users = self.get_success(self.user_dir_helper.get_profiles_in_user_directory())
|
|
|
|
self.assertEqual(users, {})
|
|
|
|
|
|
|
|
# Do a full rebuild including the scan over the `users` table. The local
|
|
|
|
# user should appear with their profile name.
|
|
|
|
self._purge_and_rebuild_user_dir()
|
|
|
|
users = self.get_success(self.user_dir_helper.get_profiles_in_user_directory())
|
|
|
|
self.assertEqual(
|
|
|
|
users, {user: ProfileInfo(display_name="aaaa", avatar_url=None)}
|
|
|
|
)
|
|
|
|
|
2021-09-30 06:04:40 -04:00
|
|
|
|
2021-04-06 07:21:02 -04:00
|
|
|
class UserDirectoryStoreTestCase(HomeserverTestCase):
|
2021-09-30 06:04:40 -04:00
|
|
|
def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer) -> None:
|
2021-04-06 07:21:02 -04:00
|
|
|
self.store = hs.get_datastore()
|
2018-01-25 16:25:03 -05:00
|
|
|
|
|
|
|
# alice and bob are both in !room_id. bobby is not but shares
|
|
|
|
# a homeserver with alice.
|
2021-04-06 07:21:02 -04:00
|
|
|
self.get_success(self.store.update_profile_in_user_dir(ALICE, "alice", None))
|
|
|
|
self.get_success(self.store.update_profile_in_user_dir(BOB, "bob", None))
|
|
|
|
self.get_success(self.store.update_profile_in_user_dir(BOBBY, "bobby", None))
|
|
|
|
self.get_success(self.store.update_profile_in_user_dir(BELA, "Bela", None))
|
|
|
|
self.get_success(self.store.add_users_in_public_rooms("!room:id", (ALICE, BOB)))
|
2018-01-25 16:25:03 -05:00
|
|
|
|
2021-09-30 06:04:40 -04:00
|
|
|
def test_search_user_dir(self) -> None:
|
2018-01-25 16:25:03 -05:00
|
|
|
# normally when alice searches the directory she should just find
|
|
|
|
# bob because bobby doesn't share a room with her.
|
2021-04-06 07:21:02 -04:00
|
|
|
r = self.get_success(self.store.search_user_dir(ALICE, "bob", 10))
|
2018-01-25 16:25:03 -05:00
|
|
|
self.assertFalse(r["limited"])
|
|
|
|
self.assertEqual(1, len(r["results"]))
|
2018-08-10 09:54:09 -04:00
|
|
|
self.assertDictEqual(
|
|
|
|
r["results"][0], {"user_id": BOB, "display_name": "bob", "avatar_url": None}
|
|
|
|
)
|
2018-01-25 16:25:03 -05:00
|
|
|
|
2021-04-06 07:21:02 -04:00
|
|
|
@override_config({"user_directory": {"search_all_users": True}})
|
2021-09-30 06:04:40 -04:00
|
|
|
def test_search_user_dir_all_users(self) -> None:
|
2021-04-06 07:21:02 -04:00
|
|
|
r = self.get_success(self.store.search_user_dir(ALICE, "bob", 10))
|
|
|
|
self.assertFalse(r["limited"])
|
|
|
|
self.assertEqual(2, len(r["results"]))
|
|
|
|
self.assertDictEqual(
|
|
|
|
r["results"][0],
|
|
|
|
{"user_id": BOB, "display_name": "bob", "avatar_url": None},
|
|
|
|
)
|
|
|
|
self.assertDictEqual(
|
|
|
|
r["results"][1],
|
|
|
|
{"user_id": BOBBY, "display_name": "bobby", "avatar_url": None},
|
|
|
|
)
|
2020-12-17 08:42:30 -05:00
|
|
|
|
2021-04-06 07:21:02 -04:00
|
|
|
@override_config({"user_directory": {"search_all_users": True}})
|
2021-09-30 06:04:40 -04:00
|
|
|
def test_search_user_dir_stop_words(self) -> None:
|
2020-12-17 08:42:30 -05:00
|
|
|
"""Tests that a user can look up another user by searching for the start if its
|
|
|
|
display name even if that name happens to be a common English word that would
|
|
|
|
usually be ignored in full text searches.
|
|
|
|
"""
|
2021-04-06 07:21:02 -04:00
|
|
|
r = self.get_success(self.store.search_user_dir(ALICE, "be", 10))
|
|
|
|
self.assertFalse(r["limited"])
|
|
|
|
self.assertEqual(1, len(r["results"]))
|
|
|
|
self.assertDictEqual(
|
|
|
|
r["results"][0],
|
|
|
|
{"user_id": BELA, "display_name": "Bela", "avatar_url": None},
|
|
|
|
)
|