libebook: Add test for bulk methods
authorChristophe Dumez <christophe.dumez@intel.com>
Fri, 30 Sep 2011 14:08:14 +0000 (17:08 +0300)
committerChristophe Dumez <christophe.dumez@intel.com>
Sat, 8 Oct 2011 07:04:46 +0000 (10:04 +0300)
tests/libebook/Makefile.am
tests/libebook/test-bulk-methods.c [new file with mode: 0644]

index 5c4830a..1094f40 100644 (file)
@@ -96,6 +96,7 @@ noinst_PROGRAMS = \
        test-undefinedfield                     \
        test-untyped-phones                     \
        test-vcard-parsing                      \
+       test-bulk-methods                       \
        $(NULL)
 
 EXTRA_DIST = \
@@ -120,6 +121,8 @@ test_untyped_phones_LDADD=$(TEST_LIBS)
 test_untyped_phones_CPPFLAGS=$(TEST_CPPFLAGS)
 test_vcard_parsing_LDADD=$(TEST_LIBS)
 test_vcard_parsing_CPPFLAGS=$(TEST_CPPFLAGS)
+test_bulk_methods_LDADD=$(TEST_LIBS)
+test_bulk_methods_CPPFLAGS=$(TEST_CPPFLAGS)
 
 if !HAVE_E_BOOK_DISABLE_DEPRECATED
 
diff --git a/tests/libebook/test-bulk-methods.c b/tests/libebook/test-bulk-methods.c
new file mode 100644 (file)
index 0000000..e7d2a47
--- /dev/null
@@ -0,0 +1,102 @@
+#include <libebook/e-book-client.h>
+#include <libebook/e-book-query.h>
+#include <libebook/e-contact.h>
+
+#define BATCH_SIZE 50
+
+static gboolean
+check_string_in_slist (GSList *list,
+                       const gchar *str)
+{
+       const GSList *l;
+
+       for (l = list; l != NULL; l = l->next) {
+               if (g_strcmp0 ((const gchar *) l->data, str) == 0)
+                       return TRUE;
+       }
+       return FALSE;
+}
+
+static gboolean
+test_bulk_add_remove (EBookClient *client,
+                      const gchar *vcard_str,
+                      gint batch_size)
+{
+       gint i;
+       GSList *contacts = NULL;
+       GSList *added_uids = NULL;
+       GSList *book_uids = NULL;
+       EBookQuery *query = NULL;
+       gchar *sexp = NULL;
+       const GSList *l;
+
+       query = e_book_query_any_field_contains ("");
+       sexp = e_book_query_to_string (query);
+       e_book_query_unref (query);
+
+       for (i = 0; i < batch_size; ++i) {
+               EContact *contact = e_contact_new_from_vcard (vcard_str);
+               contacts = g_slist_append (contacts, contact);
+       }
+
+       g_print ("  * Bulk addition of %d contacts...\n", batch_size);
+       /* Bulk addition */
+       g_return_val_if_fail (e_book_client_add_contacts_sync (client, contacts, &added_uids, NULL, NULL), FALSE);
+       g_return_val_if_fail (added_uids != NULL, FALSE);
+       g_return_val_if_fail (added_uids->data != NULL, FALSE);
+       g_return_val_if_fail (g_slist_length (added_uids) == batch_size, FALSE);
+
+       /* Make sure the uids are in the address book */
+       g_return_val_if_fail (e_book_client_get_contacts_uids_sync (client, sexp, &book_uids, NULL, NULL), FALSE);
+       for (l = added_uids; l != NULL; l = l->next) {
+               g_return_val_if_fail (check_string_in_slist (book_uids, (const gchar*) l->data), FALSE);
+       }
+       g_slist_free_full (book_uids, g_free);
+
+       g_print ("  * Bulk removal of %d contacts...\n", batch_size);
+       /* Bulk removal */
+       g_return_val_if_fail (e_book_client_remove_contacts_sync (client, added_uids, NULL, NULL), FALSE);
+
+       /* Make sure the uids are no longer in the address book */
+       book_uids = NULL;
+       g_return_val_if_fail (e_book_client_get_contacts_uids_sync (client, sexp, &book_uids, NULL, NULL), FALSE);
+       for (l = added_uids; l != NULL; l = l->next) {
+               g_return_val_if_fail (!check_string_in_slist (book_uids, (const gchar*) l->data), FALSE);
+       }
+       g_slist_free_full (book_uids, g_free);
+
+       g_free (sexp);
+       g_slist_free_full (added_uids, g_free);
+       g_slist_free_full (contacts, g_object_unref);
+       return TRUE;
+}
+
+int main (gint argc, gchar **argv)
+{
+       EBookClient *client = NULL;
+       const gchar
+               *test_vcard_str =
+                       "BEGIN:VCARD\r\n"
+                       "VERSION:3.0\r\n"
+                       "EMAIL;TYPE=OTHER:zyx@no.where\r\n"
+                       "FN:zyx mix\r\n"
+                       "N:zyx;mix;;;\r\n"
+                       "END:VCARD";
+
+       g_type_init ();
+
+       /* Create EBook Client */
+       client = e_book_client_new_system (NULL);
+       g_return_val_if_fail (client != NULL, 1);
+
+       /* Open address book */
+       g_return_val_if_fail (e_client_open_sync (E_CLIENT (client), FALSE, NULL, NULL), 1);
+
+       g_print ("Testing bulk addition then removal...\n");
+       g_return_val_if_fail (test_bulk_add_remove (client, test_vcard_str, BATCH_SIZE), 1);
+       g_print ("Passed.\n");
+
+       g_object_unref (client);
+
+       return 0;
+}