aboutsummaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Add tests for setters of QXmppStreamFeaturesLinus Jahn2019-09-061-0/+25
|
* Add test for checking 'required' mode of stream featuresLinus Jahn2019-09-061-0/+19
| | | | Co-authored-by: Melvin Keskin <melvo@olomono.de>
* Implement XEP-0367: Message AttachingLinus Jahn2019-09-061-0/+18
| | | | | This adds parsing and serialization for XEP-0367: Message Attaching in version 0.3.0.
* travis: show as much build errors as possibleBoris Pek2019-09-041-1/+1
| | | | | Without this option `make` tool stops build after first found build error.
* Add tests for QXmppMessageReceiptManagerLinus Jahn2019-05-052-0/+99
|
* Implement XEP-0363: HTTP File Upload: Request/Slot IQsLinus Jahn2019-05-042-0/+173
| | | | | This implements the IQs for requesting and receiving upload slots as defined by XEP-0363: HTTP File Upload in version 0.9.0.
* tests: mix items: Fix using old namespace in examplesLinus Jahn2019-05-041-4/+4
|
* Update implementation of XEP-0369 (v0.14.2) and XEP-0405 (v0.4.0)Linus Jahn2019-05-042-23/+23
| | | | | The changes in the XEP only affected parts we haven't implemented yet, so updating was rather easy.
* Implement XEP-0382: Spoiler messages (v0.2.0)Linus Jahn2019-05-041-0/+41
| | | | This adds parsing and serialization of spoilers in the QXmppMessage class.
* Implement MIX-CORE XEP-0369: Info/Participant node itemsLinus Jahn2019-05-042-0/+160
| | | | | | | | | This implements the pubsub items for the MIX participants and info node as defined by XEP-0369: Mediated Information eXchange (MIX) in version 0.14.2. https://xmpp.org/extensions/xep-0369.html#participants-node https://xmpp.org/extensions/xep-0369.html#info-node
* Implement MIX-PAM XEP-0405: Roster IQ extensionLinus Jahn2019-05-011-0/+42
| | | | | | | | This adds the MIX extensions for roster queries as defined in XEP-0405: Mediated Information eXchange (MIX): Participant Server Requirements in version 0.4.0. https://xmpp.org/extensions/xep-0405.html#mix-roster-capability-sharing
* Implement MIX-PAM XEP-0405: Presence extensionLinus Jahn2019-05-011-0/+28
| | | | | | | | This implements the new presence extension defined by XEP-0405: Mediated Information eXchange (MIX): Participant Server Requirements in version 0.4.0. https://xmpp.org/extensions/xep-0405.html#usecase-user-presence-receive
* Implement MIX-CORE XEP-0396: Message extensionLinus Jahn2019-05-011-0/+28
| | | | | | | This implements the new message extension specified by XEP-0369: Mediated Information eXchange (MIX) in version 0.14.2. https://xmpp.org/extensions/xep-0369.html#usecase-user-message
* Implement XEP-0369/XEP-0405 (MIX): IQ queriesLinus Jahn2019-01-202-0/+420
| | | | | | This implements all used IQ queries of XEP-0369: Mediated Information eXchange (MIX) (v0.14.1) and XEP-0405: Mediated Information eXchange (MIX): Participant Server Requirements (v0.3.1), including unit tests.
* [sasl] order mechanisms to prefer the most secureJeremy Lainé2019-01-181-1/+1
| | | | | | | | | | | | | | | | | | The previous logic was: - use the preferred SASL mechanism if available - otherwise use the first supported mechanism offered by the server However RFC 6120, section 6.3.3 states: "The initiating entity MUST maintain its own preference order independent of the preference order of the receiving entity." The new logic is: - order our supported mechanisms from most secure to least secure - if the user sets QXmppConfiguration::saslMechanism, put it first - use the best mechanism supported by the server
* [sasl] add support for SCRAM-SHA-1 and SCRAM-SHA-256Jeremy Lainé2019-01-171-1/+92
|
* [tests] add CMake option to build internal testsJeremy Lainé2019-01-172-4/+7
| | | | | | Some tests are disabled by default as they require exporting additional symbols which are not part of the public API. The BUILD_INTERNAL_TESTS option makes it possible to enable these additional tests.
* Bump copyright year to 2019Jeremy Lainé2019-01-0835-35/+35
|
* Implement XEP-0319: Last User Interaction in PresenceLinus Jahn2019-01-041-0/+23
|
* Implement XEP-0308: Last Message CorrectionLinus Jahn2018-12-301-0/+18
|
* Add partial support of XEP-0066: Out of Band DataLinus Jahn2018-12-191-0/+28
| | | | | Today this is most important for attaching URLs generated by XEP-0363: HTTP File Upload for a very basic form of media/file sharing.
* Implement XEP-0352: Client State IndicationLinus Jahn2018-10-291-0/+3
| | | | | This commit is based on a pull request by fbeutel (GitHub) (see #87) and was rebased and slightly modified by me.
* [tests] Explicitly include QXmppRtpChannel.h (see #78)Jeremy Lainé2018-10-271-0/+2
|
* CMake: Add binary paths for tests to the include pathsNiels Ole Salscheider2018-09-303-0/+3
| | | | This fixes #141.
* travis: Install clangNiels Ole Salscheider2018-09-301-1/+1
| | | | Now that we only use the system binaries we have to install this manually.
* travis: Only use system binariesNiels Ole Salscheider2018-09-301-1/+5
|
* [travis] build qxmpp out-of-sourceJeremy Lainé2018-09-241-1/+3
|
* [travis] test build on OS XJeremy Lainé2018-09-182-7/+23
|
* [tests] disable tests that require QXMPP_AUTOTEST_EXPORT (fixes #149)Jeremy Lainé2018-09-181-3/+3
|
* [tests] switch from coveralls to codecovJeremy Lainé2018-09-082-9/+0
|
* support XEP-0237 Roster VersioningZam2018-08-171-0/+27
|
* [tests] generate code coverage reportJeremy Lainé2018-06-242-0/+14
|
* Merge pull request #131 from olesalscheider/cmakeNiels Ole Salscheider2018-06-2343-196/+65
|\ | | | | Add CMake build system, drop Qt4 support
| * Fix paths in CMakeLists.txtNiels Ole Salscheider2018-06-171-3/+4
| |
| * Fix qxmppsasl testNiels Ole Salscheider2017-09-041-1/+1
| |
| * Drop the version string testNiels Ole Salscheider2017-09-041-6/+0
| | | | | | | | It is just stupid to adjust this...
| * Update travis scriptsNiels Ole Salscheider2017-09-042-32/+7
| |
| * Port tests to the new build systemNiels Ole Salscheider2017-09-0439-157/+56
| |
* | Fix encoding / decoding of CSRC count in RTP packetsJeremy Lainé2018-02-281-1/+1
|/
* Add test for QXmppMamManagerNiels Ole Salscheider2017-04-293-0/+275
|
* [travis] test builds using clangBoris Pek2017-02-021-0/+5
|
* [carbons] rename QXmppCarbonsManager to QXmppCarbonManagerJeremy Lainé2016-09-044-24/+17
|
* Merge pull request #88 from fbeutel/carbonsfbeutel2016-09-044-0/+253
| | | * Implemented XEP-0280: Message Carbons
* [travis] try to use trusty to fix travis buildsJeremy Lainé2016-08-161-1/+0
|
* bump version to 0.9.3Jeremy Lainé2015-12-031-1/+1
|
* Change test case for c4f27ae, compare localFileUrl directlyfbeutel2015-10-211-1/+1
|
* Added test case for c4f27ae (converting file transfer path correctly)fbeutel2015-10-211-0/+1
|
* improve default candidate selection during SDP generationJeremy Lainé2015-09-031-0/+50
|
* Add QXmppIceConnection::gatheringState propertyJeremy Lainé2015-09-031-2/+8
|
* don't use gcc-specific profilingJeremy Lainé2015-09-021-13/+1
|