This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request from GHSA-jj53-8fmw-f2w2
- Loading branch information
1 parent
52c7a51
commit cb35df9
Showing
2 changed files
with
59 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
from synapse.rest.client.v1 import room | ||
from synapse.rest.client.v2_alpha import groups | ||
|
||
from tests import unittest | ||
from tests.unittest import override_config | ||
|
||
|
||
class GroupsTestCase(unittest.HomeserverTestCase): | ||
user_id = "@alice:test" | ||
room_creator_user_id = "@bob:test" | ||
|
||
servlets = [room.register_servlets, groups.register_servlets] | ||
|
||
@override_config({"enable_group_creation": True}) | ||
def test_rooms_limited_by_visibility(self): | ||
group_id = "+spqr:test" | ||
|
||
# Alice creates a group | ||
channel = self.make_request("POST", "/create_group", {"localpart": "spqr"}) | ||
self.assertEquals(channel.code, 200, msg=channel.text_body) | ||
self.assertEquals(channel.json_body, {"group_id": group_id}) | ||
|
||
# Bob creates a private room | ||
room_id = self.helper.create_room_as(self.room_creator_user_id, is_public=False) | ||
self.helper.auth_user_id = self.room_creator_user_id | ||
self.helper.send_state( | ||
room_id, "m.room.name", {"name": "bob's secret room"}, tok=None | ||
) | ||
self.helper.auth_user_id = self.user_id | ||
|
||
# Alice adds the room to her group. | ||
channel = self.make_request( | ||
"PUT", f"/groups/{group_id}/admin/rooms/{room_id}", {} | ||
) | ||
self.assertEquals(channel.code, 200, msg=channel.text_body) | ||
self.assertEquals(channel.json_body, {}) | ||
|
||
# Alice now tries to retrieve the room list of the space. | ||
channel = self.make_request("GET", f"/groups/{group_id}/rooms") | ||
self.assertEquals(channel.code, 200, msg=channel.text_body) | ||
self.assertEquals( | ||
channel.json_body, {"chunk": [], "total_room_count_estimate": 0} | ||
) |