summary refs log tree commit diff
path: root/tests/storage/test_stream.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Generate historic pagination token for `/messages` when no `?from` token ↵Eric Eastwood2022-04-061-1/+3
| | | | provided (#12370)
* Remove redundant `get_success` calls in test code (#12346)Richard van der Hoff2022-04-011-3/+1
| | | There are a bunch of places we call get_success on an immediate value, which is unnecessary. Let's rip them out, and remove the redundant functionality in get_success and friends.
* Support stable identifiers for MSC3440: Threading (#12151)Patrick Cloke2022-03-101-11/+9
| | | | The unstable identifiers are still supported if the experimental configuration flag is enabled. The unstable identifiers will be removed in a future release.
* Remove `HomeServer.get_datastore()` (#12031)Richard van der Hoff2022-02-231-1/+1
| | | | | | | The presence of this method was confusing, and mostly present for backwards compatibility. Let's get rid of it. Part of #11733
* Support filtering by relations per MSC3440 (#11236)Patrick Cloke2021-11-091-0/+207
| | | | Adds experimental support for `relation_types` and `relation_senders` fields for filters.
* Remove some unused functions (#711)Mark Haines2016-04-081-185/+0
| | | | | | | | * Remove some unused functions * get_room_events_stream is only used in tests * is_exclusive_room might actually be something we want
* Fix flake8 warnings for testsMark Haines2016-02-191-2/+2
|
* copyrightsMatthew Hodgson2016-01-071-1/+1
|
* Remove more unused parametersDaniel Wagner-Hall2015-11-021-4/+0
|
* Implement configurable stats reportingDaniel Wagner-Hall2015-09-221-53/+15
| | | | | | | | | | SYN-287 This requires that HS owners either opt in or out of stats reporting. When --generate-config is passed, --report-stats must be specified If an already-generated config is used, and doesn't have the report_stats key, it is requested to be set.
* Factor out some of the common homeserver setup code into aMark Haines2015-02-111-12/+2
| | | | setup_test_homeserver function in utils.
* Replace hs.parse_roomid with RoomID.from_stringMark Haines2015-01-231-3/+3
|
* Replace hs.parse_userid with UserID.from_stringMark Haines2015-01-231-2/+3
|
* Kill off synapse.api.events.*Erik Johnston2014-12-161-6/+5
|
* Fix prev_contentErik Johnston2014-12-111-3/+2
|
* Fix some testsErik Johnston2014-12-101-39/+34
|
* Fix stream test.Erik Johnston2014-11-101-5/+12
|
* Fix a couple more storage testsErik Johnston2014-11-051-7/+17
|
* Test that prev_content get's added if there is a prev_state key (in the ↵Erik Johnston2014-09-191-17/+70
| | | | event stream).
* SYN-47: Fix bug where we still returned events for rooms we had left.Erik Johnston2014-09-191-0/+173
SYN-47 #resolve