2021-01-07 08:03:38 -05:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
2024-01-23 06:26:48 -05:00
|
|
|
# Copyright 2021 The Matrix.org Foundation C.I.C.
|
2023-11-21 15:29:58 -05:00
|
|
|
# Copyright (C) 2023 New Vector, Ltd
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# See the GNU Affero General Public License for more details:
|
|
|
|
# <https://www.gnu.org/licenses/agpl-3.0.html>.
|
|
|
|
#
|
|
|
|
# Originally licensed under the Apache License, Version 2.0:
|
|
|
|
# <http://www.apache.org/licenses/LICENSE-2.0>.
|
|
|
|
#
|
|
|
|
# [This file includes modifications made by New Vector Limited]
|
2021-01-07 08:03:38 -05:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2021-12-29 10:12:30 -05:00
|
|
|
from typing import Iterable, Optional, Set
|
2021-01-07 08:03:38 -05:00
|
|
|
|
2022-12-09 12:36:32 -05:00
|
|
|
from twisted.test.proto_helpers import MemoryReactor
|
|
|
|
|
2021-01-07 08:03:38 -05:00
|
|
|
from synapse.api.constants import AccountDataTypes
|
2022-12-09 12:36:32 -05:00
|
|
|
from synapse.server import HomeServer
|
|
|
|
from synapse.util import Clock
|
2021-01-07 08:03:38 -05:00
|
|
|
|
|
|
|
from tests import unittest
|
|
|
|
|
|
|
|
|
|
|
|
class IgnoredUsersTestCase(unittest.HomeserverTestCase):
|
2022-12-09 12:36:32 -05:00
|
|
|
def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer) -> None:
|
2022-02-23 06:04:02 -05:00
|
|
|
self.store = self.hs.get_datastores().main
|
2021-01-07 08:03:38 -05:00
|
|
|
self.user = "@user:test"
|
|
|
|
|
|
|
|
def _update_ignore_list(
|
2021-12-29 10:12:30 -05:00
|
|
|
self, *ignored_user_ids: Iterable[str], ignorer_user_id: Optional[str] = None
|
2021-01-07 08:03:38 -05:00
|
|
|
) -> None:
|
|
|
|
"""Update the account data to block the given users."""
|
|
|
|
if ignorer_user_id is None:
|
|
|
|
ignorer_user_id = self.user
|
|
|
|
|
|
|
|
self.get_success(
|
|
|
|
self.store.add_account_data_for_user(
|
|
|
|
ignorer_user_id,
|
|
|
|
AccountDataTypes.IGNORED_USER_LIST,
|
|
|
|
{"ignored_users": {u: {} for u in ignored_user_ids}},
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
def assert_ignorers(
|
|
|
|
self, ignored_user_id: str, expected_ignorer_user_ids: Set[str]
|
|
|
|
) -> None:
|
|
|
|
self.assertEqual(
|
|
|
|
self.get_success(self.store.ignored_by(ignored_user_id)),
|
|
|
|
expected_ignorer_user_ids,
|
|
|
|
)
|
|
|
|
|
2022-03-15 14:06:05 -04:00
|
|
|
def assert_ignored(
|
|
|
|
self, ignorer_user_id: str, expected_ignored_user_ids: Set[str]
|
|
|
|
) -> None:
|
|
|
|
self.assertEqual(
|
|
|
|
self.get_success(self.store.ignored_users(ignorer_user_id)),
|
|
|
|
expected_ignored_user_ids,
|
|
|
|
)
|
|
|
|
|
2022-12-09 12:36:32 -05:00
|
|
|
def test_ignoring_users(self) -> None:
|
2021-01-07 08:03:38 -05:00
|
|
|
"""Basic adding/removing of users from the ignore list."""
|
|
|
|
self._update_ignore_list("@other:test", "@another:remote")
|
2022-03-15 14:06:05 -04:00
|
|
|
self.assert_ignored(self.user, {"@other:test", "@another:remote"})
|
2021-01-07 08:03:38 -05:00
|
|
|
|
|
|
|
# Check a user which no one ignores.
|
|
|
|
self.assert_ignorers("@user:test", set())
|
|
|
|
|
|
|
|
# Check a local user which is ignored.
|
|
|
|
self.assert_ignorers("@other:test", {self.user})
|
|
|
|
|
|
|
|
# Check a remote user which is ignored.
|
|
|
|
self.assert_ignorers("@another:remote", {self.user})
|
|
|
|
|
|
|
|
# Add one user, remove one user, and leave one user.
|
|
|
|
self._update_ignore_list("@foo:test", "@another:remote")
|
2022-03-15 14:06:05 -04:00
|
|
|
self.assert_ignored(self.user, {"@foo:test", "@another:remote"})
|
2021-01-07 08:03:38 -05:00
|
|
|
|
|
|
|
# Check the removed user.
|
|
|
|
self.assert_ignorers("@other:test", set())
|
|
|
|
|
|
|
|
# Check the added user.
|
|
|
|
self.assert_ignorers("@foo:test", {self.user})
|
|
|
|
|
|
|
|
# Check the removed user.
|
|
|
|
self.assert_ignorers("@another:remote", {self.user})
|
|
|
|
|
2022-12-09 12:36:32 -05:00
|
|
|
def test_caching(self) -> None:
|
2021-01-07 08:03:38 -05:00
|
|
|
"""Ensure that caching works properly between different users."""
|
|
|
|
# The first user ignores a user.
|
|
|
|
self._update_ignore_list("@other:test")
|
2022-03-15 14:06:05 -04:00
|
|
|
self.assert_ignored(self.user, {"@other:test"})
|
2021-01-07 08:03:38 -05:00
|
|
|
self.assert_ignorers("@other:test", {self.user})
|
|
|
|
|
|
|
|
# The second user ignores them.
|
|
|
|
self._update_ignore_list("@other:test", ignorer_user_id="@second:test")
|
2022-03-15 14:06:05 -04:00
|
|
|
self.assert_ignored("@second:test", {"@other:test"})
|
2021-01-07 08:03:38 -05:00
|
|
|
self.assert_ignorers("@other:test", {self.user, "@second:test"})
|
|
|
|
|
|
|
|
# The first user un-ignores them.
|
|
|
|
self._update_ignore_list()
|
2022-03-15 14:06:05 -04:00
|
|
|
self.assert_ignored(self.user, set())
|
2021-01-07 08:03:38 -05:00
|
|
|
self.assert_ignorers("@other:test", {"@second:test"})
|
|
|
|
|
2022-12-09 12:36:32 -05:00
|
|
|
def test_invalid_data(self) -> None:
|
2021-01-07 08:03:38 -05:00
|
|
|
"""Invalid data ends up clearing out the ignored users list."""
|
|
|
|
# Add some data and ensure it is there.
|
|
|
|
self._update_ignore_list("@other:test")
|
2022-03-15 14:06:05 -04:00
|
|
|
self.assert_ignored(self.user, {"@other:test"})
|
2021-01-07 08:03:38 -05:00
|
|
|
self.assert_ignorers("@other:test", {self.user})
|
|
|
|
|
|
|
|
# No ignored_users key.
|
|
|
|
self.get_success(
|
|
|
|
self.store.add_account_data_for_user(
|
|
|
|
self.user,
|
|
|
|
AccountDataTypes.IGNORED_USER_LIST,
|
|
|
|
{},
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
# No one ignores the user now.
|
2022-03-15 14:06:05 -04:00
|
|
|
self.assert_ignored(self.user, set())
|
2021-01-07 08:03:38 -05:00
|
|
|
self.assert_ignorers("@other:test", set())
|
|
|
|
|
|
|
|
# Add some data and ensure it is there.
|
|
|
|
self._update_ignore_list("@other:test")
|
2022-03-15 14:06:05 -04:00
|
|
|
self.assert_ignored(self.user, {"@other:test"})
|
2021-01-07 08:03:38 -05:00
|
|
|
self.assert_ignorers("@other:test", {self.user})
|
|
|
|
|
|
|
|
# Invalid data.
|
|
|
|
self.get_success(
|
|
|
|
self.store.add_account_data_for_user(
|
|
|
|
self.user,
|
|
|
|
AccountDataTypes.IGNORED_USER_LIST,
|
|
|
|
{"ignored_users": "unexpected"},
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
# No one ignores the user now.
|
2022-03-15 14:06:05 -04:00
|
|
|
self.assert_ignored(self.user, set())
|
2021-01-07 08:03:38 -05:00
|
|
|
self.assert_ignorers("@other:test", set())
|
2023-02-28 12:11:26 -05:00
|
|
|
|
|
|
|
def test_ignoring_users_with_latest_stream_ids(self) -> None:
|
|
|
|
"""Test that ignoring users updates the latest stream ID for the ignored
|
|
|
|
user list account data."""
|
|
|
|
|
|
|
|
def get_latest_ignore_streampos(user_id: str) -> Optional[int]:
|
|
|
|
return self.get_success(
|
|
|
|
self.store.get_latest_stream_id_for_global_account_data_by_type_for_user(
|
|
|
|
user_id, AccountDataTypes.IGNORED_USER_LIST
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertIsNone(get_latest_ignore_streampos("@user:test"))
|
|
|
|
|
|
|
|
self._update_ignore_list("@other:test", "@another:remote")
|
|
|
|
|
|
|
|
self.assertEqual(get_latest_ignore_streampos("@user:test"), 2)
|
|
|
|
|
|
|
|
# Add one user, remove one user, and leave one user.
|
|
|
|
self._update_ignore_list("@foo:test", "@another:remote")
|
|
|
|
|
|
|
|
self.assertEqual(get_latest_ignore_streampos("@user:test"), 3)
|