2014-09-10 11:42:31 -04:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
2024-01-23 06:26:48 -05:00
|
|
|
# Copyright 2014-2021 The Matrix.org Foundation C.I.C.
|
2023-11-21 15:29:58 -05:00
|
|
|
# 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]
|
2014-09-10 11:42:31 -04:00
|
|
|
#
|
|
|
|
#
|
2023-06-02 20:24:13 -04:00
|
|
|
|
2021-11-15 07:59:33 -05:00
|
|
|
from twisted.test.proto_helpers import MemoryReactor
|
2014-09-10 11:42:31 -04:00
|
|
|
|
2021-11-15 07:59:33 -05:00
|
|
|
from synapse.server import HomeServer
|
2023-07-18 06:44:09 -04:00
|
|
|
from synapse.storage.database import LoggingTransaction
|
|
|
|
from synapse.storage.engines import PostgresEngine
|
2015-01-23 06:47:15 -05:00
|
|
|
from synapse.types import UserID
|
2021-11-15 07:59:33 -05:00
|
|
|
from synapse.util import Clock
|
2014-09-10 11:42:31 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from tests import unittest
|
2014-09-10 11:42:31 -04:00
|
|
|
|
2014-09-10 11:50:09 -04:00
|
|
|
|
2021-04-06 07:21:02 -04:00
|
|
|
class ProfileStoreTestCase(unittest.HomeserverTestCase):
|
2021-11-15 07:59:33 -05:00
|
|
|
def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer) -> None:
|
2022-02-23 06:04:02 -05:00
|
|
|
self.store = hs.get_datastores().main
|
2014-09-10 11:42:31 -04:00
|
|
|
|
2015-01-23 06:47:15 -05:00
|
|
|
self.u_frank = UserID.from_string("@frank:test")
|
2014-09-10 11:42:31 -04:00
|
|
|
|
2021-11-15 07:59:33 -05:00
|
|
|
def test_displayname(self) -> None:
|
2023-04-26 19:03:26 -04:00
|
|
|
self.get_success(self.store.create_profile(self.u_frank))
|
2014-09-10 11:42:31 -04:00
|
|
|
|
2023-04-26 19:03:26 -04:00
|
|
|
self.get_success(self.store.set_profile_displayname(self.u_frank, "Frank"))
|
2014-09-10 11:42:31 -04:00
|
|
|
|
2022-02-28 07:12:29 -05:00
|
|
|
self.assertEqual(
|
2020-08-26 07:19:32 -04:00
|
|
|
"Frank",
|
2023-06-02 20:24:13 -04:00
|
|
|
(self.get_success(self.store.get_profile_displayname(self.u_frank))),
|
2014-09-17 11:58:59 -04:00
|
|
|
)
|
2014-09-10 11:49:34 -04:00
|
|
|
|
2021-01-12 16:30:15 -05:00
|
|
|
# test set to None
|
2023-04-26 19:03:26 -04:00
|
|
|
self.get_success(self.store.set_profile_displayname(self.u_frank, None))
|
2021-01-12 16:30:15 -05:00
|
|
|
|
|
|
|
self.assertIsNone(
|
2023-06-02 20:24:13 -04:00
|
|
|
self.get_success(self.store.get_profile_displayname(self.u_frank))
|
2021-01-12 16:30:15 -05:00
|
|
|
)
|
|
|
|
|
2021-11-15 07:59:33 -05:00
|
|
|
def test_avatar_url(self) -> None:
|
2023-04-26 19:03:26 -04:00
|
|
|
self.get_success(self.store.create_profile(self.u_frank))
|
2014-09-10 11:49:34 -04:00
|
|
|
|
2021-04-06 07:21:02 -04:00
|
|
|
self.get_success(
|
2023-04-26 19:03:26 -04:00
|
|
|
self.store.set_profile_avatar_url(self.u_frank, "http://my.site/here")
|
2014-09-10 11:49:34 -04:00
|
|
|
)
|
|
|
|
|
2022-02-28 07:12:29 -05:00
|
|
|
self.assertEqual(
|
2014-09-17 11:58:59 -04:00
|
|
|
"http://my.site/here",
|
2023-06-02 20:24:13 -04:00
|
|
|
(self.get_success(self.store.get_profile_avatar_url(self.u_frank))),
|
2014-09-17 11:58:59 -04:00
|
|
|
)
|
2021-01-12 16:30:15 -05:00
|
|
|
|
|
|
|
# test set to None
|
2023-04-26 19:03:26 -04:00
|
|
|
self.get_success(self.store.set_profile_avatar_url(self.u_frank, None))
|
2021-01-12 16:30:15 -05:00
|
|
|
|
|
|
|
self.assertIsNone(
|
2023-06-02 20:24:13 -04:00
|
|
|
self.get_success(self.store.get_profile_avatar_url(self.u_frank))
|
2021-01-12 16:30:15 -05:00
|
|
|
)
|
2023-07-18 06:44:09 -04:00
|
|
|
|
|
|
|
def test_profiles_bg_migration(self) -> None:
|
|
|
|
"""
|
|
|
|
Test background job that copies entries from column user_id to full_user_id, adding
|
|
|
|
the hostname in the process.
|
|
|
|
"""
|
|
|
|
updater = self.hs.get_datastores().main.db_pool.updates
|
|
|
|
|
|
|
|
# drop the constraint so we can insert nulls in full_user_id to populate the test
|
|
|
|
if isinstance(self.store.database_engine, PostgresEngine):
|
|
|
|
|
|
|
|
def f(txn: LoggingTransaction) -> None:
|
|
|
|
txn.execute(
|
|
|
|
"ALTER TABLE profiles DROP CONSTRAINT full_user_id_not_null"
|
|
|
|
)
|
|
|
|
|
|
|
|
self.get_success(self.store.db_pool.runInteraction("", f))
|
|
|
|
|
2023-09-08 11:24:36 -04:00
|
|
|
for i in range(70):
|
2023-07-18 06:44:09 -04:00
|
|
|
self.get_success(
|
|
|
|
self.store.db_pool.simple_insert(
|
|
|
|
"profiles",
|
|
|
|
{"user_id": f"hello{i:02}"},
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
# re-add the constraint so that when it's validated it actually exists
|
|
|
|
if isinstance(self.store.database_engine, PostgresEngine):
|
|
|
|
|
|
|
|
def f(txn: LoggingTransaction) -> None:
|
|
|
|
txn.execute(
|
|
|
|
"ALTER TABLE profiles ADD CONSTRAINT full_user_id_not_null CHECK (full_user_id IS NOT NULL) NOT VALID"
|
|
|
|
)
|
|
|
|
|
|
|
|
self.get_success(self.store.db_pool.runInteraction("", f))
|
|
|
|
|
|
|
|
self.get_success(
|
|
|
|
self.store.db_pool.simple_insert(
|
|
|
|
"background_updates",
|
|
|
|
values={
|
|
|
|
"update_name": "populate_full_user_id_profiles",
|
|
|
|
"progress_json": "{}",
|
|
|
|
},
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
self.get_success(
|
|
|
|
updater.run_background_updates(False),
|
|
|
|
)
|
|
|
|
|
|
|
|
expected_values = []
|
2023-09-08 11:24:36 -04:00
|
|
|
for i in range(70):
|
2023-07-18 06:44:09 -04:00
|
|
|
expected_values.append((f"@hello{i:02}:{self.hs.hostname}",))
|
|
|
|
|
|
|
|
res = self.get_success(
|
|
|
|
self.store.db_pool.execute(
|
2023-10-26 15:12:28 -04:00
|
|
|
"", "SELECT full_user_id from profiles ORDER BY full_user_id"
|
2023-07-18 06:44:09 -04:00
|
|
|
)
|
|
|
|
)
|
|
|
|
self.assertEqual(len(res), len(expected_values))
|
|
|
|
self.assertEqual(res, expected_values)
|