[evolution-data-server/openismus-work-master: 12/18] Added test case ensuring that new contacts have thier UID preserved.



commit c040fae11114b5ef0c1b44b9a200390435683344
Author: Tristan Van Berkom <tristanvb openismus com>
Date:   Fri Jan 18 15:55:32 2013 +0900

    Added test case ensuring that new contacts have thier UID preserved.
    
    Asserts both that newly added contacts preserve the assigned UID and
    also that 2 contacts with the same UID cannot be added.

 tests/libebook/client/Makefile.am                |    3 +
 tests/libebook/client/test-client-preserve-uid.c |  104 ++++++++++++++++++++++
 2 files changed, 107 insertions(+), 0 deletions(-)
---
diff --git a/tests/libebook/client/Makefile.am b/tests/libebook/client/Makefile.am
index ff44d0f..1836472 100644
--- a/tests/libebook/client/Makefile.am
+++ b/tests/libebook/client/Makefile.am
@@ -29,6 +29,7 @@ libclient_test_utils_la_LIBADD = 				\
 TESTS =								\
 	test-client-refresh					\
 	test-client-add-contact					\
+	test-client-preserve-uid				\
 	test-client-get-contact					\
 	test-client-get-contact-uids				\
 	test-client-custom-summary				\
@@ -82,6 +83,8 @@ test_client_async_LDADD=$(TEST_LIBS)
 test_client_async_CPPFLAGS=$(TEST_CPPFLAGS)
 test_client_add_contact_LDADD=$(TEST_LIBS)
 test_client_add_contact_CPPFLAGS=$(TEST_CPPFLAGS)
+test_client_preserve_uid_LDADD=$(TEST_LIBS)
+test_client_preserve_uid_CPPFLAGS=$(TEST_CPPFLAGS)
 test_client_examine_LDADD=$(TEST_LIBS)
 test_client_examine_CPPFLAGS=$(TEST_CPPFLAGS)
 test_client_get_contact_LDADD=$(TEST_LIBS)
diff --git a/tests/libebook/client/test-client-preserve-uid.c b/tests/libebook/client/test-client-preserve-uid.c
new file mode 100644
index 0000000..76db4d1
--- /dev/null
+++ b/tests/libebook/client/test-client-preserve-uid.c
@@ -0,0 +1,104 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/*
+ * Copyright Copyright (C) 2013 Intel Corporation
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of version 2 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
+ * 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, write to the
+ * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ *
+ * Authors: Tristan Van Berkom <tristanvb openismus com>
+ */
+
+#include <stdlib.h>
+#include <libebook/libebook.h>
+
+#include "client-test-utils.h"
+#include "e-test-server-utils.h"
+
+#define TEST_CONTACT_UID "old-mac-donald-had-a-farm"
+
+static ETestServerClosure book_closure = { E_TEST_SERVER_ADDRESS_BOOK, NULL, 0 };
+
+static void
+test_preserve_uid (ETestServerFixture *fixture,
+		   gconstpointer       user_data)
+{
+  EBookClient *book_client;
+  EContact    *contact;
+  gchar       *vcard;
+  gchar       *uid = NULL;
+  GError      *error = NULL;
+
+  book_client = E_TEST_SERVER_UTILS_SERVICE (fixture, EBookClient);
+
+  vcard   = new_vcard_from_test_case ("simple-1");
+  contact = e_contact_new_from_vcard (vcard);
+  g_free (vcard);
+
+  e_contact_set (contact, E_CONTACT_UID, TEST_CONTACT_UID);
+
+  if (!e_book_client_add_contact_sync (book_client, contact, &uid, NULL, &error))
+    g_error ("Failed to add contact: %s", error->message);
+
+  g_assert_cmpstr (uid, ==, TEST_CONTACT_UID);
+  g_object_unref (contact);
+  g_free (uid);
+}
+
+static void
+test_uid_conflict (ETestServerFixture *fixture,
+		   gconstpointer       user_data)
+{
+  EBookClient *book_client;
+  EContact    *contact;
+  gchar       *vcard;
+  GError      *error = NULL;
+
+  book_client = E_TEST_SERVER_UTILS_SERVICE (fixture, EBookClient);
+
+  /* Hijack the first test case, ensure we already have the contact added */
+  test_preserve_uid (fixture, user_data);
+
+  vcard   = new_vcard_from_test_case ("simple-2");
+  contact = e_contact_new_from_vcard (vcard);
+  g_free (vcard);
+
+  e_contact_set (contact, E_CONTACT_UID, TEST_CONTACT_UID);
+
+  if (!e_book_client_add_contact_sync (book_client, contact, NULL, NULL, &error))
+    {
+      g_assert (g_error_matches (error, E_CLIENT_ERROR, E_CLIENT_ERROR_QUERY_REFUSED));
+      g_error_free (error);
+    }
+  else
+    g_error ("Succeeded in adding two contacts with the same UID !");
+
+  g_object_unref (contact);
+}
+
+gint
+main (gint argc,
+      gchar **argv)
+{
+#if !GLIB_CHECK_VERSION (2, 35, 1)
+	g_type_init ();
+#endif
+	g_test_init (&argc, &argv, NULL);
+
+	g_test_add ("/EBookClient/AddContact/PreserveUid", ETestServerFixture, &book_closure,
+		    e_test_server_utils_setup, test_preserve_uid, e_test_server_utils_teardown);
+	g_test_add ("/EBookClient/AddContact/UidConflict", ETestServerFixture, &book_closure,
+		    e_test_server_utils_setup, test_uid_conflict, e_test_server_utils_teardown);
+
+	return e_test_server_utils_run ();
+}



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]