summary refs log tree commit diff
path: root/tests/server_notices (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Convert synapse.server_notices to async/await. (#7394)Patrick Cloke2020-05-011-1/+1
|
* async/await is_server_admin (#7363)Andrew Morgan2020-05-011-24/+24
|
* Server notices: Dissociate room creation/lookup from invite (#7199)Brendan Abolivier2020-04-041-12/+108
| | | | | | | | | Fixes #6815 Before figuring out whether we should alert a user on MAU, we call get_notice_room_for_user to get some info on the existing server notices room for this user. This function, if the room doesn't exist, creates it and invites the user in it. This means that, if we decide later that no server notice is needed, the user gets invited in a room with no message in it. This happens at every restart of the server, since the room ID returned by get_notice_room_for_user is cached. This PR fixes that by moving the inviting bit to a dedicated function, that's only called when the server actually needs to send a notice to the user. A potential issue with this approach is that the room that's created by get_notice_room_for_user doesn't match how that same function looks for an existing room (i.e. it creates a room that doesn't have an invite or a join for the current user in it, so it could lead to a new room being created each time a user syncs), but I'm not sure this is a problem given it's cached until the server restarts, so that function won't run very often. It also renames get_notice_room_for_user into get_or_create_notice_room_for_user to make what it does clearer.
* Remove spurious "name" parameter to `default_config`Richard van der Hoff2020-03-241-1/+1
| | | | | this is never set to anything other than "test", and is a source of unnecessary boilerplate.
* Option to suppress resource exceeded alerting (#6173)Neil Johnson2019-10-241-2/+57
| | | | The expected use case is to suppress MAU limiting on small instances
* Remove non-functional 'expire_access_token' setting (#5782)Richard van der Hoff2019-07-301-1/+1
| | | | | | | | The `expire_access_token` didn't do what it sounded like it should do. What it actually did was make Synapse enforce the 'time' caveat on macaroons used as access tokens, but since our access token macaroons never contained such a caveat, it was always a no-op. (The code to add 'time' caveats was removed back in v0.18.5, in #1656)
* Run Black. (#5482)Amber Brown2019-06-201-2/+2
|
* Migrate all tests to use the dict-based config format instead of hanging ↵Amber Brown2019-05-132-13/+28
| | | | items off HomeserverConfig (#5171)
* Run Black on the tests again (#5170)Amber Brown2019-05-101-1/+0
|
* Add admin api for sending server_notices (#5121)Richard van der Hoff2019-05-021-1/+1
|
* Move admin api impl to its own packageRichard van der Hoff2019-05-011-3/+3
| | | | It doesn't really belong under rest/client/v1 any more.
* Some more porting to HomeserverTestCase and remove old RESTHelper (#4913)Amber Brown2019-03-221-39/+53
|
* Fix resource limits testsRichard van der Hoff2019-03-191-2/+5
| | | | | Make sure that we have a `server_notices_mxid` set, given that we are relying on it.
* fix broken testRichard van der Hoff2018-10-251-9/+1
| | | | This test stubbed out some stuff in a very weird way. I have no idea why. It broke.
* Fix userconsent on Python 3 (#3938)Amber Brown2018-10-021-0/+100
|
* Port tests/ to Python 3 (#3808)Amber Brown2018-09-071-18/+12
|
* Merge branch 'develop' of github.com:matrix-org/synapse into erikj/admin_contactErik Johnston2018-08-241-0/+1
|\
| * Fix checking if service notice room is already taggedErik Johnston2018-08-241-0/+1
| | | | | | | | This manifested in synapse repeatedly setting the tag for the room
* | Change admin_uri to admin_contact in config and errorsErik Johnston2018-08-241-2/+2
|/
* Fix bug where we resent "limit exceeded" server noticesErik Johnston2018-08-231-0/+66
| | | | This was due to a bug where we mutated a cached event's contents
* Actually run the testsErik Johnston2018-08-231-0/+0
|
* Update notice formatErik Johnston2018-08-221-3/+9
|
* clean up, no functional changesNeil Johnson2018-08-171-15/+17
|
* refactor for readability, and reuse caching for setting tagsNeil Johnson2018-08-161-0/+1
|
* check for room state before deciding on actionNeil Johnson2018-08-161-20/+32
|
* implementation of server notices to alert on hitting resource limitsNeil Johnson2018-08-101-0/+125