2019-12-04 04:46:16 -05: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 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]
|
2019-12-04 04:46:16 -05:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2022-05-27 07:14:36 -04:00
|
|
|
from synapse.api.constants import EduTypes
|
|
|
|
|
2019-12-04 04:46:16 -05:00
|
|
|
from tests import unittest
|
2022-02-28 09:10:36 -05:00
|
|
|
from tests.unittest import DEBUG, override_config
|
2019-12-04 04:46:16 -05:00
|
|
|
|
|
|
|
|
2020-12-30 14:27:32 -05:00
|
|
|
class RoomDirectoryFederationTests(unittest.FederatingHomeserverTestCase):
|
2019-12-04 04:46:16 -05:00
|
|
|
@override_config({"allow_public_rooms_over_federation": False})
|
2023-02-06 11:05:06 -05:00
|
|
|
def test_blocked_public_room_list_over_federation(self) -> None:
|
2020-12-30 14:27:32 -05:00
|
|
|
"""Test that unauthenticated requests to the public rooms directory 403 when
|
|
|
|
allow_public_rooms_over_federation is False.
|
|
|
|
"""
|
2022-02-11 07:06:02 -05:00
|
|
|
channel = self.make_signed_federation_request(
|
2020-12-30 14:27:32 -05:00
|
|
|
"GET",
|
|
|
|
"/_matrix/federation/v1/publicRooms",
|
|
|
|
)
|
2022-02-28 07:12:29 -05:00
|
|
|
self.assertEqual(403, channel.code)
|
2019-12-04 04:46:16 -05:00
|
|
|
|
|
|
|
@override_config({"allow_public_rooms_over_federation": True})
|
2023-02-06 11:05:06 -05:00
|
|
|
def test_open_public_room_list_over_federation(self) -> None:
|
2020-12-30 14:27:32 -05:00
|
|
|
"""Test that unauthenticated requests to the public rooms directory 200 when
|
|
|
|
allow_public_rooms_over_federation is True.
|
|
|
|
"""
|
2022-02-11 07:06:02 -05:00
|
|
|
channel = self.make_signed_federation_request(
|
2020-12-30 14:27:32 -05:00
|
|
|
"GET",
|
|
|
|
"/_matrix/federation/v1/publicRooms",
|
|
|
|
)
|
2022-02-28 07:12:29 -05:00
|
|
|
self.assertEqual(200, channel.code)
|
2022-02-28 09:10:36 -05:00
|
|
|
|
|
|
|
@DEBUG
|
2023-02-06 11:05:06 -05:00
|
|
|
def test_edu_debugging_doesnt_explode(self) -> None:
|
2022-02-28 09:10:36 -05:00
|
|
|
"""Sanity check incoming federation succeeds with `synapse.debug_8631` enabled.
|
|
|
|
|
|
|
|
Remove this when we strip out issue_8631_logger.
|
|
|
|
"""
|
|
|
|
channel = self.make_signed_federation_request(
|
|
|
|
"PUT",
|
|
|
|
"/_matrix/federation/v1/send/txn_id_1234/",
|
|
|
|
content={
|
|
|
|
"edus": [
|
2024-04-29 09:11:00 -04:00
|
|
|
{
|
|
|
|
"edu_type": EduTypes.DEVICE_LIST_UPDATE,
|
|
|
|
"content": {
|
|
|
|
"device_id": "QBUAZIFURK",
|
|
|
|
"stream_id": 0,
|
|
|
|
"user_id": "@user:id",
|
|
|
|
},
|
|
|
|
},
|
2022-02-28 09:10:36 -05:00
|
|
|
],
|
|
|
|
"pdus": [],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
self.assertEqual(200, channel.code)
|