summaryrefslogtreecommitdiff
path: root/test/ejabberd_SUITE.erl (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Improve tests for mod_privateEvgeny Khramtsov2018-11-231-30/+3
|
* Fix test case for invalid languageEvgeny Khramtsov2018-11-231-1/+1
|
* Fix compiler warnings regarding test casesHolger Weiss2018-07-111-1/+0
|
* Use p1_rand in the test suiteEvgeniy Khramtsov2018-07-051-7/+7
|
* Get rid of jlib.hrl/jlib.erlEvgeniy Khramtsov2018-06-141-9/+0
|
* Correctly resolve upload.localhost for the test suiteEvgeniy Khramtsov2018-05-171-1/+2
|
* Add tests for mod_http_uploadEvgeniy Khramtsov2018-05-171-1/+2
|
* New schema support for tests. (#2355)a-iv2018-04-121-2/+14
|
* Print something when doing tests in travis, as not doing that get us killedPaweł Chmielowski2018-01-311-0/+1
|
* Adopt tests to changes in xmppPaweł Chmielowski2018-01-251-4/+4
|
* Update expected error type in testPaweł Chmielowski2017-12-211-1/+1
|
* Adapt test to changed errorPaweł Chmielowski2017-11-271-1/+1
|
* Fix a test related to mod_capsEvgeniy Khramtsov2017-11-101-2/+2
|
* Add SQL support for mod_pushEvgeniy Khramtsov2017-10-261-1/+3
|
* Fix tests for 8679cfd2fChristophe Romain2017-08-071-4/+4
|
* Support XEP-0357: Push NotificationsHolger Weiss2017-07-201-1/+3
| | | | Closes #1379.
* Add Riak as mod_carboncopy RAM backendEvgeniy Khramtsov2017-04-151-1/+3
|
* Disable mix testsChristophe Romain2017-04-041-4/+0
|
* Add SQL as mod_carboncopy RAM backendEvgeniy Khramtsov2017-03-301-2/+2
|
* Don't call deprecated jid functions from the test suiteEvgeniy Khramtsov2017-03-071-1/+1
|
* Best Practices for Use of SASL EXTERNAL with Certificates (XEP-0178) supportEvgeniy Khramtsov2017-03-071-1/+44
| | | | | | | | | It is now possible for client connections to login using PKIX certificates. This is disabled by default, to enable it: - either set 'tls_verify: true' and 'cafile: /path/to/CAfile' in the corresponding listener's section - or set equivalent per-vhost options 'c2s_tls_verify' and 'c2s_cafile'
* Test stream management queue overloadEvgeniy Khramtsov2017-02-211-0/+1
|
* Change routing APIEvgeniy Khramtsov2017-02-161-1/+2
| | | | | | | | | | | Now 'From' and 'To' arguments must be omitted in functions and structures related to routing. The commit deprecates the following functions: ejabberd_router:route/3 in favor of ejabberd_router:route/1 ejabberd_router:route_error/4 in favor of ejabberd_router:route_error/2 ejabberd_local:route_iq/4 in favor of ejabberd_local:route_iq/2 ejabberd_local:route_iq/5 in favor of ejabberd_local:route_iq/3 The format of {route, From, To, Packet} is changed in favor of {route, Packet}
* Make test suite working againEvgeniy Khramtsov2017-01-231-29/+44
|
* Cleanup file headersChristophe Romain2017-01-031-6/+22
|
* Update copyright date automatically (#1442)Badlop2017-01-021-1/+1
|
* Make common tests working againEvgeniy Khramtsov2016-11-181-1997/+62
|
* Add more tests for offline storageEvgeniy Khramtsov2016-11-081-161/+35
|
* Add roster testsEvgeniy Khramtsov2016-11-071-195/+29
|
* Add more tests for privacy lists and blocking commandEvgeniy Khramtsov2016-10-221-404/+437
|
* Add more MUC testsEvgeniy Khramtsov2016-10-171-382/+199
|
* Add xdata generator and make some code using itEvgeniy Khramtsov2016-10-071-128/+760
|
* Text legacy IQ handler supportEvgeniy Khramtsov2016-09-251-0/+9
|
* Test anonymous authEvgeniy Khramtsov2016-09-251-18/+22
|
* Get rid of compile warnings in test suiteEvgeniy Khramtsov2016-09-251-31/+35
|
* Improve namespace handlingEvgeniy Khramtsov2016-09-241-21/+21
|
* Add tests for s2s codeEvgeniy Khramtsov2016-09-231-34/+149
|
* Add tests for external componentEvgeniy Khramtsov2016-09-211-12/+70
|
* Add more tests for C2SEvgeniy Khramtsov2016-09-201-31/+197
|
* Make common tests working againEvgeniy Khramtsov2016-09-131-214/+199
|
* Stronger tests in the test suite, SQL updates and fixesAlexey Shchepin2016-06-021-8/+8
|
* Merge pull request #1131 from weiss/failed-resume-hEvgeny Khramtsov2016-05-251-0/+14
|\ | | | | XEP-0198: Indicate number of handled stanzas if resumption fails
| * XEP-0198: Add 'h' attribute to <failed/> elementHolger Weiss2016-05-241-0/+14
| | | | | | | | | | If a resume request is rejected because the session timed out, indicate the number of handled stanzas as per version 1.5 of XEP-0198.
* | Merge pull request #1126 from weiss/muc-send-affiliationEvgeny Khramtsov2016-05-251-0/+5
|\ \ | |/ |/| Notify on MUC affiliation changes of non-occupants
| * mod_muc_room: Notify on affiliation changesHolger Weiss2016-05-201-0/+5
| | | | | | | | | | | | Notify the current room occupants if the affiliation of a non-occupant is changed as per example 195 of XEP-0045. In anonymous rooms, only moderators are notified, though.
* | mod_client_state: Add "queue_pep" optionHolger Weiss2016-05-171-0/+51
| | | | | | | | | | | | | | If the new "queue_pep" option is enabled and the client is inactive, PEP notifications are throttled in a similar way to presence stanzas and chat states. Only the most recent notification of a given node and payload type will be queued from a given contact.
* | mod_client_state: Queue chat state notificationsHolger Weiss2016-05-171-3/+8
|/ | | | | | Queue standalone chat states instead of simply dropping them when the client is inactive. Only the most recent chat state of a given client is queued.
* Avoid error bounces when testing stream managementHolger Weiss2016-05-061-1/+3
| | | | | | The test suite sends messages to the server JID while checking whether the stream management code counts outgoing stanzas correctly. We now set type='headline' for those messages to avoid error bounces.
* Add tests for MUC MAMEvgeniy Khramtsov2016-05-011-0/+90
|
* Rename odbc to sql everywhereEvgeniy Khramtsov2016-04-201-4/+4
|