2019-01-25 06:16:29 -05:00
|
|
|
# Copyright 2019 New Vector Ltd
|
|
|
|
#
|
|
|
|
# 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.
|
2019-05-01 10:32:38 -04:00
|
|
|
import synapse.rest.admin
|
2019-05-23 10:00:20 -04:00
|
|
|
from synapse.api.room_versions import KNOWN_ROOM_VERSIONS
|
2019-05-01 10:32:38 -04:00
|
|
|
from synapse.rest.client.v1 import login
|
2019-01-29 06:37:56 -05:00
|
|
|
from synapse.rest.client.v2_alpha import capabilities
|
2019-01-29 07:44:10 -05:00
|
|
|
|
2019-01-25 06:16:29 -05:00
|
|
|
from tests import unittest
|
2021-03-16 11:44:25 -04:00
|
|
|
from tests.unittest import override_config
|
2019-01-25 06:16:29 -05:00
|
|
|
|
|
|
|
|
|
|
|
class CapabilitiesTestCase(unittest.HomeserverTestCase):
|
2019-01-29 06:37:56 -05:00
|
|
|
|
|
|
|
servlets = [
|
2019-05-02 06:59:16 -04:00
|
|
|
synapse.rest.admin.register_servlets_for_client_rest_resource,
|
2019-01-29 06:37:56 -05:00
|
|
|
capabilities.register_servlets,
|
|
|
|
login.register_servlets,
|
|
|
|
]
|
2019-01-25 06:16:29 -05:00
|
|
|
|
|
|
|
def make_homeserver(self, reactor, clock):
|
|
|
|
self.url = b"/_matrix/client/r0/capabilities"
|
|
|
|
hs = self.setup_test_homeserver()
|
2019-01-29 10:58:37 -05:00
|
|
|
self.store = hs.get_datastore()
|
2019-05-23 10:00:20 -04:00
|
|
|
self.config = hs.config
|
2021-03-16 11:44:25 -04:00
|
|
|
self.auth_handler = hs.get_auth_handler()
|
2019-01-25 06:16:29 -05:00
|
|
|
return hs
|
|
|
|
|
2019-01-29 06:37:56 -05:00
|
|
|
def test_check_auth_required(self):
|
2020-12-15 09:44:04 -05:00
|
|
|
channel = self.make_request("GET", self.url)
|
2019-01-29 06:37:56 -05:00
|
|
|
|
|
|
|
self.assertEqual(channel.code, 401)
|
|
|
|
|
|
|
|
def test_get_room_version_capabilities(self):
|
|
|
|
self.register_user("user", "pass")
|
|
|
|
access_token = self.login("user", "pass")
|
|
|
|
|
2020-12-15 09:44:04 -05:00
|
|
|
channel = self.make_request("GET", self.url, access_token=access_token)
|
2019-01-25 06:16:29 -05:00
|
|
|
capabilities = channel.json_body["capabilities"]
|
2019-01-29 06:37:56 -05:00
|
|
|
|
2019-01-25 06:16:29 -05:00
|
|
|
self.assertEqual(channel.code, 200)
|
|
|
|
for room_version in capabilities["m.room_versions"]["available"].keys():
|
|
|
|
self.assertTrue(room_version in KNOWN_ROOM_VERSIONS, "" + room_version)
|
2019-05-23 10:00:20 -04:00
|
|
|
|
2019-01-25 06:16:29 -05:00
|
|
|
self.assertEqual(
|
2019-05-23 10:00:20 -04:00
|
|
|
self.config.default_room_version.identifier,
|
|
|
|
capabilities["m.room_versions"]["default"],
|
2019-01-25 06:16:29 -05:00
|
|
|
)
|
2019-01-29 10:58:37 -05:00
|
|
|
|
2021-03-16 11:44:25 -04:00
|
|
|
def test_get_change_password_capabilities_password_login(self):
|
2019-01-29 10:58:37 -05:00
|
|
|
localpart = "user"
|
|
|
|
password = "pass"
|
|
|
|
user = self.register_user(localpart, password)
|
|
|
|
access_token = self.login(user, password)
|
|
|
|
|
2020-12-15 09:44:04 -05:00
|
|
|
channel = self.make_request("GET", self.url, access_token=access_token)
|
2019-01-29 10:58:37 -05:00
|
|
|
capabilities = channel.json_body["capabilities"]
|
|
|
|
|
|
|
|
self.assertEqual(channel.code, 200)
|
2019-01-29 13:04:56 -05:00
|
|
|
self.assertTrue(capabilities["m.change_password"]["enabled"])
|
2021-03-16 11:44:25 -04:00
|
|
|
|
|
|
|
@override_config({"password_config": {"localdb_enabled": False}})
|
|
|
|
def test_get_change_password_capabilities_localdb_disabled(self):
|
|
|
|
localpart = "user"
|
|
|
|
password = "pass"
|
|
|
|
user = self.register_user(localpart, password)
|
|
|
|
access_token = self.get_success(
|
|
|
|
self.auth_handler.get_access_token_for_user_id(
|
|
|
|
user, device_id=None, valid_until_ms=None
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
channel = self.make_request("GET", self.url, access_token=access_token)
|
|
|
|
capabilities = channel.json_body["capabilities"]
|
|
|
|
|
|
|
|
self.assertEqual(channel.code, 200)
|
|
|
|
self.assertFalse(capabilities["m.change_password"]["enabled"])
|
|
|
|
|
|
|
|
@override_config({"password_config": {"enabled": False}})
|
|
|
|
def test_get_change_password_capabilities_password_disabled(self):
|
|
|
|
localpart = "user"
|
|
|
|
password = "pass"
|
|
|
|
user = self.register_user(localpart, password)
|
|
|
|
access_token = self.get_success(
|
|
|
|
self.auth_handler.get_access_token_for_user_id(
|
|
|
|
user, device_id=None, valid_until_ms=None
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2020-12-15 09:44:04 -05:00
|
|
|
channel = self.make_request("GET", self.url, access_token=access_token)
|
2019-01-29 10:58:37 -05:00
|
|
|
capabilities = channel.json_body["capabilities"]
|
|
|
|
|
|
|
|
self.assertEqual(channel.code, 200)
|
2019-01-29 13:04:56 -05:00
|
|
|
self.assertFalse(capabilities["m.change_password"]["enabled"])
|
2021-07-20 07:59:23 -04:00
|
|
|
|
|
|
|
def test_get_does_not_include_msc3244_fields_by_default(self):
|
|
|
|
localpart = "user"
|
|
|
|
password = "pass"
|
|
|
|
user = self.register_user(localpart, password)
|
|
|
|
access_token = self.get_success(
|
|
|
|
self.auth_handler.get_access_token_for_user_id(
|
|
|
|
user, device_id=None, valid_until_ms=None
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
channel = self.make_request("GET", self.url, access_token=access_token)
|
|
|
|
capabilities = channel.json_body["capabilities"]
|
|
|
|
|
|
|
|
self.assertEqual(channel.code, 200)
|
|
|
|
self.assertNotIn(
|
|
|
|
"org.matrix.msc3244.room_capabilities", capabilities["m.room_versions"]
|
|
|
|
)
|
|
|
|
|
|
|
|
@override_config({"experimental_features": {"msc3244_enabled": True}})
|
|
|
|
def test_get_does_include_msc3244_fields_when_enabled(self):
|
|
|
|
localpart = "user"
|
|
|
|
password = "pass"
|
|
|
|
user = self.register_user(localpart, password)
|
|
|
|
access_token = self.get_success(
|
|
|
|
self.auth_handler.get_access_token_for_user_id(
|
|
|
|
user, device_id=None, valid_until_ms=None
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
channel = self.make_request("GET", self.url, access_token=access_token)
|
|
|
|
capabilities = channel.json_body["capabilities"]
|
|
|
|
|
|
|
|
self.assertEqual(channel.code, 200)
|
|
|
|
for details in capabilities["m.room_versions"][
|
|
|
|
"org.matrix.msc3244.room_capabilities"
|
|
|
|
].values():
|
|
|
|
if details["preferred"] is not None:
|
|
|
|
self.assertTrue(
|
|
|
|
details["preferred"] in KNOWN_ROOM_VERSIONS,
|
|
|
|
str(details["preferred"]),
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertGreater(len(details["support"]), 0)
|
|
|
|
for room_version in details["support"]:
|
|
|
|
self.assertTrue(room_version in KNOWN_ROOM_VERSIONS, str(room_version))
|