2021-04-06 07:21:02 -04:00
|
|
|
# Copyright 2014-2021 The Matrix.org Foundation C.I.C.
|
2014-09-10 11:42:31 -04:00
|
|
|
#
|
|
|
|
# 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.
|
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
|
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:
|
2021-04-06 07:21:02 -04:00
|
|
|
self.get_success(self.store.create_profile(self.u_frank.localpart))
|
2014-09-10 11:42:31 -04:00
|
|
|
|
2021-04-06 07:21:02 -04:00
|
|
|
self.get_success(
|
2020-08-26 07:19:32 -04:00
|
|
|
self.store.set_profile_displayname(self.u_frank.localpart, "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",
|
|
|
|
(
|
2021-04-06 07:21:02 -04:00
|
|
|
self.get_success(
|
2020-08-26 07:19:32 -04:00
|
|
|
self.store.get_profile_displayname(self.u_frank.localpart)
|
|
|
|
)
|
|
|
|
),
|
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
|
2021-04-06 07:21:02 -04:00
|
|
|
self.get_success(
|
2021-01-12 16:30:15 -05:00
|
|
|
self.store.set_profile_displayname(self.u_frank.localpart, None)
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertIsNone(
|
2021-07-13 06:43:15 -04:00
|
|
|
self.get_success(self.store.get_profile_displayname(self.u_frank.localpart))
|
2021-01-12 16:30:15 -05:00
|
|
|
)
|
|
|
|
|
2021-11-15 07:59:33 -05:00
|
|
|
def test_avatar_url(self) -> None:
|
2021-04-06 07:21:02 -04:00
|
|
|
self.get_success(self.store.create_profile(self.u_frank.localpart))
|
2014-09-10 11:49:34 -04:00
|
|
|
|
2021-04-06 07:21:02 -04:00
|
|
|
self.get_success(
|
2020-08-26 07:19:32 -04:00
|
|
|
self.store.set_profile_avatar_url(
|
|
|
|
self.u_frank.localpart, "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",
|
2020-08-26 07:19:32 -04:00
|
|
|
(
|
2021-04-06 07:21:02 -04:00
|
|
|
self.get_success(
|
2020-08-26 07:19:32 -04:00
|
|
|
self.store.get_profile_avatar_url(self.u_frank.localpart)
|
|
|
|
)
|
|
|
|
),
|
2014-09-17 11:58:59 -04:00
|
|
|
)
|
2021-01-12 16:30:15 -05:00
|
|
|
|
|
|
|
# test set to None
|
2021-04-06 07:21:02 -04:00
|
|
|
self.get_success(
|
2021-01-12 16:30:15 -05:00
|
|
|
self.store.set_profile_avatar_url(self.u_frank.localpart, None)
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertIsNone(
|
2021-07-13 06:43:15 -04:00
|
|
|
self.get_success(self.store.get_profile_avatar_url(self.u_frank.localpart))
|
2021-01-12 16:30:15 -05:00
|
|
|
)
|