[evolution-data-server/openismus-work-master: 3/11] Added test-client-suppress-notifications.c test
- From: Tristan Van Berkom <tvb src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-data-server/openismus-work-master: 3/11] Added test-client-suppress-notifications.c test
- Date: Tue, 26 Jul 2011 23:44:06 +0000 (UTC)
commit 00b9f3f1dcf9fcd45e7b1d1c2e79c3f3793d8744
Author: Tristan Van Berkom <tristan van berkom gmail com>
Date: Fri Jun 24 21:50:14 2011 -0400
Added test-client-suppress-notifications.c test
Added a test that asserts e_book_client_view_set_flags() apis are
working and that the backend bahaves properly when the default
E_BOOK_CLIENT_VIEW_NOTIFY_INITIAL flag is unset.
tests/libebook/client/Makefile.am | 3 +
.../client/test-client-suppress-notifications.c | 216 ++++++++++++++++++++
2 files changed, 219 insertions(+), 0 deletions(-)
---
diff --git a/tests/libebook/client/Makefile.am b/tests/libebook/client/Makefile.am
index 9f1b832..ef2f3c4 100644
--- a/tests/libebook/client/Makefile.am
+++ b/tests/libebook/client/Makefile.am
@@ -25,6 +25,7 @@ TESTS = \
test-client-add-contact \
test-client-get-contact \
test-client-get-view \
+ test-client-suppress-notifications \
test-client-modify-contact \
test-client-remove-contact \
test-client-remove-contact-by-uid \
@@ -68,6 +69,8 @@ test_client_get_contact_LDADD=$(TEST_LIBS)
test_client_get_contact_CPPFLAGS=$(TEST_CPPFLAGS)
test_client_get_view_LDADD=$(TEST_LIBS)
test_client_get_view_CPPFLAGS=$(TEST_CPPFLAGS)
+test_client_suppress_notifications_LDADD=$(TEST_LIBS)
+test_client_suppress_notifications_CPPFLAGS=$(TEST_CPPFLAGS)
test_client_modify_contact_LDADD=$(TEST_LIBS)
test_client_modify_contact_CPPFLAGS=$(TEST_CPPFLAGS)
test_client_refresh_LDADD=$(TEST_LIBS)
diff --git a/tests/libebook/client/test-client-suppress-notifications.c b/tests/libebook/client/test-client-suppress-notifications.c
new file mode 100644
index 0000000..80b9030
--- /dev/null
+++ b/tests/libebook/client/test-client-suppress-notifications.c
@@ -0,0 +1,216 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+
+#include <stdlib.h>
+#include <libebook/e-book-client.h>
+#include <libebook/e-book-query.h>
+
+#include "client-test-utils.h"
+
+#define NOTIFICATION_WAIT 2000
+
+static gboolean loading_view;
+
+static void
+add_contact (EBookClient *book_client)
+{
+ add_contact_from_test_case_verify (book_client, "name-only", NULL);
+}
+
+static gboolean
+setup_book (EBookClient **book_client)
+{
+ GError *error = NULL;
+
+ g_return_val_if_fail (book_client != NULL, FALSE);
+
+ *book_client = new_temp_client (NULL);
+ g_return_val_if_fail (*book_client != NULL, FALSE);
+
+ if (!e_client_open_sync (E_CLIENT (*book_client), FALSE, NULL, &error)) {
+ report_error ("client open sync", &error);
+ g_object_unref (*book_client);
+ return FALSE;
+ }
+
+ if (!add_contact_from_test_case_verify (*book_client, "simple-1", NULL) ||
+ !add_contact_from_test_case_verify (*book_client, "simple-2", NULL)) {
+ g_object_unref (*book_client);
+ return FALSE;
+ }
+
+ return TRUE;
+}
+
+static void
+finish_test (EBookClientView *view)
+{
+ e_book_client_view_stop (view, NULL);
+ g_object_unref (view);
+
+ stop_main_loop (0);
+}
+
+static void
+objects_added (EBookClientView *view, const GSList *contacts)
+{
+ const GSList *l;
+
+ /* We quit the mainloop and the test succeeds if we get the notification
+ * for the contact we add after loading the view completes */
+ for (l = contacts; l; l = l->next) {
+ print_email (l->data);
+ }
+
+ if (loading_view)
+ g_error ("Expected no contact additions while loading the view");
+ else {
+ finish_test (view);
+ }
+
+}
+
+static void
+objects_removed (EBookClientView *view, const GSList *ids)
+{
+ const GSList *l;
+
+ if (loading_view)
+ g_error ("Expected no contact removals while loading the view");
+
+ for (l = ids; l; l = l->next) {
+ printf (" Removed contact: %s\n", (gchar *) l->data);
+ }
+}
+
+static void
+complete (EBookClientView *view, const GError *error)
+{
+ /* Now add a contact and assert that we received notification */
+ loading_view = FALSE;
+ add_contact (e_book_client_view_get_client (view));
+}
+
+static void
+setup_and_start_view (EBookClientView *view)
+{
+ GError *error = NULL;
+
+ g_signal_connect (view, "objects-added", G_CALLBACK (objects_added), NULL);
+ g_signal_connect (view, "objects-removed", G_CALLBACK (objects_removed), NULL);
+ g_signal_connect (view, "complete", G_CALLBACK (complete), NULL);
+
+ e_book_client_view_set_fields_of_interest (view, NULL, &error);
+ if (error)
+ report_error ("set fields of interest", &error);
+
+ /* Set flags to 0, i.e. unflag E_BOOK_VIEW_NOTIFY_INITIAL */
+ e_book_client_view_set_flags (view, 0, &error);
+ if (error)
+ report_error ("set view flags", &error);
+ loading_view = TRUE;
+
+ e_book_client_view_start (view, &error);
+ if (error)
+ report_error ("start view", &error);
+
+}
+
+static void
+get_view_cb (GObject *source_object, GAsyncResult *result, gpointer user_data)
+{
+ EBookClientView *view;
+ GError *error = NULL;
+
+ if (!e_book_client_get_view_finish (E_BOOK_CLIENT (source_object), result, &view, &error)) {
+ report_error ("get view finish", &error);
+ stop_main_loop (1);
+
+ return;
+ }
+
+ setup_and_start_view (view);
+}
+
+static gpointer
+call_get_view (gpointer user_data)
+{
+ EBookQuery *query;
+ EBookClient *book_client = user_data;
+ gchar *sexp;
+
+ g_return_val_if_fail (book_client != NULL, NULL);
+ g_return_val_if_fail (E_IS_BOOK_CLIENT (book_client), NULL);
+
+ query = e_book_query_any_field_contains ("");
+ sexp = e_book_query_to_string (query);
+ e_book_query_unref (query);
+
+ e_book_client_get_view (book_client, sexp, NULL, get_view_cb, NULL);
+
+ g_free (sexp);
+
+ return NULL;
+}
+
+gint
+main (gint argc, gchar **argv)
+{
+ EBookClient *book_client;
+ EBookQuery *query;
+ EBookClientView *view;
+ gchar *sexp;
+ GError *error = NULL;
+
+ main_initialize ();
+
+ /*
+ * Sync version
+ */
+ if (!setup_book (&book_client))
+ return 1;
+
+ query = e_book_query_any_field_contains ("");
+ sexp = e_book_query_to_string (query);
+ e_book_query_unref (query);
+ if (!e_book_client_get_view_sync (book_client, sexp, &view, NULL, &error)) {
+ report_error ("get book view sync", &error);
+ g_free (sexp);
+ g_object_unref (book_client);
+
+ return 1;
+ }
+
+ g_free (sexp);
+
+ setup_and_start_view (view);
+
+ start_main_loop (NULL, NULL);
+
+ if (!e_client_remove_sync (E_CLIENT (book_client), NULL, &error)) {
+ report_error ("client remove sync", &error);
+ g_object_unref (book_client);
+
+ return 1;
+ }
+
+ g_object_unref (book_client);
+
+ /*
+ * Async version
+ */
+ if (!setup_book (&book_client))
+ return 1;
+
+ start_in_idle_with_main_loop (call_get_view, book_client);
+
+ if (!e_client_remove_sync (E_CLIENT (book_client), NULL, &error)) {
+ report_error ("client remove sync", &error);
+ g_object_unref (book_client);
+
+ return 1;
+ }
+
+ g_object_unref (book_client);
+
+ return get_main_loop_stop_result ();
+}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]