Update sytest whitelist and blacklist

This commit is contained in:
Neil Alexander 2020-03-26 17:37:58 +00:00
parent a7cadd7b9e
commit c25b0ca413
2 changed files with 13 additions and 1 deletions

View file

@ -28,3 +28,7 @@ Outbound federation can backfill events
# Blacklisted due to alias work on Synapse # Blacklisted due to alias work on Synapse
Alias creators can delete canonical alias with no ops Alias creators can delete canonical alias with no ops
# Blacklisted because we need to implement v2 invite endpoints for room versions
# to be supported (currently fails with M_UNSUPPORTED_ROOM_VERSION)
Inbound federation rejects invites which are not signed by the sender

View file

@ -183,7 +183,6 @@ After deactivating account, can't log in with an email
Remote room alias queries can handle Unicode Remote room alias queries can handle Unicode
Newly joined room is included in an incremental sync after invite Newly joined room is included in an incremental sync after invite
Inbound /v1/make_join rejects remote attempts to join local users to rooms Inbound /v1/make_join rejects remote attempts to join local users to rooms
Inbound federation rejects invites which are not signed by the sender
Local room members see posted message events Local room members see posted message events
Fetching eventstream a second time doesn't yield the message again Fetching eventstream a second time doesn't yield the message again
Local non-members don't see posted message events Local non-members don't see posted message events
@ -223,3 +222,12 @@ GET /joined_rooms lists newly-created room
Message history can be paginated over federation Message history can be paginated over federation
GET /rooms/:room_id/messages returns a message GET /rooms/:room_id/messages returns a message
Remote user can backfill in a room with version 1 Remote user can backfill in a room with version 1
POST /createRoom creates a room with the given version
POST /createRoom rejects attempts to create rooms with numeric versions
POST /createRoom rejects attempts to create rooms with unknown versions
User can create and send/receive messages in a room with version 2
local user can join room with version 2
remote user can join room with version 2
User can invite local user to room with version 2
Remote user can backfill in a room with version 2
Inbound federation accepts attempts to join v2 rooms from servers with support