This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Populate
rooms.creator
field for easy lookup (#10697)
Part of #10566 - Fill in creator whenever we insert into the rooms table - Add background update to backfill any missing creator values
- Loading branch information
1 parent
e059094
commit dc75fb7
Showing
6 changed files
with
213 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Ensure `rooms.creator` field is always populated for easy lookup in [MSC2716](https://github.com/matrix-org/matrix-doc/pull/2716) usage later. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
synapse/storage/schema/main/delta/63/02populate-rooms-creator.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Copyright 2021 The Matrix.org Foundation C.I.C | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
INSERT INTO background_updates (ordering, update_name, progress_json) | ||
VALUES (6302, 'populate_rooms_creator_column', '{}'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
# Copyright 2021 The Matrix.org Foundation C.I.C. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the 'License'); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an 'AS IS' BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from synapse.rest import admin | ||
from synapse.rest.client import login, room | ||
from synapse.storage.databases.main.room import _BackgroundUpdates | ||
|
||
from tests.unittest import HomeserverTestCase | ||
|
||
|
||
class RoomBackgroundUpdateStoreTestCase(HomeserverTestCase): | ||
|
||
servlets = [ | ||
admin.register_servlets, | ||
room.register_servlets, | ||
login.register_servlets, | ||
] | ||
|
||
def prepare(self, reactor, clock, hs): | ||
self.store = hs.get_datastore() | ||
self.user_id = self.register_user("foo", "pass") | ||
self.token = self.login("foo", "pass") | ||
|
||
def _generate_room(self) -> str: | ||
room_id = self.helper.create_room_as(self.user_id, tok=self.token) | ||
|
||
return room_id | ||
|
||
def test_background_populate_rooms_creator_column(self): | ||
"""Test that the background update to populate the rooms creator column | ||
works properly. | ||
""" | ||
|
||
# Insert a room without the creator | ||
room_id = self._generate_room() | ||
self.get_success( | ||
self.store.db_pool.simple_update( | ||
table="rooms", | ||
keyvalues={"room_id": room_id}, | ||
updatevalues={"creator": None}, | ||
desc="test", | ||
) | ||
) | ||
|
||
# Make sure the test is starting out with a room without a creator | ||
room_creator_before = self.get_success( | ||
self.store.db_pool.simple_select_one_onecol( | ||
table="rooms", | ||
keyvalues={"room_id": room_id}, | ||
retcol="creator", | ||
allow_none=True, | ||
) | ||
) | ||
self.assertEqual(room_creator_before, None) | ||
|
||
# Insert and run the background update. | ||
self.get_success( | ||
self.store.db_pool.simple_insert( | ||
"background_updates", | ||
{ | ||
"update_name": _BackgroundUpdates.POPULATE_ROOMS_CREATOR_COLUMN, | ||
"progress_json": "{}", | ||
}, | ||
) | ||
) | ||
|
||
# ... and tell the DataStore that it hasn't finished all updates yet | ||
self.store.db_pool.updates._all_done = False | ||
|
||
# Now let's actually drive the updates to completion | ||
while not self.get_success( | ||
self.store.db_pool.updates.has_completed_background_updates() | ||
): | ||
self.get_success( | ||
self.store.db_pool.updates.do_next_background_update(100), by=0.1 | ||
) | ||
|
||
# Make sure the background update filled in the room creator | ||
room_creator_after = self.get_success( | ||
self.store.db_pool.simple_select_one_onecol( | ||
table="rooms", | ||
keyvalues={"room_id": room_id}, | ||
retcol="creator", | ||
allow_none=True, | ||
) | ||
) | ||
self.assertEqual(room_creator_after, self.user_id) |