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 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
/*
* 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 <libecal/libecal.h>
#include "e-test-server-utils.h"
#define TZID_NEW "XYZ"
#define TZNAME_NEW "Ex Wye Zee"
static ETestServerClosure cal_closure_sync =
{ E_TEST_SERVER_CALENDAR, NULL, E_CAL_CLIENT_SOURCE_TYPE_EVENTS, FALSE, NULL, FALSE };
static ETestServerClosure cal_closure_async =
{ E_TEST_SERVER_CALENDAR, NULL, E_CAL_CLIENT_SOURCE_TYPE_EVENTS, FALSE, NULL, TRUE };
static void
test_add_timezone_sync (ETestServerFixture *fixture,
gconstpointer user_data)
{
ECalClient *cal_client;
ICalProperty *property;
ICalComponent *component;
ICalTimezone *zone;
ICalTimezone *zone2 = NULL;
GError *error = NULL;
/* Build up new timezone */
component = i_cal_component_new_vtimezone ();
property = i_cal_property_new_tzid (TZID_NEW);
i_cal_component_take_property (component, property);
property = i_cal_property_new_tzname (TZNAME_NEW);
i_cal_component_take_property (component, property);
zone = i_cal_timezone_new ();
g_assert_true (i_cal_timezone_set_component (zone, component));
g_object_unref (component);
cal_client = E_TEST_SERVER_UTILS_SERVICE (fixture, ECalClient);
if (!e_cal_client_add_timezone_sync (cal_client, zone, NULL, &error))
g_error ("add timezone sync: %s", error->message);
if (!e_cal_client_get_timezone_sync (cal_client, TZID_NEW, &zone2, NULL, &error))
g_error ("get timezone sync: %s", error->message);
if (!zone2)
g_error ("Failure: get timezone returned NULL");
g_assert_cmpstr (i_cal_timezone_get_tzid (zone), ==, i_cal_timezone_get_tzid (zone2));
g_assert_cmpstr (i_cal_timezone_get_tznames (zone), ==, i_cal_timezone_get_tznames (zone2));
g_object_unref (zone);
}
typedef struct {
ICalTimezone *zone;
GMainLoop *loop;
} AsyncData;
static void
async_read_result_ready (GObject *source_object,
GAsyncResult *result,
gpointer user_data)
{
ECalClient *cal_client;
GError *error = NULL;
AsyncData *data = (AsyncData *) user_data;
ICalTimezone *zone1 = data->zone, *zone2 = NULL;
cal_client = E_CAL_CLIENT (source_object);
if (!e_cal_client_get_timezone_finish (cal_client, result, &zone2, &error))
g_error ("get timezone finish: %s", error->message);
if (!zone2)
g_error ("Failure: get timezone returned NULL");
g_assert_cmpstr (i_cal_timezone_get_tzid (zone1), ==, i_cal_timezone_get_tzid (zone2));
g_assert_cmpstr (i_cal_timezone_get_tznames (zone1), ==, i_cal_timezone_get_tznames (zone2));
g_main_loop_quit (data->loop);
}
static void
async_write_result_ready (GObject *source_object,
GAsyncResult *result,
gpointer user_data)
{
ECalClient *cal_client;
GError *error = NULL;
g_return_if_fail (user_data != NULL);
cal_client = E_CAL_CLIENT (source_object);
if (!e_cal_client_add_timezone_finish (cal_client, result, &error))
g_error ("add timezone finish: %s", error->message);
e_cal_client_get_timezone (cal_client, TZID_NEW, NULL, async_read_result_ready, user_data);
}
static void
test_add_timezone_async (ETestServerFixture *fixture,
gconstpointer user_data)
{
ECalClient *cal_client;
ICalProperty *property;
ICalComponent *component;
ICalTimezone *zone;
AsyncData data;
/* Build up new timezone */
component = i_cal_component_new_vtimezone ();
property = i_cal_property_new_tzid (TZID_NEW);
i_cal_component_take_property (component, property);
property = i_cal_property_new_tzname (TZNAME_NEW);
i_cal_component_take_property (component, property);
zone = i_cal_timezone_new ();
g_assert_true (i_cal_timezone_set_component (zone, component));
g_object_unref (component);
cal_client = E_TEST_SERVER_UTILS_SERVICE (fixture, ECalClient);
data.zone = zone;
data.loop = fixture->loop;
e_cal_client_add_timezone (cal_client, zone, NULL, async_write_result_ready, &data);
g_main_loop_run (fixture->loop);
g_object_unref (zone);
}
gint
main (gint argc,
gchar **argv)
{
g_test_init (&argc, &argv, NULL);
g_test_bug_base ("http://bugzilla.gnome.org/");
g_test_add (
"/ECalClient/AddTimezone/Sync",
ETestServerFixture,
&cal_closure_sync,
e_test_server_utils_setup,
test_add_timezone_sync,
e_test_server_utils_teardown);
g_test_add (
"/ECalClient/AddTimezone/Async",
ETestServerFixture,
&cal_closure_async,
e_test_server_utils_setup,
test_add_timezone_async,
e_test_server_utils_teardown);
return e_test_server_utils_run (argc, argv);
}
|