[evolution-data-server/openismus-work-3-8: 22/43] Added case to the book-migration test for basic cursor operation.
- From: Tristan Van Berkom <tvb src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-data-server/openismus-work-3-8: 22/43] Added case to the book-migration test for basic cursor operation.
- Date: Sun, 1 Dec 2013 09:41:52 +0000 (UTC)
commit 349cec6549d6487161a8c4a5d4736a8767503b08
Author: Tristan Van Berkom <tristanvb openismus com>
Date: Wed Nov 20 16:09:00 2013 +0900
Added case to the book-migration test for basic cursor operation.
tests/book-migration/test-migration.c | 55 +++++++++++++++++++++++++++++++++
1 files changed, 55 insertions(+), 0 deletions(-)
---
diff --git a/tests/book-migration/test-migration.c b/tests/book-migration/test-migration.c
index 0c84eca..b755e2a 100644
--- a/tests/book-migration/test-migration.c
+++ b/tests/book-migration/test-migration.c
@@ -261,6 +261,60 @@ test_query_phone (MigrationFixture *fixture,
g_slist_free_full (contacts, g_object_unref);
}
+static EContactField sort_fields[] = { E_CONTACT_FAMILY_NAME, E_CONTACT_GIVEN_NAME };
+static EBookCursorSortType sort_types[] = { E_BOOK_CURSOR_SORT_ASCENDING, E_BOOK_CURSOR_SORT_ASCENDING };
+
+/* For pre-cursor default summary configurations, the
+ * E_CONTACT_FAMILY_NAME and E_CONTACT_GIVEN_NAME fields should
+ * have been given an E_BOOK_INDEX_SORT_KEY during the upgrade
+ * process.
+ */
+static void
+test_cursor_step (MigrationFixture *fixture,
+ gconstpointer user_data)
+{
+ EBookClient *book_client;
+ EBookClientCursor *cursor;
+ GError *error = NULL;
+ GSList *contacts = NULL;
+ gint n_reported_results;
+
+ book_client = E_TEST_SERVER_UTILS_SERVICE (fixture, EBookClient);
+
+ if (!e_book_client_get_cursor_sync (book_client,
+ NULL,
+ sort_fields,
+ sort_types,
+ 2,
+ &cursor,
+ NULL, &error))
+ g_error ("Failed to create a cursor from a migrated book: %s", error->message);
+
+ n_reported_results = e_book_client_cursor_step_sync (cursor,
+ E_BOOK_CURSOR_STEP_MOVE |
+ E_BOOK_CURSOR_STEP_FETCH,
+ E_BOOK_CURSOR_ORIGIN_BEGIN,
+ 10,
+ &contacts,
+ NULL, &error);
+ g_assert_cmpint (n_reported_results, ==, g_slist_length (contacts));
+ g_assert_cmpint (e_book_client_cursor_get_position (cursor), ==, 10);
+ g_slist_free_full (contacts, g_object_unref);
+
+ n_reported_results = e_book_client_cursor_step_sync (cursor,
+ E_BOOK_CURSOR_STEP_MOVE |
+ E_BOOK_CURSOR_STEP_FETCH,
+ E_BOOK_CURSOR_ORIGIN_CURRENT,
+ 10,
+ &contacts,
+ NULL, &error);
+ g_assert_cmpint (n_reported_results, ==, g_slist_length (contacts));
+ g_assert_cmpint (e_book_client_cursor_get_position (cursor), ==, 20);
+ g_slist_free_full (contacts, g_object_unref);
+
+ g_object_unref (cursor);
+}
+
/***********************************************************
* Main *
***********************************************************/
@@ -364,6 +418,7 @@ main (gint argc,
add_test (version, "Query/FullName", test_query_name);
add_test (version, "Query/Phone", test_query_phone);
add_test (version, "Query/Email", test_query_email);
+ add_test (version, "Cursor/Step", test_cursor_step);
}
g_list_free_full (sandboxes, g_free);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]