summaryrefslogtreecommitdiff
path: root/tests/lib
AgeCommit message (Collapse)AuthorFilesLines
2020-01-18CMake: Get rid of global include_directories()Alexander Akulich1-0/+1
2020-01-18Use nullptr keyword wherever it makes senseAlexander Akulich2-8/+8
Refactored with clang-tidy
2020-01-18Use override specifiers wherever it makes senseAlexander Akulich3-3/+3
Refactored with clang-tidy
2019-11-08CMake: Drop custom FindQt5 module, rebase on Qt5 targetsAlexander Akulich2-4/+9
2019-11-08CMake: Fix TPGLIB_LIBRARIES in glib testsAlexander Akulich1-6/+10
2019-10-27Modernize TestConnHelper::ensureChannel()Alexander Akulich1-8/+13
2019-10-27TestConnHelper: Rework contacts getterAlexander Akulich2-14/+41
2019-10-15Tests: Fix account-manager.py python3 portAlexander Akulich1-1/+1
2019-09-21port test scripts to new gi based pygobjectIslam Amer1-1/+1
2019-08-31Tools: Update tools from telepathy-glibAlexander Akulich1-2/+2
The main reason is the improved Python3 compatibility
2019-08-31Tools: Update c-constants-gen from telepathy-glibAlexander Akulich1-1/+1
(output gtk-doc separately) See commit 93c4e78ac4dbb31b2106da2835c47eeb3896d0a3 in telepathy-glib
2019-08-31Tools: Remove glib-signals-marshal-genAlexander Akulich2-28/+0
See commit d70ba9ba46ea037b8003efc27de7f8c2d067befa in telepathy-glib.
2019-08-31Port to Python3Alexey Andreyev1-27/+27
2016-09-07cmake: get rid of the old & ugly syntax of having arguments in else(), ↵George Kiagiadakis13-17/+19
endif(), endmacro(), endfunction() This is an old cmake syntax that is not required anymore. It's ugly and makes code hard to read.
2016-06-11CMakeLists: Added missing QtTest library linkage in tests.Alexandr Akulich2-1/+2
2014-02-02Update test library to match spec changesDavid Edmundson1-1/+0
2013-06-18tests: sync simple-channel-dispatch-operation.c from telepahty-glibDavid Edmundson1-1/+10
This fixed a memory leak introduced in the last commit Reviewed-by: Martin Klapetek <mklapetek@kde.org>
2013-06-17Remove references to deprecated tp_channel_borrow_immutable_propertiesDavid Edmundson1-1/+1
and replace with tp_channel_dup_immutable_properties this allows tests to compile against newer versions of Telepathy glib Reviewed-by: Martin Klapetek <mklapetek@kde.org>
2012-08-27glib: Disable tp_tests_connection_run_until_contact_by_id to avoid requiring ↵Dario Freddi1-0/+4
0.19.x
2012-07-13tests: Sync util.* from tp-glib to avoid deprecation warningsDario Freddi2-18/+305
Reviewed-by: George Kiagiadakis <george.kiagiadakis@collabora.com>
2012-07-12tp-glib-tests: link to the dbus-1 library, as it is used in the dbus tubes ↵George Kiagiadakis1-0/+1
test CM Reviewed-by: Dario Freddi <dario.freddi@collabora.com>
2012-07-05contacts-conn CM: Implement proper Conn.I.ClientTypes supportGeorge Kiagiadakis2-13/+80
2012-07-05contacts-conn CM: sync client-types interface support from tp-glibGeorge Kiagiadakis2-0/+25
2012-07-05dbus-tube-test CM: remove stuff that are deprecated in tp-glib 0.19George Kiagiadakis1-8/+5
2012-07-03dbus-tubes: Fix leaks in dbus tubes serviceDario Freddi1-3/+20
2012-07-03dbus-tubes: Fix the test service by returning the correct DBUS_NAMES propertyDario Freddi1-2/+7
2012-07-03dbus-tubes: Clean up the test case and the test serviceDario Freddi1-41/+0
2012-07-03dbus-tubes: Make offerSuccess passDario Freddi2-5/+61
2012-07-03dbus-tubes: Implement accept service-side, and have testAcceptSuccess workingDario Freddi2-11/+268
2012-07-03dbus-tubes: Add basic logic for accepting and offering a tube, implementing ↵Dario Freddi2-5/+117
the full interface. testAcceptTwice now passes.
2012-07-03dbus-tubes: Make immutable properties writable in the test serviceDario Freddi1-19/+56
2012-07-03dbus-tubes: Add autotests library from tp-glibDario Freddi3-1/+448
2012-05-23tests/lib/glib: Remove the csh CM - it's unused and uses deprecated API.George Kiagiadakis11-1760/+0
2012-05-23tests/lib/glib/util.c: Remove tp_tests_connection_run_request_contact_handleGeorge Kiagiadakis1-44/+0
This method uses deprecated API and it's not used anywhere, so it's not worth porting.
2012-05-23textchan-null/textchan-group test CMs: Ignore deprecations for the momentGeorge Kiagiadakis2-0/+10
These two service-side channel implementations are still using the deprecated TpTextMixin. In the future, we should get rid of them and use the echo2 CM as a replacement in the tests that use them.
2012-05-23text-chan test: Ignore deprecations to use TpTextMixin for compatibility ↵George Kiagiadakis1-0/+3
functionality testing
2012-05-23stream-tube-chan test CM: Don't use TpTextMixin - it's not needed and it's ↵George Kiagiadakis2-6/+0
deprecated.
2012-05-23echo2 test CM: Replace tp_message_new/tp_message_set_handle with ↵George Kiagiadakis1-6/+5
tp_cm_message_new/tp_cm_message_set_sender
2012-05-23tests: Remove all occurencies of tp_handle_ref/unref.George Kiagiadakis12-139/+1
These methods are now deprecated and they have been no-op for a while, so it is safe to simply remove them.
2012-05-23tests/lib/glib: Replace TP_ERRORS with TP_ERROR, as TP_ERRORS is now deprecated.George Kiagiadakis27-70/+70
2012-04-10TestThreadHelper: Start the thread after entering the event loop, as the ↵George Kiagiadakis1-1/+2
code actually intended to do.
2012-04-10tests-lib: Add a new TestThreadHelper classGeorge Kiagiadakis3-2/+133
This class allows us to run parts of a unit test in a different thread context, while being in sync with the unit test flow. This is useful to run connection manager implementations in a different thread, to overcome the shortcomings of the QtDBus local-loop optimizations.
2012-03-21tests: import the example call CM from tp-glibGeorge Kiagiadakis17-0/+3220
2012-03-13captcha-authentication: Add more tests to bring coverage up to 90%Dario Freddi1-1/+26
2012-03-13captcha-authentication: Don't destroy the connection when cancellingDario Freddi1-9/+0
2012-03-13captcha-authentication: Make can-retry-captcha configurable in the service testDario Freddi1-5/+18
2012-03-13captcha-authentication: Multiple fixes to the glib service for CaptchaDario Freddi2-30/+24
2012-03-13captcha-authentication: First iteration of a captcha channelDario Freddi3-0/+614
2012-01-27Fix tests linkage with future/ convenience libraries.Andre Moreira Magalhaes (andrunko)3-3/+3
2011-12-15future/conn-addressing: Use TpTests instead of Example as the namespace.Andre Moreira Magalhaes (andrunko)2-34/+34