1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include <stdlib.h>
#include <string.h>
#include <libecal/libecal.h>
#include "e-test-server-utils.h"
static ETestServerClosure cal_closure =
{ E_TEST_SERVER_CALENDAR, NULL, E_CAL_CLIENT_SOURCE_TYPE_EVENTS };
#define CYCLES 10
static void
get_revision_compare_cycle (ECalClient *client)
{
ICalComponent *icomp;
ICalTime *dtstart, *dtend;
gchar *revision_before = NULL, *revision_after = NULL, *uid = NULL;
GError *error = NULL;
/* Build up new component */
dtstart = i_cal_time_new_current_with_zone (i_cal_timezone_get_utc_timezone ());
dtend = i_cal_time_clone (dtstart);
i_cal_time_adjust (dtend, 0, 1, 0, 0);
icomp = i_cal_component_new (I_CAL_VEVENT_COMPONENT);
i_cal_component_set_summary (icomp, "Test event summary");
i_cal_component_set_dtstart (icomp, dtstart);
i_cal_component_set_dtend (icomp, dtend);
g_clear_object (&dtstart);
g_clear_object (&dtend);
if (!e_client_get_backend_property_sync (E_CLIENT (client), CLIENT_BACKEND_PROPERTY_REVISION,
&revision_before, NULL, &error))
g_error ("Error getting calendar revision: %s", error->message);
if (!e_cal_client_create_object_sync (client, icomp, E_CAL_OPERATION_FLAG_NONE, &uid, NULL, &error))
g_error ("Error creating object: %s", error->message);
if (!e_cal_client_remove_object_sync (client, uid, NULL, E_CAL_OBJ_MOD_ALL, E_CAL_OPERATION_FLAG_NONE, NULL, &error))
g_error ("Error removing created object: %s", error->message);
if (!e_client_get_backend_property_sync (E_CLIENT (client), CLIENT_BACKEND_PROPERTY_REVISION,
&revision_after, NULL, &error))
g_error ("Error getting calendar revision: %s", error->message);
/* Sometimes, kind of rarely, the D-Bus property change is not delivered on time,
thus give it some time to be received and processed. */
if (g_strcmp0 (revision_before, revision_after) == 0) {
g_message (" D-Bus property 'revision' change not received yet, trying to wait a bit");
g_usleep (G_USEC_PER_SEC / 2);
g_clear_pointer (&revision_after, g_free);
if (!e_client_get_backend_property_sync (E_CLIENT (client), CLIENT_BACKEND_PROPERTY_REVISION, &revision_after, NULL, &error))
g_error ("Error getting calendar revision: %s", error->message);
}
g_assert (revision_before);
g_assert (revision_after);
g_assert_cmpstr (revision_before, !=, revision_after);
g_message (
"Passed cycle, revision before '%s' revision after '%s'",
revision_before, revision_after);
g_free (revision_before);
g_free (revision_after);
g_free (uid);
g_object_unref (icomp);
}
static void
test_get_revision (ETestServerFixture *fixture,
gconstpointer user_data)
{
ECalClient *cal_client;
gint i;
cal_client = E_TEST_SERVER_UTILS_SERVICE (fixture, ECalClient);
/* Test that modifications make the revisions increment */
for (i = 0; i < CYCLES; i++)
get_revision_compare_cycle (cal_client);
}
gint
main (gint argc,
gchar **argv)
{
g_test_init (&argc, &argv, NULL);
g_test_bug_base ("http://bugzilla.gnome.org/");
g_test_add (
"/ECalClient/GetRevision",
ETestServerFixture,
&cal_closure,
e_test_server_utils_setup,
test_get_revision,
e_test_server_utils_teardown);
return e_test_server_utils_run (argc, argv);
}
|