summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <withnall@endlessm.com>2017-02-03 16:43:22 +0000
committerPhilip Withnall <philip@tecnocode.co.uk>2017-03-05 18:44:10 +0000
commitbd82f79dc283a3fd99157d2904828d8e92d09c5f (patch)
tree1d33426e876d1ac2d660e4c53f56508e3d035284
parente013e1342544998b4528f938007d20e40d264b7d (diff)
downloadlibgdata-bd82f79dc283a3fd99157d2904828d8e92d09c5f.tar.gz
calendar: Update query parameters to v3 of the API
Somehow the URI parameters in GDataCalendarQuery did not get updated with the rest of the code to use the v3 API, meaning that all non-default query options have been broken since May 2015. Update them to the v3 parameters, which maintains almost the same functionality as before. The following properties are no longer supported in any form on the server, and have been deprecated: • GDataCalendarQuery:recurrence-expansion-start • GDataCalendarQuery:recurrence-expansion-end • GDataCalendarQuery:sort-order
-rw-r--r--gdata/services/calendar/gdata-calendar-query.c136
-rw-r--r--gdata/services/calendar/gdata-calendar-query.h16
-rw-r--r--gdata/tests/calendar.c34
3 files changed, 109 insertions, 77 deletions
diff --git a/gdata/services/calendar/gdata-calendar-query.c b/gdata/services/calendar/gdata-calendar-query.c
index ea16dc8a..a64960cd 100644
--- a/gdata/services/calendar/gdata-calendar-query.c
+++ b/gdata/services/calendar/gdata-calendar-query.c
@@ -1,7 +1,7 @@
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/*
* GData Client
- * Copyright (C) Philip Withnall 2009–2010 <philip@tecnocode.co.uk>
+ * Copyright (C) Philip Withnall 2009, 2010, 2017 <philip@tecnocode.co.uk>
*
* GData Client is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -50,7 +50,6 @@
* g_get_current_time (&current_time);
* query = gdata_calendar_query_new_with_limits ("party", current_time.tv_sec, current_time.tv_sec + 7 * 24 * 60 * 60);
* gdata_calendar_query_set_order_by (query, "lastmodified");
- * gdata_calendar_query_set_sort_order (query, "descending");
*
* /<!-- -->* Execute the query *<!-- -->/
* feed = gdata_calendar_service_query_events (service, calendar, query, NULL, NULL, NULL, &error);
@@ -99,8 +98,8 @@ struct _GDataCalendarQueryPrivate {
gint64 recurrence_expansion_end;
gboolean single_events;
gchar *sort_order; /* TODO: #defined values */
- gint64 start_min;
- gint64 start_max;
+ gint64 start_min; /* UNIX timestamp, seconds */
+ gint64 start_max; /* UNIX timestamp, seconds */
gchar *timezone;
guint max_attendees;
gboolean show_deleted;
@@ -165,23 +164,27 @@ gdata_calendar_query_class_init (GDataCalendarQueryClass *klass)
* GDataCalendarQuery:recurrence-expansion-start:
*
* Specifies the beginning of the time period to expand recurring events for, inclusive.
+ *
+ * Deprecated: 0.17.7: Use #GDataCalendarQuery:single-events instead, as this is no longer supported on the server.
*/
g_object_class_install_property (gobject_class, PROP_RECURRENCE_EXPANSION_START,
g_param_spec_int64 ("recurrence-expansion-start",
"Recurrence expansion start", "Specifies start of period to expand recurrences for.",
-1, G_MAXINT64, -1,
- G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
+ G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_DEPRECATED));
/**
* GDataCalendarQuery:recurrence-expansion-end:
*
* Specifies the end of the time period to expand recurring events for, exclusive.
+ *
+ * Deprecated: 0.17.7: Use #GDataCalendarQuery:single-events instead, as this is no longer supported on the server.
*/
g_object_class_install_property (gobject_class, PROP_RECURRENCE_EXPANSION_END,
g_param_spec_int64 ("recurrence-expansion-end",
"Recurrence expansion end", "Specifies end of period to expand recurrences for.",
-1, G_MAXINT64, -1,
- G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
+ G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_DEPRECATED));
/**
* GDataCalendarQuery:single-events:
@@ -199,12 +202,16 @@ gdata_calendar_query_class_init (GDataCalendarQueryClass *klass)
*
* Specifies direction of sorting. Supported values are <literal>ascending</literal> and
* <literal>descending</literal>.
+ *
+ * By default, results are returned in ascending order.
+ *
+ * Deprecated: 0.17.7: Manually sort the results after retrieving them, as this is no longer supported on the server.
*/
g_object_class_install_property (gobject_class, PROP_SORT_ORDER,
g_param_spec_string ("sort-order",
"Sort order", "Specifies direction of sorting.",
NULL,
- G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
+ G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_DEPRECATED));
/**
* GDataCalendarQuery:start-min:
@@ -212,7 +219,7 @@ gdata_calendar_query_class_init (GDataCalendarQueryClass *klass)
* Together with #GDataCalendarQuery:start-max, creates a timespan such that only events within the timespan are returned.
*
* #GDataCalendarQuery:start-min is inclusive, while #GDataCalendarQuery:start-max is exclusive. Events that overlap the range are
- * included.
+ * included. Both are specified in seconds since the UNIX epoch.
*
* If not specified, the default #GDataCalendarQuery:start-min is <literal>1970-01-01</literal>.
*/
@@ -228,7 +235,7 @@ gdata_calendar_query_class_init (GDataCalendarQueryClass *klass)
* Together with #GDataCalendarQuery:start-min, creates a timespan such that only events within the timespan are returned
*
* #GDataCalendarQuery:start-min is inclusive, while #GDataCalendarQuery:start-max is exclusive. Events that overlap the range are
- * included.
+ * included. Both are specified in seconds since the UNIX epoch.
*
* If not specified, the default #GDataCalendarQuery:start-max is <literal>2031-01-01</literal>.
*/
@@ -365,16 +372,22 @@ gdata_calendar_query_set_property (GObject *object, guint property_id, const GVa
gdata_calendar_query_set_order_by (self, g_value_get_string (value));
break;
case PROP_RECURRENCE_EXPANSION_START:
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
gdata_calendar_query_set_recurrence_expansion_start (self, g_value_get_int64 (value));
+G_GNUC_END_IGNORE_DEPRECATIONS
break;
case PROP_RECURRENCE_EXPANSION_END:
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
gdata_calendar_query_set_recurrence_expansion_end (self, g_value_get_int64 (value));
+G_GNUC_END_IGNORE_DEPRECATIONS
break;
case PROP_SINGLE_EVENTS:
gdata_calendar_query_set_single_events (self, g_value_get_boolean (value));
break;
case PROP_SORT_ORDER:
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
gdata_calendar_query_set_sort_order (self, g_value_get_string (value));
+G_GNUC_END_IGNORE_DEPRECATIONS
break;
case PROP_START_MIN:
gdata_calendar_query_set_start_min (self, g_value_get_int64 (value));
@@ -398,6 +411,21 @@ gdata_calendar_query_set_property (GObject *object, guint property_id, const GVa
}
}
+/* Convert the v2 order-by values to the v3 orderBy values:
+ * - https://developers.google.com/google-apps/calendar/v3/reference/events/list#orderBy
+ * - There is no reference for v2 any more.
+ */
+static const gchar *
+order_by_to_v3 (const gchar *order_by)
+{
+ if (g_strcmp0 (order_by, "lastmodified") == 0)
+ return "updated";
+ else if (g_strcmp0 (order_by, "starttime") == 0)
+ return "startTime";
+ else
+ return order_by;
+}
+
static void
get_query_uri (GDataQuery *self, const gchar *feed_uri, GString *query_uri, gboolean *params_started)
{
@@ -408,65 +436,49 @@ get_query_uri (GDataQuery *self, const gchar *feed_uri, GString *query_uri, gboo
/* Chain up to the parent class */
GDATA_QUERY_CLASS (gdata_calendar_query_parent_class)->get_query_uri (self, feed_uri, query_uri, params_started);
- APPEND_SEP
- if (priv->future_events == TRUE)
- g_string_append (query_uri, "futureevents=true");
- else
- g_string_append (query_uri, "futureevents=false");
-
- if (priv->order_by != NULL) {
- APPEND_SEP
- g_string_append (query_uri, "orderby=");
- g_string_append_uri_escaped (query_uri, priv->order_by, NULL, FALSE);
- }
-
- if (priv->recurrence_expansion_start != -1) {
- gchar *recurrence_expansion_start;
-
+ if (gdata_query_get_max_results (GDATA_QUERY (self)) != 0) {
APPEND_SEP
- g_string_append (query_uri, "recurrence-expansion-start=");
- recurrence_expansion_start = gdata_parser_int64_to_iso8601 (priv->recurrence_expansion_start);
- g_string_append (query_uri, recurrence_expansion_start);
- g_free (recurrence_expansion_start);
+ g_string_append_printf (query_uri, "maxResults=%u",
+ gdata_query_get_max_results (GDATA_QUERY (self)));
}
- if (priv->recurrence_expansion_end != -1) {
- gchar *recurrence_expansion_end;
-
+ if (priv->order_by != NULL) {
APPEND_SEP
- g_string_append (query_uri, "recurrence-expansion-end=");
- recurrence_expansion_end = gdata_parser_int64_to_iso8601 (priv->recurrence_expansion_end);
- g_string_append (query_uri, recurrence_expansion_end);
- g_free (recurrence_expansion_end);
+ g_string_append (query_uri, "orderBy=");
+ g_string_append_uri_escaped (query_uri,
+ order_by_to_v3 (priv->order_by), NULL, FALSE);
}
+ /* Convert the deprecated recurrence-expansion-* properties into single-events. */
APPEND_SEP
- if (priv->single_events == TRUE)
- g_string_append (query_uri, "singleevents=true");
+ if (priv->single_events == TRUE ||
+ priv->recurrence_expansion_start >= 0 ||
+ priv->recurrence_expansion_end >= 0)
+ g_string_append (query_uri, "singleEvents=true");
else
- g_string_append (query_uri, "singleevents=false");
-
- if (priv->sort_order != NULL) {
- APPEND_SEP
- g_string_append (query_uri, "sortorder=");
- g_string_append_uri_escaped (query_uri, priv->sort_order, NULL, FALSE);
- }
+ g_string_append (query_uri, "singleEvents=false");
if (priv->start_min != -1) {
gchar *start_min;
+ gint64 start_min_time;
+
+ if (priv->future_events)
+ start_min_time = g_get_real_time () / G_USEC_PER_SEC;
+ else
+ start_min_time = priv->start_min;
APPEND_SEP
- g_string_append (query_uri, "start-min=");
- start_min = gdata_parser_int64_to_iso8601 (priv->start_min);
+ g_string_append (query_uri, "timeMin=");
+ start_min = gdata_parser_int64_to_iso8601 (start_min_time);
g_string_append (query_uri, start_min);
g_free (start_min);
}
- if (priv->start_max != -1) {
+ if (priv->start_max != -1 && !priv->future_events) {
gchar *start_max;
APPEND_SEP
- g_string_append (query_uri, "start-max=");
+ g_string_append (query_uri, "timeMax=");
start_max = gdata_parser_int64_to_iso8601 (priv->start_max);
g_string_append (query_uri, start_max);
g_free (start_max);
@@ -474,20 +486,20 @@ get_query_uri (GDataQuery *self, const gchar *feed_uri, GString *query_uri, gboo
if (priv->timezone != NULL) {
APPEND_SEP
- g_string_append (query_uri, "ctz=");
+ g_string_append (query_uri, "timeZone=");
g_string_append_uri_escaped (query_uri, priv->timezone, NULL, FALSE);
}
if (priv->max_attendees > 0) {
APPEND_SEP
- g_string_append_printf (query_uri, "max-attendees=%u", priv->max_attendees);
+ g_string_append_printf (query_uri, "maxAttendees=%u", priv->max_attendees);
}
APPEND_SEP
if (priv->show_deleted == TRUE) {
- g_string_append (query_uri, "showdeleted=true");
+ g_string_append (query_uri, "showDeleted=true");
} else {
- g_string_append (query_uri, "showdeleted=false");
+ g_string_append (query_uri, "showDeleted=false");
}
}
@@ -512,7 +524,7 @@ gdata_calendar_query_new (const gchar *q)
* @start_max: an ending time for the event period, or -1
*
* Creates a new #GDataCalendarQuery with its #GDataQuery:q property set to @q, and the time limits @start_min and @start_max
- * applied.
+ * applied (both in seconds since the UNIX epoch).
*
* Return value: a new #GDataCalendarQuery
*/
@@ -603,6 +615,7 @@ gdata_calendar_query_set_order_by (GDataCalendarQuery *self, const gchar *order_
* Gets the #GDataCalendarQuery:recurrence-expansion-start property. If the property is unset, <code class="literal">-1</code> will be returned.
*
* Return value: the UNIX timestamp for the recurrence-expansion-start property, or <code class="literal">-1</code>
+ * Deprecated: 0.17.7: Use #GDataCalendarQuery:single-events instead, as this is no longer supported on the server.
*/
gint64
gdata_calendar_query_get_recurrence_expansion_start (GDataCalendarQuery *self)
@@ -620,6 +633,8 @@ gdata_calendar_query_get_recurrence_expansion_start (GDataCalendarQuery *self)
* to the new time/date, @start.
*
* Set @start to <code class="literal">-1</code> to unset the property in the query URI.
+ *
+ * Deprecated: 0.17.7: Use #GDataCalendarQuery:single-events instead, as this is no longer supported on the server.
*/
void
gdata_calendar_query_set_recurrence_expansion_start (GDataCalendarQuery *self, gint64 start)
@@ -641,6 +656,8 @@ gdata_calendar_query_set_recurrence_expansion_start (GDataCalendarQuery *self, g
* Gets the #GDataCalendarQuery:recurrence-expansion-end property. If the property is unset, <code class="literal">-1</code> will be returned.
*
* Return value: the UNIX timestamp for the recurrence-expansion-end property, or <code class="literal">-1</code>
+ *
+ * Deprecated: 0.17.7: Use #GDataCalendarQuery:single-events instead, as this is no longer supported on the server.
*/
gint64
gdata_calendar_query_get_recurrence_expansion_end (GDataCalendarQuery *self)
@@ -658,6 +675,8 @@ gdata_calendar_query_get_recurrence_expansion_end (GDataCalendarQuery *self)
* to the new time/date, @end.
*
* Set @end to <code class="literal">-1</code> to unset the property in the query URI.
+ *
+ * Deprecated: 0.17.7: Use #GDataCalendarQuery:single-events instead, as this is no longer supported on the server.
*/
void
gdata_calendar_query_set_recurrence_expansion_end (GDataCalendarQuery *self, gint64 end)
@@ -712,6 +731,7 @@ gdata_calendar_query_set_single_events (GDataCalendarQuery *self, gboolean singl
* Gets the #GDataCalendarQuery:sort-order property.
*
* Return value: the sort order property, or %NULL if it is unset
+ * Deprecated: 0.17.7: Manually sort the results after retrieving them, as this is no longer supported on the server.
*/
const gchar *
gdata_calendar_query_get_sort_order (GDataCalendarQuery *self)
@@ -728,6 +748,8 @@ gdata_calendar_query_get_sort_order (GDataCalendarQuery *self)
* Sets the #GDataCalendarQuery:sort-order property of the #GDataCalendarQuery to the new sort order string, @sort_order.
*
* Set @sort_order to %NULL to unset the property in the query URI.
+ *
+ * Deprecated: 0.17.7: Manually sort the results after retrieving them, as this is no longer supported on the server.
*/
void
gdata_calendar_query_set_sort_order (GDataCalendarQuery *self, const gchar *sort_order)
@@ -748,7 +770,7 @@ gdata_calendar_query_set_sort_order (GDataCalendarQuery *self, const gchar *sort
*
* Gets the #GDataCalendarQuery:start-min property. If the property is unset, <code class="literal">-1</code> will be returned.
*
- * Return value: the UNIX timestamp for the start-min property, or <code class="literal">-1</code>
+ * Return value: the UNIX timestamp (in seconds) for the start-min property, or <code class="literal">-1</code>
*/
gint64
gdata_calendar_query_get_start_min (GDataCalendarQuery *self)
@@ -760,7 +782,7 @@ gdata_calendar_query_get_start_min (GDataCalendarQuery *self)
/**
* gdata_calendar_query_set_start_min:
* @self: a #GDataCalendarQuery
- * @start_min: a new minimum start time, or <code class="literal">-1</code>
+ * @start_min: a new minimum start time (in seconds since the UNIX epoch), or <code class="literal">-1</code>
*
* Sets the #GDataCalendarQuery:start-min property of the #GDataCalendarQuery
* to the new time/date, @start_min.
@@ -786,7 +808,7 @@ gdata_calendar_query_set_start_min (GDataCalendarQuery *self, gint64 start_min)
*
* Gets the #GDataCalendarQuery:start-max property. If the property is unset, <code class="literal">-1</code> will be returned.
*
- * Return value: the UNIX timestamp for the start-max property, or <code class="literal">-1</code>
+ * Return value: the UNIX timestamp (in seconds) for the start-max property, or <code class="literal">-1</code>
*/
gint64
gdata_calendar_query_get_start_max (GDataCalendarQuery *self)
@@ -798,7 +820,7 @@ gdata_calendar_query_get_start_max (GDataCalendarQuery *self)
/**
* gdata_calendar_query_set_start_max:
* @self: a #GDataCalendarQuery
- * @start_max: a new maximum start time, or <code class="literal">-1</code>
+ * @start_max: a new maximum start time (in seconds since the UNIX epoch), or <code class="literal">-1</code>
*
* Sets the #GDataCalendarQuery:start-max property of the #GDataCalendarQuery
* to the new time/date, @start_max.
diff --git a/gdata/services/calendar/gdata-calendar-query.h b/gdata/services/calendar/gdata-calendar-query.h
index 8c89d7c8..0f3b32e8 100644
--- a/gdata/services/calendar/gdata-calendar-query.h
+++ b/gdata/services/calendar/gdata-calendar-query.h
@@ -71,14 +71,8 @@ gboolean gdata_calendar_query_get_future_events (GDataCalendarQuery *self) G_GNU
void gdata_calendar_query_set_future_events (GDataCalendarQuery *self, gboolean future_events);
const gchar *gdata_calendar_query_get_order_by (GDataCalendarQuery *self) G_GNUC_PURE;
void gdata_calendar_query_set_order_by (GDataCalendarQuery *self, const gchar *order_by);
-gint64 gdata_calendar_query_get_recurrence_expansion_start (GDataCalendarQuery *self);
-void gdata_calendar_query_set_recurrence_expansion_start (GDataCalendarQuery *self, gint64 start);
-gint64 gdata_calendar_query_get_recurrence_expansion_end (GDataCalendarQuery *self);
-void gdata_calendar_query_set_recurrence_expansion_end (GDataCalendarQuery *self, gint64 end);
gboolean gdata_calendar_query_get_single_events (GDataCalendarQuery *self) G_GNUC_PURE;
void gdata_calendar_query_set_single_events (GDataCalendarQuery *self, gboolean single_events);
-const gchar *gdata_calendar_query_get_sort_order (GDataCalendarQuery *self) G_GNUC_PURE;
-void gdata_calendar_query_set_sort_order (GDataCalendarQuery *self, const gchar *sort_order);
gint64 gdata_calendar_query_get_start_min (GDataCalendarQuery *self);
void gdata_calendar_query_set_start_min (GDataCalendarQuery *self, gint64 start_min);
gint64 gdata_calendar_query_get_start_max (GDataCalendarQuery *self);
@@ -90,6 +84,16 @@ void gdata_calendar_query_set_max_attendees (GDataCalendarQuery *self, guint max
gboolean gdata_calendar_query_show_deleted (GDataCalendarQuery *self) G_GNUC_PURE;
void gdata_calendar_query_set_show_deleted (GDataCalendarQuery *self, gboolean show_deleted);
+#ifndef LIBGDATA_DISABLE_DEPRECATED
+gint64 gdata_calendar_query_get_recurrence_expansion_start (GDataCalendarQuery *self) G_GNUC_DEPRECATED_FOR (gdata_calendar_query_get_single_events);
+void gdata_calendar_query_set_recurrence_expansion_start (GDataCalendarQuery *self, gint64 start) G_GNUC_DEPRECATED_FOR (gdata_calendar_query_set_single_events);
+gint64 gdata_calendar_query_get_recurrence_expansion_end (GDataCalendarQuery *self) G_GNUC_DEPRECATED_FOR (gdata_calendar_query_get_single_events);
+void gdata_calendar_query_set_recurrence_expansion_end (GDataCalendarQuery *self, gint64 end) G_GNUC_DEPRECATED_FOR (gdata_calendar_query_set_single_events);
+
+const gchar *gdata_calendar_query_get_sort_order (GDataCalendarQuery *self) G_GNUC_PURE G_GNUC_DEPRECATED;
+void gdata_calendar_query_set_sort_order (GDataCalendarQuery *self, const gchar *sort_order) G_GNUC_DEPRECATED_FOR (g_list_sort);
+#endif /* !LIBGDATA_DISABLE_DEPRECATED */
+
G_END_DECLS
#endif /* !GDATA_CALENDAR_QUERY_H */
diff --git a/gdata/tests/calendar.c b/gdata/tests/calendar.c
index 12b53f45..4d70d1b7 100644
--- a/gdata/tests/calendar.c
+++ b/gdata/tests/calendar.c
@@ -1103,12 +1103,14 @@ test_query_uri (void)
gchar *query_uri;
GDataCalendarQuery *query = gdata_calendar_query_new ("q");
- gdata_calendar_query_set_future_events (query, TRUE);
- g_assert (gdata_calendar_query_get_future_events (query) == TRUE);
+ /* Set to false or it will override our startMin below. */
+ gdata_calendar_query_set_future_events (query, FALSE);
+ g_assert (gdata_calendar_query_get_future_events (query) == FALSE);
gdata_calendar_query_set_order_by (query, "starttime");
g_assert_cmpstr (gdata_calendar_query_get_order_by (query), ==, "starttime");
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
g_time_val_from_iso8601 ("2009-04-17T15:00:00.000Z", &time_val);
gdata_calendar_query_set_recurrence_expansion_start (query, time_val.tv_sec);
_time = gdata_calendar_query_get_recurrence_expansion_start (query);
@@ -1118,12 +1120,15 @@ test_query_uri (void)
gdata_calendar_query_set_recurrence_expansion_end (query, time_val.tv_sec);
_time = gdata_calendar_query_get_recurrence_expansion_end (query);
g_assert_cmpint (_time, ==, time_val.tv_sec);
+G_GNUC_END_IGNORE_DEPRECATIONS
gdata_calendar_query_set_single_events (query, TRUE);
g_assert (gdata_calendar_query_get_single_events (query) == TRUE);
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
gdata_calendar_query_set_sort_order (query, "descending");
g_assert_cmpstr (gdata_calendar_query_get_sort_order (query), ==, "descending");
+G_GNUC_END_IGNORE_DEPRECATIONS
g_time_val_from_iso8601 ("2009-04-17T15:00:00.000Z", &time_val);
gdata_calendar_query_set_start_min (query, time_val.tv_sec);
@@ -1146,26 +1151,23 @@ test_query_uri (void)
/* Check the built query URI with a normal feed URI */
query_uri = gdata_query_get_query_uri (GDATA_QUERY (query), "http://example.com");
- g_assert_cmpstr (query_uri, ==, "http://example.com?q=q&futureevents=true&orderby=starttime&recurrence-expansion-start=2009-04-17T15:00:00Z"
- "&recurrence-expansion-end=2010-04-17T15:00:00Z&singleevents=true&sortorder=descending"
- "&start-min=2009-04-17T15:00:00Z&start-max=2010-04-17T15:00:00Z&ctz=America%2FLos_Angeles&max-attendees=15"
- "&showdeleted=true");
+ g_assert_cmpstr (query_uri, ==, "http://example.com?q=q&orderBy=startTime&singleEvents=true"
+ "&timeMin=2009-04-17T15:00:00Z&timeMax=2010-04-17T15:00:00Z&timeZone=America%2FLos_Angeles&maxAttendees=15"
+ "&showDeleted=true");
g_free (query_uri);
/* …with a feed URI with a trailing slash */
query_uri = gdata_query_get_query_uri (GDATA_QUERY (query), "http://example.com/");
- g_assert_cmpstr (query_uri, ==, "http://example.com/?q=q&futureevents=true&orderby=starttime&recurrence-expansion-start=2009-04-17T15:00:00Z"
- "&recurrence-expansion-end=2010-04-17T15:00:00Z&singleevents=true&sortorder=descending"
- "&start-min=2009-04-17T15:00:00Z&start-max=2010-04-17T15:00:00Z&ctz=America%2FLos_Angeles&max-attendees=15"
- "&showdeleted=true");
+ g_assert_cmpstr (query_uri, ==, "http://example.com/?q=q&orderBy=startTime&singleEvents=true"
+ "&timeMin=2009-04-17T15:00:00Z&timeMax=2010-04-17T15:00:00Z&timeZone=America%2FLos_Angeles&maxAttendees=15"
+ "&showDeleted=true");
g_free (query_uri);
/* …with a feed URI with pre-existing arguments */
query_uri = gdata_query_get_query_uri (GDATA_QUERY (query), "http://example.com/bar/?test=test&this=that");
- g_assert_cmpstr (query_uri, ==, "http://example.com/bar/?test=test&this=that&q=q&futureevents=true&orderby=starttime"
- "&recurrence-expansion-start=2009-04-17T15:00:00Z&recurrence-expansion-end=2010-04-17T15:00:00Z"
- "&singleevents=true&sortorder=descending&start-min=2009-04-17T15:00:00Z&start-max=2010-04-17T15:00:00Z"
- "&ctz=America%2FLos_Angeles&max-attendees=15&showdeleted=true");
+ g_assert_cmpstr (query_uri, ==, "http://example.com/bar/?test=test&this=that&q=q&orderBy=startTime"
+ "&singleEvents=true&timeMin=2009-04-17T15:00:00Z&timeMax=2010-04-17T15:00:00Z"
+ "&timeZone=America%2FLos_Angeles&maxAttendees=15&showDeleted=true");
g_free (query_uri);
g_object_unref (query);
@@ -1186,10 +1188,14 @@ test_query_etag (void)
CHECK_ETAG (gdata_calendar_query_set_future_events (query, FALSE))
CHECK_ETAG (gdata_calendar_query_set_order_by (query, "shizzle"))
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
CHECK_ETAG (gdata_calendar_query_set_recurrence_expansion_start (query, -1))
CHECK_ETAG (gdata_calendar_query_set_recurrence_expansion_end (query, -1))
+G_GNUC_END_IGNORE_DEPRECATIONS
CHECK_ETAG (gdata_calendar_query_set_single_events (query, FALSE))
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
CHECK_ETAG (gdata_calendar_query_set_sort_order (query, "shizzle"))
+G_GNUC_END_IGNORE_DEPRECATIONS
CHECK_ETAG (gdata_calendar_query_set_start_min (query, -1))
CHECK_ETAG (gdata_calendar_query_set_start_max (query, -1))
CHECK_ETAG (gdata_calendar_query_set_timezone (query, "about now"))