summary refs log tree commit diff
path: root/tests (follow)
Commit message (Expand)AuthorAgeFilesLines
* Fix room permissions testErik Johnston2014-09-021-0/+3
* Ensure that event source unit tests could cope with get_new_events_for_user()...Paul "LeoNerd" Evans2014-09-021-14/+20
* Reënable presence visibility permission checking now it's not used on redund...Paul "LeoNerd" Evans2014-09-011-2/+0
* Fix the tests to include new db callsErik Johnston2014-09-012-6/+20
* Have MemoryDataStore's get_rooms_for_user_where_membership_is() return room m...Paul "LeoNerd" Evans2014-09-011-2/+3
* Perform room unit tests with 'local' users actually in the right domain ;)Paul "LeoNerd" Evans2014-09-011-6/+6
* Rename API-visible 'mtime' presence field to 'last_active'; slightly differen...Paul "LeoNerd" Evans2014-09-013-18/+33
* Rename 'state' presence key to the much more obvious 'presence'; maintain a l...Paul "LeoNerd" Evans2014-09-013-57/+102
* change the world: make the default matrix API URL prefix /_matrix rather than...Matthew Hodgson2014-08-317-28/+28
* Bugfixes on presence pushes on user joining:Paul "LeoNerd" Evans2014-08-291-57/+71
* Bugfix for rest presence test - datastore needs to implement profile methodsPaul "LeoNerd" Evans2014-08-291-0/+10
* Define a new event stream data source for typing notifications (currently null)Paul "LeoNerd" Evans2014-08-291-3/+5
* Move the *EventSource classes into the handlers they relate to, so it's easie...Paul "LeoNerd" Evans2014-08-291-2/+2
* Fix a couple of bugs in presence handler related to pushing updatesto the cor...Erik Johnston2014-08-293-72/+157
* Only send presence "poll"/"unpoll" EDUs when changing from/to zero remotesPaul "LeoNerd" Evans2014-08-281-6/+33
* Ability to assert a DeferredMockCallable has received no callsPaul "LeoNerd" Evans2014-08-281-0/+15
* Re-enable presence, un-skip presence testsPaul "LeoNerd" Evans2014-08-283-11/+0
* Remove get_state_for_room function from federation handlerMark Haines2014-08-282-2/+18
* Fix up the various presence-related tests so that if they're not skipped, the...Paul "LeoNerd" Evans2014-08-273-12/+26
* Merge branch 'develop' into storage_transactionsMark Haines2014-08-272-5/+3
|\
| * Fix tests.Erik Johnston2014-08-272-4/+3
* | Merge branch 'develop' into storage_transactionsMark Haines2014-08-275-99/+292
|\|
| * Initial typing notification support - EDU federation, but no timers, and no a...Paul "LeoNerd" Evans2014-08-271-0/+250
| * Final url modifications: renamed /presence_list to /presence/list to keep the...Kegan Dougal2014-08-271-3/+3
| * Renamed /rooms to /createRoom. Removed ability to PUT raw room IDs, and remov...Kegan Dougal2014-08-273-96/+39
* | Start updating state handling to use snapshotsMark Haines2014-08-272-7/+11
* | Fill out prev_events before calling persist_eventMark Haines2014-08-272-18/+29
* | Merge branch 'develop' into storage_transactionsMark Haines2014-08-273-28/+17
|\|
| * Removed MessageRestServlet, use RoomSendEventRestServlet instead. Updated cmd...Kegan Dougal2014-08-263-28/+17
* | Fold federation/handler into handlers/federationMark Haines2014-08-263-17/+24
* | Move pdu and event persistence into a single persist_event functionMark Haines2014-08-261-1/+1
* | Merge branch 'develop' into storage_transactionsMark Haines2014-08-261-4/+4
|\|
| * Renaming: /im/sync >> /initialSync. /rooms/$roomid/members/list >> /rooms/$ro...Kegan Dougal2014-08-261-4/+4
* | Merge branch 'develop' into storage_transactionsMark Haines2014-08-268-34/+48
|\|
| * Fix ALL THE UNIT TESTSKegan Dougal2014-08-265-34/+35
| * skip presence tests which broke when presence polling was disabledMark Haines2014-08-223-0/+13
* | Take a snapshot of the state of the room before performing updatesMark Haines2014-08-222-5/+27
|/
* Use the "collect_presencelike_data" distributor signal instead of re-implemen...Paul "LeoNerd" Evans2014-08-201-0/+2
* Fix test. get_joined_hosts_for_room get's called multiple timesErik Johnston2014-08-201-3/+5
* Fix federation test, since we now hit store.get_roomErik Johnston2014-08-201-1/+2
* Don't generate room membership messages. Include previous state of in members...Erik Johnston2014-08-201-1/+6
* Don't expect a reflection from events streamErik Johnston2014-08-191-3/+1
* Update testsErik Johnston2014-08-192-12/+5
* Fix typo in merge conflictErik Johnston2014-08-191-2/+0
* Merge branch 'master' of github.com:matrix-org/synapse into sql_refactorErik Johnston2014-08-198-339/+570
|\
| * Rewrite of PresenceHandler test to ensure it covers the interaction with Fede...Paul "LeoNerd" Evans2014-08-191-149/+279
| * Add a DeferredMockCallable; like mock's MockCallable but allows awaitingPaul "LeoNerd" Evans2014-08-191-0/+41
| * Perform the 'REST'-level tests of Presence against the real Presence handler ...Paul "LeoNerd" Evans2014-08-191-40/+92
| * Implement and test presence dropping of remote usersPaul "LeoNerd" Evans2014-08-191-0/+8
| * Rename MockHttpServer to MockHttpResource as it stands for one server resourc...Paul "LeoNerd" Evans2014-08-197-146/+147
* | SQL doesn't allow AUTOINCREMENT on non PRIMARY KEY columns.Erik Johnston2014-08-182-0/+3
* | Merge branch 'master' of github.com:matrix-org/synapse into sql_refactorErik Johnston2014-08-181-5/+40
|\|
| * Allow room presence visibility between users who share a roomPaul "LeoNerd" Evans2014-08-181-5/+40
* | Change the MemoryDataStore to implement new storage apiErik Johnston2014-08-181-99/+50
* | Disable the ability to GET individualy messages. We need to think about the c...Erik Johnston2014-08-181-36/+36
* | Fix some of the tests to reflect changes in the storage layer.Erik Johnston2014-08-153-39/+11
|/
* Add a check to make sure that during state conflict res we only request a PDU...Erik Johnston2014-08-151-0/+3
* Removed http_server from HomeServer. Updated unit tests to use either resourc...Kegan Dougal2014-08-149-16/+14
* Start phasing out HttpServer: we should be using Resources instead. Added res...Kegan Dougal2014-08-142-0/+4
* An initial hack at storing presence state-change mtimes in database and prese...Paul "LeoNerd" Evans2014-08-133-20/+62
* Allow advancing the MockClock's timePaul "LeoNerd" Evans2014-08-131-0/+4
* Don't mock out presence_handler's internal start/stop methods in presencelike...Paul "LeoNerd" Evans2014-08-131-9/+5
* Move MockClock into tests.utils so we can reüse itPaul "LeoNerd" Evans2014-08-132-11/+11
* Implement directory service federation by Federation Queries; avoid local_onl...Paul "LeoNerd" Evans2014-08-131-0/+112
* Add a HomeServer.parse_roomalias() to avoid having to RoomAlias.from_sring(.....Paul "LeoNerd" Evans2014-08-131-0/+6
* Use new Federation Query API to implement HS->HS fetching of remote users' pr...Paul "LeoNerd" Evans2014-08-132-8/+30
* Define the concept of a 'federation Query'; creating API for making and handl...Paul "LeoNerd" Evans2014-08-131-0/+38
* Namespace all the Federation HTTP URLs to /matrix/federation/v1/...Paul "LeoNerd" Evans2014-08-131-7/+8
* Use strings instead of opaque magic-number constants for presence states; ren...Paul "LeoNerd" Evans2014-08-133-24/+24
* add in copyrights to everything, not just the synapse subdir, and add a copyr...Matthew Hodgson2014-08-1323-0/+324
* add in whitespace after copyright statements to improve legibilityMatthew Hodgson2014-08-131-0/+1
* Reference Matrix Home Servermatrix.org2014-08-1226-0/+4818