Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-03-01 | Fix XML store test crash on 32bit machine | Nicolas Dufresne | 1 | -4/+5 | |
The XML store was allocating event passing native integers as timestamp property, which was causing crash on 32bit since TPL timestamp are 64bit. | |||||
2011-03-01 | Moved sqlite test with dbus tests | Nicolas Dufresne | 2 | -0/+34 | |
2011-03-01 | Moves observer test with dbus tests | Nicolas Dufresne | 2 | -0/+50 | |
Also removed unused dependency to TplChannelTest. | |||||
2011-02-28 | Add a XML log store test for add_event | Nicolas Dufresne | 1 | -0/+174 | |
2011-02-28 | Change fixture->store to be a TplLogStore | Nicolas Dufresne | 1 | -24/+22 | |
This reduces the amount of code since it is used as a TplLogStore mostly everywhere. | |||||
2011-02-24 | Merge branch 'tests-fix' | Nicolas Dufresne | 2 | -78/+137 | |
2011-02-24 | test-tpl-log-store-xml: don't ignore system() return value so gcc is happy | Guillaume Desmottes | 1 | -1/+3 | |
2011-02-24 | Fix test_get_dates() to use GDate method | Nicolas Dufresne | 1 | -3/+3 | |
This test was using g_free() to free dates. Also was sorting GDate with g_strcmp0. | |||||
2011-02-24 | Convert test_get_events_for_date() to _async() method | Nicolas Dufresne | 1 | -6/+24 | |
2011-02-24 | Convert test_get_entities() to use _async() method | Nicolas Dufresne | 1 | -7/+26 | |
2011-02-24 | Convert test_get_dates() to use _async() method | Nicolas Dufresne | 1 | -8/+29 | |
2011-02-24 | Move non-test code on top | Nicolas Dufresne | 1 | -77/+78 | |
2011-02-24 | Replace empty log-manager test with test-searches | Nicolas Dufresne | 2 | -1/+1 | |
2011-02-24 | Sort entities to make test deterministictelepathy-logger-0.2.0 | Danielle Madeley | 1 | -0/+12 | |
2011-02-23 | Set logs file mod so it can be cleared in distcheck | Nicolas Dufresne | 1 | -0/+5 | |
2011-02-23 | Fix 'make dist' so it works | Nicolas Dufresne | 1 | -5/+0 | |
2011-02-23 | Fix double free in xml log store and unit test | Nicolas Dufresne | 1 | -0/+32 | |
2011-02-22 | Introduce TplEventTypeMask to be able to select event type | Nicolas Dufresne | 3 | -19/+28 | |
2011-02-22 | Make TplEntity constructors public | Nicolas Dufresne | 4 | -32/+23 | |
Implement a generic constructor along with making public all TplEntity constructors. This is required now that the LogManager API require TplEntity object instead of id/is_room pair. | |||||
2011-02-22 | Fix valgrind support in tests/dbus | Nicolas Dufresne | 1 | -1/+1 | |
This is just a quick fix, there seems to be redondant stuff between valgrind.mk and the Makefiles.am. | |||||
2011-02-22 | Move away from id/type pair in favor of TplEntity | Nicolas Dufresne | 2 | -16/+46 | |
In the first rework step, TplEventSearchType was introduced with wrong assomption. This item was merging entity type and event type together. To make thing simple, this patch replace the pair with a TplEntity object that contain all the required information about the Entity. This enable for more complete logs in the future and fix bugs where get_entities() won't return chatrooms. | |||||
2011-02-10 | Implement XML store test for clear_entity | Nicolas Dufresne | 1 | -0/+96 | |
2011-02-10 | Implement XML log store test for clear_account | Nicolas Dufresne | 1 | -0/+57 | |
2011-02-10 | Implement test for XML logstore clear method | Nicolas Dufresne | 2 | -0/+117 | |
2011-02-08 | Renamed TplEventText into TplTextEvent | Nicolas Dufresne | 1 | -4/+4 | |
This renames the subclass in a more natural and more traditional way as found in many other GObject based APIs. | |||||
2011-02-07 | Refactored TplEvent/TplEventText | Nicolas Dufresne | 1 | -2/+2 | |
Enforces using g_object_new() instead of the partial _new() method with loads of get/set. This imply removing all the get/set methods that are not strictly required, making the properties construct only and porting the rest of the code. This change also make "make check" work again. Some more cleanup is also included. | |||||
2011-02-07 | Room can be deduced from the receiver type | Nicolas Dufresne | 1 | -2/+2 | |
Rename and move is_chatroom from TplEventText to TplEvent and implement it by looking at the receiver type. Note that this breaks make check because none of the current log-store sets the receiver. | |||||
2011-01-21 | Remove white space at end of lines | Nicolas Dufresne | 1 | -2/+2 | |
2011-01-21 | Move test-entity to dbus enabled test and cleanup | Nicolas Dufresne | 4 | -18/+194 | |
As tpl-entity uses dbus, move it to dbus enabled test so it runs in sep dbus session. Also cleanup makefiles and headers so it all compiles well. | |||||
2011-01-21 | Remove search_in_identifier test since it deprecated | Nicolas Dufresne | 1 | -37/+0 | |
2011-01-21 | Add test/dbus testsuites, as tp-glib does. | Cosimo Alfarano | 4 | -0/+990 | |
Importing only the needed modules from tests/lib/ |