mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Consolidate purge table lists to prevent desyncronisation (#8713)
I idly noticed that these lists were out of sync with each other, causing us to miss a table in a test case (`local_invites`). Let's consolidate this list instead to prevent this from happening in the future.
This commit is contained in:
parent
4fda58ddd2
commit
6abb1ad0be
1
changelog.d/8713.misc
Normal file
1
changelog.d/8713.misc
Normal file
@ -0,0 +1 @@
|
|||||||
|
Consolidate duplicated lists of purged tables that are checked in tests.
|
@ -531,40 +531,7 @@ class DeleteRoomTestCase(unittest.HomeserverTestCase):
|
|||||||
def _is_purged(self, room_id):
|
def _is_purged(self, room_id):
|
||||||
"""Test that the following tables have been purged of all rows related to the room.
|
"""Test that the following tables have been purged of all rows related to the room.
|
||||||
"""
|
"""
|
||||||
for table in (
|
for table in PURGE_TABLES:
|
||||||
"current_state_events",
|
|
||||||
"event_backward_extremities",
|
|
||||||
"event_forward_extremities",
|
|
||||||
"event_json",
|
|
||||||
"event_push_actions",
|
|
||||||
"event_search",
|
|
||||||
"events",
|
|
||||||
"group_rooms",
|
|
||||||
"public_room_list_stream",
|
|
||||||
"receipts_graph",
|
|
||||||
"receipts_linearized",
|
|
||||||
"room_aliases",
|
|
||||||
"room_depth",
|
|
||||||
"room_memberships",
|
|
||||||
"room_stats_state",
|
|
||||||
"room_stats_current",
|
|
||||||
"room_stats_historical",
|
|
||||||
"room_stats_earliest_token",
|
|
||||||
"rooms",
|
|
||||||
"stream_ordering_to_exterm",
|
|
||||||
"users_in_public_rooms",
|
|
||||||
"users_who_share_private_rooms",
|
|
||||||
"appservice_room_list",
|
|
||||||
"e2e_room_keys",
|
|
||||||
"event_push_summary",
|
|
||||||
"pusher_throttle",
|
|
||||||
"group_summary_rooms",
|
|
||||||
"local_invites",
|
|
||||||
"room_account_data",
|
|
||||||
"room_tags",
|
|
||||||
# "state_groups", # Current impl leaves orphaned state groups around.
|
|
||||||
"state_groups_state",
|
|
||||||
):
|
|
||||||
count = self.get_success(
|
count = self.get_success(
|
||||||
self.store.db_pool.simple_select_one_onecol(
|
self.store.db_pool.simple_select_one_onecol(
|
||||||
table=table,
|
table=table,
|
||||||
@ -633,39 +600,7 @@ class PurgeRoomTestCase(unittest.HomeserverTestCase):
|
|||||||
self.assertEqual(200, int(channel.result["code"]), msg=channel.result["body"])
|
self.assertEqual(200, int(channel.result["code"]), msg=channel.result["body"])
|
||||||
|
|
||||||
# Test that the following tables have been purged of all rows related to the room.
|
# Test that the following tables have been purged of all rows related to the room.
|
||||||
for table in (
|
for table in PURGE_TABLES:
|
||||||
"current_state_events",
|
|
||||||
"event_backward_extremities",
|
|
||||||
"event_forward_extremities",
|
|
||||||
"event_json",
|
|
||||||
"event_push_actions",
|
|
||||||
"event_search",
|
|
||||||
"events",
|
|
||||||
"group_rooms",
|
|
||||||
"public_room_list_stream",
|
|
||||||
"receipts_graph",
|
|
||||||
"receipts_linearized",
|
|
||||||
"room_aliases",
|
|
||||||
"room_depth",
|
|
||||||
"room_memberships",
|
|
||||||
"room_stats_state",
|
|
||||||
"room_stats_current",
|
|
||||||
"room_stats_historical",
|
|
||||||
"room_stats_earliest_token",
|
|
||||||
"rooms",
|
|
||||||
"stream_ordering_to_exterm",
|
|
||||||
"users_in_public_rooms",
|
|
||||||
"users_who_share_private_rooms",
|
|
||||||
"appservice_room_list",
|
|
||||||
"e2e_room_keys",
|
|
||||||
"event_push_summary",
|
|
||||||
"pusher_throttle",
|
|
||||||
"group_summary_rooms",
|
|
||||||
"room_account_data",
|
|
||||||
"room_tags",
|
|
||||||
# "state_groups", # Current impl leaves orphaned state groups around.
|
|
||||||
"state_groups_state",
|
|
||||||
):
|
|
||||||
count = self.get_success(
|
count = self.get_success(
|
||||||
self.store.db_pool.simple_select_one_onecol(
|
self.store.db_pool.simple_select_one_onecol(
|
||||||
table=table,
|
table=table,
|
||||||
@ -1500,3 +1435,39 @@ class JoinAliasRoomTestCase(unittest.HomeserverTestCase):
|
|||||||
self.render(request)
|
self.render(request)
|
||||||
self.assertEquals(200, int(channel.result["code"]), msg=channel.result["body"])
|
self.assertEquals(200, int(channel.result["code"]), msg=channel.result["body"])
|
||||||
self.assertEqual(private_room_id, channel.json_body["joined_rooms"][0])
|
self.assertEqual(private_room_id, channel.json_body["joined_rooms"][0])
|
||||||
|
|
||||||
|
|
||||||
|
PURGE_TABLES = [
|
||||||
|
"current_state_events",
|
||||||
|
"event_backward_extremities",
|
||||||
|
"event_forward_extremities",
|
||||||
|
"event_json",
|
||||||
|
"event_push_actions",
|
||||||
|
"event_search",
|
||||||
|
"events",
|
||||||
|
"group_rooms",
|
||||||
|
"public_room_list_stream",
|
||||||
|
"receipts_graph",
|
||||||
|
"receipts_linearized",
|
||||||
|
"room_aliases",
|
||||||
|
"room_depth",
|
||||||
|
"room_memberships",
|
||||||
|
"room_stats_state",
|
||||||
|
"room_stats_current",
|
||||||
|
"room_stats_historical",
|
||||||
|
"room_stats_earliest_token",
|
||||||
|
"rooms",
|
||||||
|
"stream_ordering_to_exterm",
|
||||||
|
"users_in_public_rooms",
|
||||||
|
"users_who_share_private_rooms",
|
||||||
|
"appservice_room_list",
|
||||||
|
"e2e_room_keys",
|
||||||
|
"event_push_summary",
|
||||||
|
"pusher_throttle",
|
||||||
|
"group_summary_rooms",
|
||||||
|
"local_invites",
|
||||||
|
"room_account_data",
|
||||||
|
"room_tags",
|
||||||
|
# "state_groups", # Current impl leaves orphaned state groups around.
|
||||||
|
"state_groups_state",
|
||||||
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user