mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-03 07:36:04 -04:00
Merge branch 'release-v1.40' into develop
This commit is contained in:
commit
f8e86b7d2e
11 changed files with 63 additions and 40 deletions
|
@ -341,7 +341,7 @@ class PruneEventTestCase(unittest.TestCase):
|
|||
"signatures": {},
|
||||
"unsigned": {},
|
||||
},
|
||||
room_version=RoomVersions.MSC3083,
|
||||
room_version=RoomVersions.V8,
|
||||
)
|
||||
|
||||
|
||||
|
|
|
@ -231,13 +231,13 @@ class SpaceSummaryTestCase(unittest.HomeserverTestCase):
|
|||
invited_room = self._create_room_with_join_rule(JoinRules.INVITE)
|
||||
self.helper.invite(invited_room, targ=user2, tok=self.token)
|
||||
restricted_room = self._create_room_with_join_rule(
|
||||
JoinRules.MSC3083_RESTRICTED,
|
||||
room_version=RoomVersions.MSC3083.identifier,
|
||||
JoinRules.RESTRICTED,
|
||||
room_version=RoomVersions.V8.identifier,
|
||||
allow=[],
|
||||
)
|
||||
restricted_accessible_room = self._create_room_with_join_rule(
|
||||
JoinRules.MSC3083_RESTRICTED,
|
||||
room_version=RoomVersions.MSC3083.identifier,
|
||||
JoinRules.RESTRICTED,
|
||||
room_version=RoomVersions.V8.identifier,
|
||||
allow=[
|
||||
{
|
||||
"type": RestrictedJoinRuleTypes.ROOM_MEMBERSHIP,
|
||||
|
@ -477,7 +477,7 @@ class SpaceSummaryTestCase(unittest.HomeserverTestCase):
|
|||
{
|
||||
"room_id": restricted_room,
|
||||
"world_readable": False,
|
||||
"join_rules": JoinRules.MSC3083_RESTRICTED,
|
||||
"join_rules": JoinRules.RESTRICTED,
|
||||
"allowed_spaces": [],
|
||||
},
|
||||
),
|
||||
|
@ -486,7 +486,7 @@ class SpaceSummaryTestCase(unittest.HomeserverTestCase):
|
|||
{
|
||||
"room_id": restricted_accessible_room,
|
||||
"world_readable": False,
|
||||
"join_rules": JoinRules.MSC3083_RESTRICTED,
|
||||
"join_rules": JoinRules.RESTRICTED,
|
||||
"allowed_spaces": [self.room],
|
||||
},
|
||||
),
|
||||
|
|
|
@ -384,7 +384,7 @@ class EventAuthTestCase(unittest.TestCase):
|
|||
},
|
||||
)
|
||||
event_auth.check(
|
||||
RoomVersions.MSC3083,
|
||||
RoomVersions.V8,
|
||||
authorised_join_event,
|
||||
auth_events,
|
||||
do_sig_check=False,
|
||||
|
@ -400,7 +400,7 @@ class EventAuthTestCase(unittest.TestCase):
|
|||
"@inviter:foo.test"
|
||||
)
|
||||
event_auth.check(
|
||||
RoomVersions.MSC3083,
|
||||
RoomVersions.V8,
|
||||
_join_event(
|
||||
pleb,
|
||||
additional_content={
|
||||
|
@ -414,7 +414,7 @@ class EventAuthTestCase(unittest.TestCase):
|
|||
# A join which is missing an authorised server is rejected.
|
||||
with self.assertRaises(AuthError):
|
||||
event_auth.check(
|
||||
RoomVersions.MSC3083,
|
||||
RoomVersions.V8,
|
||||
_join_event(pleb),
|
||||
auth_events,
|
||||
do_sig_check=False,
|
||||
|
@ -427,7 +427,7 @@ class EventAuthTestCase(unittest.TestCase):
|
|||
)
|
||||
with self.assertRaises(AuthError):
|
||||
event_auth.check(
|
||||
RoomVersions.MSC3083,
|
||||
RoomVersions.V8,
|
||||
_join_event(
|
||||
pleb,
|
||||
additional_content={
|
||||
|
@ -442,7 +442,7 @@ class EventAuthTestCase(unittest.TestCase):
|
|||
# *would* be valid, but is sent be a different user.)
|
||||
with self.assertRaises(AuthError):
|
||||
event_auth.check(
|
||||
RoomVersions.MSC3083,
|
||||
RoomVersions.V8,
|
||||
_member_event(
|
||||
pleb,
|
||||
"join",
|
||||
|
@ -459,7 +459,7 @@ class EventAuthTestCase(unittest.TestCase):
|
|||
auth_events[("m.room.member", pleb)] = _member_event(pleb, "ban")
|
||||
with self.assertRaises(AuthError):
|
||||
event_auth.check(
|
||||
RoomVersions.MSC3083,
|
||||
RoomVersions.V8,
|
||||
authorised_join_event,
|
||||
auth_events,
|
||||
do_sig_check=False,
|
||||
|
@ -468,7 +468,7 @@ class EventAuthTestCase(unittest.TestCase):
|
|||
# A user who left can re-join.
|
||||
auth_events[("m.room.member", pleb)] = _member_event(pleb, "leave")
|
||||
event_auth.check(
|
||||
RoomVersions.MSC3083,
|
||||
RoomVersions.V8,
|
||||
authorised_join_event,
|
||||
auth_events,
|
||||
do_sig_check=False,
|
||||
|
@ -478,7 +478,7 @@ class EventAuthTestCase(unittest.TestCase):
|
|||
# be authorised since the user is already joined.)
|
||||
auth_events[("m.room.member", pleb)] = _member_event(pleb, "join")
|
||||
event_auth.check(
|
||||
RoomVersions.MSC3083,
|
||||
RoomVersions.V8,
|
||||
_join_event(pleb),
|
||||
auth_events,
|
||||
do_sig_check=False,
|
||||
|
@ -490,7 +490,7 @@ class EventAuthTestCase(unittest.TestCase):
|
|||
pleb, "invite", sender=creator
|
||||
)
|
||||
event_auth.check(
|
||||
RoomVersions.MSC3083,
|
||||
RoomVersions.V8,
|
||||
_join_event(pleb),
|
||||
auth_events,
|
||||
do_sig_check=False,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue