1
0
Fork 0
mirror of https://github.com/element-hq/synapse.git synced 2025-03-31 03:45:13 +00:00

Add placeholder tests

This commit is contained in:
Eric Eastwood 2024-08-26 19:43:52 -05:00
parent 7fe5d31e20
commit 7a0c281028

View file

@ -4172,3 +4172,27 @@ class SlidingSyncTablesBackgroundUpdatesTestCase(SlidingSyncTablesTestCaseBase):
sliding_sync_membership_snapshots_results.get((room_id, user2_id)),
user2_snapshot,
)
class SlidingSyncTablesCatchUpBackgroundUpdatesTestCase(SlidingSyncTablesTestCaseBase):
"""
Test the background updates for catch-up after Synapse downgrade populate the `sliding_sync_joined_rooms` and
`sliding_sync_membership_snapshots` tables.
FIXME: This can be removed once we bump `SCHEMA_COMPAT_VERSION` and run the
foreground update for
`sliding_sync_joined_rooms`/`sliding_sync_membership_snapshots` (tracked by
https://github.com/element-hq/synapse/issues/TODO)
"""
def test_joined_background_update_catch_up(self) -> None:
"""
TODO
"""
pass
def test_membership_snapshots_background_update_catch_up(self) -> None:
"""
TODO
"""
pass