2020-04-28 13:19:36 -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 2020 Awesome Technologies Innovationslabor GmbH
|
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]
|
2020-04-28 13:19:36 -04:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
from synapse.types import UserID
|
|
|
|
|
|
|
|
from tests import unittest
|
|
|
|
|
|
|
|
|
2021-12-02 13:13:43 -05:00
|
|
|
class DataStoreTestCase(unittest.HomeserverTestCase):
|
|
|
|
def setUp(self) -> None:
|
2023-08-15 08:11:20 -04:00
|
|
|
super().setUp()
|
2020-04-28 13:19:36 -04:00
|
|
|
|
2022-02-23 06:04:02 -05:00
|
|
|
self.store = self.hs.get_datastores().main
|
2020-04-28 13:19:36 -04:00
|
|
|
|
|
|
|
self.user = UserID.from_string("@abcde:test")
|
|
|
|
self.displayname = "Frank"
|
|
|
|
|
2021-12-02 13:13:43 -05:00
|
|
|
def test_get_users_paginate(self) -> None:
|
|
|
|
self.get_success(self.store.register_user(self.user.to_string(), "pass"))
|
2023-04-26 19:03:26 -04:00
|
|
|
self.get_success(self.store.create_profile(self.user))
|
2021-12-02 13:13:43 -05:00
|
|
|
self.get_success(
|
2023-04-26 19:03:26 -04:00
|
|
|
self.store.set_profile_displayname(self.user, self.displayname)
|
2020-08-27 07:08:38 -04:00
|
|
|
)
|
2020-04-28 13:19:36 -04:00
|
|
|
|
2021-12-02 13:13:43 -05:00
|
|
|
users, total = self.get_success(
|
2020-08-27 17:24:46 -04:00
|
|
|
self.store.get_users_paginate(0, 10, name="bc", guests=False)
|
2020-04-28 13:19:36 -04:00
|
|
|
)
|
|
|
|
|
2022-02-28 07:12:29 -05:00
|
|
|
self.assertEqual(1, total)
|
2023-10-31 13:13:28 -04:00
|
|
|
self.assertEqual(self.displayname, users.pop().displayname)
|
2020-12-17 05:43:37 -05:00
|
|
|
|
2021-12-02 13:13:43 -05:00
|
|
|
users, total = self.get_success(
|
2020-12-17 05:43:37 -05:00
|
|
|
self.store.get_users_paginate(0, 10, name="BC", guests=False)
|
|
|
|
)
|
|
|
|
|
2022-02-28 07:12:29 -05:00
|
|
|
self.assertEqual(1, total)
|
2023-10-31 13:13:28 -04:00
|
|
|
self.assertEqual(self.displayname, users.pop().displayname)
|