From 7a0c2810286463e9e55cbe463c4bea39d55e3fd4 Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Mon, 26 Aug 2024 19:43:52 -0500 Subject: [PATCH] Add placeholder tests --- tests/storage/test_sliding_sync_tables.py | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/tests/storage/test_sliding_sync_tables.py b/tests/storage/test_sliding_sync_tables.py index fb2340b446..012176784c 100644 --- a/tests/storage/test_sliding_sync_tables.py +++ b/tests/storage/test_sliding_sync_tables.py @@ -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