mirror of
https://github.com/element-hq/synapse.git
synced 2026-04-03 14:26:23 +00:00
--- Summary: Synapse Twisted → asyncio Migration What's been built (Phases 0-7) — 10 new files, ~3200 lines, 96 tests Every Twisted component has an asyncio-native replacement ready: ┌──────────────────┬───────────────────────────────────────────────┬─────────────────────────────────────────────────────────┬───────────────────────────────────────────────┐ │ Component │ Twisted Original │ asyncio Replacement │ File │ ├──────────────────┼───────────────────────────────────────────────┼─────────────────────────────────────────────────────────┼───────────────────────────────────────────────┤ │ LoggingContext │ threading.local + Deferred callbacks │ ContextVar + asyncio Task │ synapse/logging/context.py (native functions) │ ├──────────────────┼───────────────────────────────────────────────┼─────────────────────────────────────────────────────────┼───────────────────────────────────────────────┤ │ Async primitives │ ObservableDeferred, Linearizer, ReadWriteLock │ ObservableFuture, NativeLinearizer, NativeReadWriteLock │ synapse/util/async_helpers.py │ ├──────────────────┼───────────────────────────────────────────────┼─────────────────────────────────────────────────────────┼───────────────────────────────────────────────┤ │ Cache │ DeferredCache │ FutureCache │ synapse/util/caches/future_cache.py │ ├──────────────────┼───────────────────────────────────────────────┼─────────────────────────────────────────────────────────┼───────────────────────────────────────────────┤ │ Clock │ Clock (Twisted reactor) │ NativeClock (asyncio) │ synapse/util/clock.py │ ├──────────────────┼───────────────────────────────────────────────┼─────────────────────────────────────────────────────────┼───────────────────────────────────────────────┤ │ Database │ adbapi.ConnectionPool │ NativeConnectionPool (ThreadPoolExecutor) │ synapse/storage/native_database.py │ ├──────────────────┼───────────────────────────────────────────────┼─────────────────────────────────────────────────────────┼───────────────────────────────────────────────┤ │ HTTP Client │ treq + Twisted Agent │ aiohttp.ClientSession │ synapse/http/native_client.py │ ├──────────────────┼───────────────────────────────────────────────┼─────────────────────────────────────────────────────────┼───────────────────────────────────────────────┤ │ HTTP Server │ JsonResource + Twisted Site │ NativeJsonResource + aiohttp.web │ synapse/http/native_server.py │ ├──────────────────┼───────────────────────────────────────────────┼─────────────────────────────────────────────────────────┼───────────────────────────────────────────────┤ │ Replication │ LineOnlyReceiver (Twisted Protocol) │ asyncio.StreamReader/Writer │ synapse/replication/tcp/native_protocol.py │ ├──────────────────┼───────────────────────────────────────────────┼─────────────────────────────────────────────────────────┼───────────────────────────────────────────────┤ │ Event loop │ ISynapseReactor │ ISynapseEventLoop │ synapse/types/__init__.py │ ├──────────────────┼───────────────────────────────────────────────┼─────────────────────────────────────────────────────────┼───────────────────────────────────────────────┤ │ Test helper │ — │ FakeAsyncioLoop │ tests/async_helpers.py │ └──────────────────┴───────────────────────────────────────────────┴─────────────────────────────────────────────────────────┴───────────────────────────────────────────────┘ What's been wired in safely — 224 files changed, 0 regressions - MemoryReactor type hint → Any across 198 test files (cosmetic) - synapse/http/server.py — catches both Twisted and asyncio CancelledError - All 4530 tests still pass (minus the 2 pre-existing failures) What remains for the flag day The actual switchover requires rewriting 5 core files simultaneously, then running a migration script across ~500 files: 1. tests/unittest.py + tests/server.py — switch from twisted.trial.TestCase to unittest.TestCase, MemoryReactorClock to FakeAsyncioLoop, get_success() to asyncio run_until_complete() 2. synapse/logging/context.py — switch current_context() to ContextVar, make_deferred_yieldable() to async, run_in_background() to create_task() 3. synapse/util/async_helpers.py — rename Native* classes to canonical names, remove Deferred-based originals 4. Migration script — update all CancelledError, defer.*, Deferred imports across ~500 files 5. pyproject.toml — remove Twisted dependency This is an atomic change because: ContextVar can't coexist with Twisted's reactor callbacks, make_deferred_yieldable's signature change breaks all callers, and CancelledError is a different class between Twisted and asyncio.
187 lines
6.6 KiB
Python
187 lines
6.6 KiB
Python
#
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
#
|
|
# Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
# 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]
|
|
#
|
|
#
|
|
|
|
from typing import Iterable
|
|
|
|
from typing import Any as MemoryReactor # was: MemoryReactor from Twisted
|
|
|
|
from synapse.api.constants import AccountDataTypes
|
|
from synapse.api.errors import Codes, SynapseError
|
|
from synapse.server import HomeServer
|
|
from synapse.util.clock import Clock
|
|
|
|
from tests import unittest
|
|
|
|
|
|
class IgnoredUsersTestCase(unittest.HomeserverTestCase):
|
|
def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer) -> None:
|
|
self.store = self.hs.get_datastores().main
|
|
self.user = "@user:test"
|
|
|
|
def _update_ignore_list(
|
|
self, *ignored_user_ids: Iterable[str], ignorer_user_id: str | None = None
|
|
) -> 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,
|
|
)
|
|
|
|
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,
|
|
)
|
|
|
|
def test_ignoring_users(self) -> None:
|
|
"""Basic adding/removing of users from the ignore list."""
|
|
self._update_ignore_list("@other:test", "@another:remote")
|
|
self.assert_ignored(self.user, {"@other:test", "@another:remote"})
|
|
|
|
# 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")
|
|
self.assert_ignored(self.user, {"@foo:test", "@another:remote"})
|
|
|
|
# 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})
|
|
|
|
def test_ignoring_self_fails(self) -> None:
|
|
"""Ensure users cannot add themselves to the ignored list."""
|
|
|
|
f = self.get_failure(
|
|
self.store.add_account_data_for_user(
|
|
self.user,
|
|
AccountDataTypes.IGNORED_USER_LIST,
|
|
{"ignored_users": {self.user: {}}},
|
|
),
|
|
SynapseError,
|
|
).value
|
|
self.assertEqual(f.code, 400)
|
|
self.assertEqual(f.errcode, Codes.INVALID_PARAM)
|
|
|
|
def test_caching(self) -> None:
|
|
"""Ensure that caching works properly between different users."""
|
|
# The first user ignores a user.
|
|
self._update_ignore_list("@other:test")
|
|
self.assert_ignored(self.user, {"@other:test"})
|
|
self.assert_ignorers("@other:test", {self.user})
|
|
|
|
# The second user ignores them.
|
|
self._update_ignore_list("@other:test", ignorer_user_id="@second:test")
|
|
self.assert_ignored("@second:test", {"@other:test"})
|
|
self.assert_ignorers("@other:test", {self.user, "@second:test"})
|
|
|
|
# The first user un-ignores them.
|
|
self._update_ignore_list()
|
|
self.assert_ignored(self.user, set())
|
|
self.assert_ignorers("@other:test", {"@second:test"})
|
|
|
|
def test_invalid_data(self) -> None:
|
|
"""Invalid data ends up clearing out the ignored users list."""
|
|
# Add some data and ensure it is there.
|
|
self._update_ignore_list("@other:test")
|
|
self.assert_ignored(self.user, {"@other:test"})
|
|
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.
|
|
self.assert_ignored(self.user, set())
|
|
self.assert_ignorers("@other:test", set())
|
|
|
|
# Add some data and ensure it is there.
|
|
self._update_ignore_list("@other:test")
|
|
self.assert_ignored(self.user, {"@other:test"})
|
|
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.
|
|
self.assert_ignored(self.user, set())
|
|
self.assert_ignorers("@other:test", set())
|
|
|
|
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) -> int | None:
|
|
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)
|