2021-08-17 05:52:38 -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 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]
|
2021-08-17 05:52:38 -04:00
|
|
|
#
|
|
|
|
#
|
2023-02-14 14:03:35 -05:00
|
|
|
from typing import Optional
|
|
|
|
|
2022-01-31 14:20:05 -05:00
|
|
|
from twisted.test.proto_helpers import MemoryReactor
|
|
|
|
|
2021-08-17 05:52:38 -04:00
|
|
|
import synapse.rest.admin
|
|
|
|
from synapse.api.errors import Codes, SynapseError
|
2021-08-17 07:57:58 -04:00
|
|
|
from synapse.rest.client import login
|
2022-01-31 14:20:05 -05:00
|
|
|
from synapse.server import HomeServer
|
|
|
|
from synapse.util import Clock
|
2021-08-17 05:52:38 -04:00
|
|
|
|
|
|
|
from tests import unittest
|
|
|
|
|
|
|
|
|
|
|
|
class UsernameAvailableTestCase(unittest.HomeserverTestCase):
|
|
|
|
servlets = [
|
|
|
|
synapse.rest.admin.register_servlets,
|
|
|
|
login.register_servlets,
|
|
|
|
]
|
|
|
|
url = "/_synapse/admin/v1/username_available"
|
|
|
|
|
2022-01-31 14:20:05 -05:00
|
|
|
def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer) -> None:
|
2021-08-17 05:52:38 -04:00
|
|
|
self.register_user("admin", "pass", admin=True)
|
|
|
|
self.admin_user_tok = self.login("admin", "pass")
|
|
|
|
|
2023-02-14 14:03:35 -05:00
|
|
|
async def check_username(
|
|
|
|
localpart: str,
|
|
|
|
guest_access_token: Optional[str] = None,
|
|
|
|
assigned_user_id: Optional[str] = None,
|
|
|
|
inhibit_user_in_use_error: bool = False,
|
|
|
|
) -> None:
|
|
|
|
if localpart == "allowed":
|
|
|
|
return
|
2021-11-30 04:53:54 -05:00
|
|
|
raise SynapseError(
|
2022-08-10 14:01:12 -04:00
|
|
|
400,
|
2021-11-30 04:53:54 -05:00
|
|
|
"User ID already taken.",
|
|
|
|
errcode=Codes.USER_IN_USE,
|
|
|
|
)
|
2021-08-17 05:52:38 -04:00
|
|
|
|
|
|
|
handler = self.hs.get_registration_handler()
|
2023-08-29 10:38:56 -04:00
|
|
|
handler.check_username = check_username # type: ignore[method-assign]
|
2021-08-17 05:52:38 -04:00
|
|
|
|
2022-01-31 14:20:05 -05:00
|
|
|
def test_username_available(self) -> None:
|
2021-08-17 05:52:38 -04:00
|
|
|
"""
|
2022-08-08 16:21:27 -04:00
|
|
|
The endpoint should return a 200 response if the username does not exist
|
2021-08-17 05:52:38 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
url = "%s?username=%s" % (self.url, "allowed")
|
2022-01-31 14:20:05 -05:00
|
|
|
channel = self.make_request("GET", url, access_token=self.admin_user_tok)
|
2021-08-17 05:52:38 -04:00
|
|
|
|
2022-08-08 16:21:27 -04:00
|
|
|
self.assertEqual(200, channel.code, msg=channel.json_body)
|
2021-08-17 05:52:38 -04:00
|
|
|
self.assertTrue(channel.json_body["available"])
|
|
|
|
|
2022-01-31 14:20:05 -05:00
|
|
|
def test_username_unavailable(self) -> None:
|
2021-08-17 05:52:38 -04:00
|
|
|
"""
|
2022-08-08 16:21:27 -04:00
|
|
|
The endpoint should return a 200 response if the username does not exist
|
2021-08-17 05:52:38 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
url = "%s?username=%s" % (self.url, "disallowed")
|
2022-01-31 14:20:05 -05:00
|
|
|
channel = self.make_request("GET", url, access_token=self.admin_user_tok)
|
2021-08-17 05:52:38 -04:00
|
|
|
|
2022-08-10 14:01:12 -04:00
|
|
|
self.assertEqual(400, channel.code, msg=channel.json_body)
|
2021-08-17 05:52:38 -04:00
|
|
|
self.assertEqual(channel.json_body["errcode"], "M_USER_IN_USE")
|
|
|
|
self.assertEqual(channel.json_body["error"], "User ID already taken.")
|