[evolution-data-server/treitter-test-suites] Add a test for the e-book 'getSupportedAuthMethods' method.
- From: Travis Reitter <treitter src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [evolution-data-server/treitter-test-suites] Add a test for the e-book 'getSupportedAuthMethods' method.
- Date: Wed, 30 Dec 2009 00:55:56 +0000 (UTC)
commit 88f077a06c682d4eda4446eec5b45993eb6cdd74
Author: Travis Reitter <treitter gmail com>
Date: Thu Dec 10 15:53:06 2009 -0800
Add a test for the e-book 'getSupportedAuthMethods' method.
addressbook/tests/ebook/Makefile.am | 53 +++++++-------
addressbook/tests/ebook/ebook-test-utils.c | 59 +++++++++++++++
addressbook/tests/ebook/ebook-test-utils.h | 7 ++
.../ebook/test-ebook-get-supported-auth-methods.c | 76 ++++++++++++++++++++
4 files changed, 170 insertions(+), 25 deletions(-)
---
diff --git a/addressbook/tests/ebook/Makefile.am b/addressbook/tests/ebook/Makefile.am
index 768eebb..cf59876 100644
--- a/addressbook/tests/ebook/Makefile.am
+++ b/addressbook/tests/ebook/Makefile.am
@@ -22,31 +22,32 @@ TEST_LIBS = \
$(NULL)
noinst_PROGRAMS = \
- test-changes \
- test-categories \
- test-date \
- test-ebook \
- test-ebook-async \
- test-ebook-add-contact \
- test-ebook-commit-contact \
- test-ebook-get-contact \
- test-ebook-get-required-fields \
- test-ebook-get-static-capabilities \
- test-ebook-get-supported-fields \
- test-ebook-remove \
- test-ebook-remove-contact \
- test-ebook-remove-contact-by-id \
- test-ebook-remove-contacts \
- test-ebook-view \
- test-nonexistent-id \
- test-photo \
- test-query \
- test-self \
- test-string \
- test-undefinedfield \
- test-untyped-phones \
- test-search \
- test-stress-bookviews \
+ test-changes \
+ test-categories \
+ test-date \
+ test-ebook \
+ test-ebook-async \
+ test-ebook-add-contact \
+ test-ebook-commit-contact \
+ test-ebook-get-contact \
+ test-ebook-get-required-fields \
+ test-ebook-get-static-capabilities \
+ test-ebook-get-supported-fields \
+ test-ebook-get-supported-auth-methods \
+ test-ebook-remove \
+ test-ebook-remove-contact \
+ test-ebook-remove-contact-by-id \
+ test-ebook-remove-contacts \
+ test-ebook-view \
+ test-nonexistent-id \
+ test-photo \
+ test-query \
+ test-self \
+ test-string \
+ test-undefinedfield \
+ test-untyped-phones \
+ test-search \
+ test-stress-bookviews \
$(NULL)
TEST_CPPFLAGS= \
@@ -71,6 +72,8 @@ test_ebook_get_required_fields_LDADD=$(TEST_LIBS)
test_ebook_get_required_fields_CPPFLAGS=$(TEST_CPPFLAGS)
test_ebook_get_static_capabilities_LDADD=$(TEST_LIBS)
test_ebook_get_static_capabilities_CPPFLAGS=$(TEST_CPPFLAGS)
+test_ebook_get_supported_auth_methods_LDADD=$(TEST_LIBS)
+test_ebook_get_supported_auth_methods_CPPFLAGS=$(TEST_CPPFLAGS)
test_ebook_get_supported_fields_LDADD=$(TEST_LIBS)
test_ebook_get_supported_fields_CPPFLAGS=$(TEST_CPPFLAGS)
test_ebook_remove_LDADD=$(TEST_LIBS)
diff --git a/addressbook/tests/ebook/ebook-test-utils.c b/addressbook/tests/ebook/ebook-test-utils.c
index bb5b145..b4b3083 100644
--- a/addressbook/tests/ebook/ebook-test-utils.c
+++ b/addressbook/tests/ebook/ebook-test-utils.c
@@ -337,6 +337,65 @@ ebook_test_utils_book_get_static_capabilities (EBook *book)
}
GList*
+ebook_test_utils_book_get_supported_auth_methods (EBook *book)
+{
+ GList *fields = NULL;
+ GError *error = NULL;
+
+ if (!e_book_get_supported_auth_methods (book, &fields, &error)) {
+ const char *uri;
+
+ uri = e_book_get_uri (book);
+ g_warning ("failed to get supported auth methods for "
+ "addressbook `%s': %s", uri, error->message);
+ exit(1);
+ }
+
+ return fields;
+}
+
+static void
+get_supported_auth_methods_cb (EBook *book,
+ EBookStatus status,
+ EList *methods,
+ EBookTestClosure *closure)
+{
+ if (status != E_BOOK_ERROR_OK) {
+ g_warning ("failed to asynchronously get the supported auth "
+ "methods: status %d", status);
+ exit (1);
+ }
+
+ closure->list = methods;
+
+ g_print ("successfully asynchronously retrieved the supported auth "
+ "methods\n");
+
+ if (closure) {
+ (*closure->cb) (closure);
+ g_free (closure);
+ }
+}
+
+void
+ebook_test_utils_book_async_get_supported_auth_methods (EBook *book,
+ GSourceFunc callback,
+ gpointer user_data)
+{
+ EBookTestClosure *closure;
+
+ closure = g_new0 (EBookTestClosure, 1);
+ closure->cb = callback;
+ closure->user_data = user_data;
+ if (e_book_async_get_supported_auth_methods (book,
+ (EBookEListCallback) get_supported_auth_methods_cb,
+ closure)) {
+ g_warning ("failed to set up async getSupportedAuthMethods");
+ exit(1);
+ }
+}
+
+GList*
ebook_test_utils_book_get_supported_fields (EBook *book)
{
GList *fields = NULL;
diff --git a/addressbook/tests/ebook/ebook-test-utils.h b/addressbook/tests/ebook/ebook-test-utils.h
index 4595f7d..c6d9d08 100644
--- a/addressbook/tests/ebook/ebook-test-utils.h
+++ b/addressbook/tests/ebook/ebook-test-utils.h
@@ -93,6 +93,13 @@ ebook_test_utils_book_async_get_supported_fields (EBook *book,
GSourceFunc callback,
gpointer user_data);
+GList*
+ebook_test_utils_book_get_supported_auth_methods (EBook *book);
+void
+ebook_test_utils_book_async_get_supported_auth_methods (EBook *book,
+ GSourceFunc callback,
+ gpointer user_data);
+
const char*
ebook_test_utils_book_get_static_capabilities (EBook *book);
diff --git a/addressbook/tests/ebook/test-ebook-get-supported-auth-methods.c b/addressbook/tests/ebook/test-ebook-get-supported-auth-methods.c
new file mode 100644
index 0000000..d557b95
--- /dev/null
+++ b/addressbook/tests/ebook/test-ebook-get-supported-auth-methods.c
@@ -0,0 +1,76 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+
+#include <stdlib.h>
+#include <libebook/e-book.h>
+
+#include "ebook-test-utils.h"
+
+static void
+list_member_print_and_free (char *member,
+ gpointer user_data)
+{
+ g_print (" %s\n", member);
+ g_free (member);
+}
+
+static void
+get_supported_auth_methods_cb (EBookTestClosure *closure)
+{
+ /* XXX: assuming an empty list is valid, we'll just print out anything
+ * we do get */
+ if (closure->list) {
+ EIterator *iter;
+ const char *field;
+
+ g_print ("supported auth methods:\n");
+ iter = e_list_get_iterator (closure->list);
+ while ((field = e_iterator_get (iter))) {
+ g_print (" %s\n", field);
+ e_iterator_next (iter);
+ }
+ g_print ("----------------\n");
+ }
+
+ g_object_unref (closure->list);
+
+ g_main_loop_quit ((GMainLoop*) (closure->user_data));
+}
+
+gint
+main (gint argc, gchar **argv)
+{
+ EBook *book;
+ GMainLoop *loop;
+ GList *auth_methods;
+
+ g_type_init ();
+
+ /*
+ * Setup
+ */
+ book = ebook_test_utils_book_new_temp (NULL);
+ ebook_test_utils_book_open (book, FALSE);
+
+ /*
+ * Sync version
+ */
+ auth_methods = ebook_test_utils_book_get_supported_auth_methods (book);
+
+ g_print ("successfully retrieved supported auth methods:\n");
+ g_list_foreach (auth_methods, (GFunc) list_member_print_and_free, NULL);
+ g_print ("----------------\n");
+ g_list_free (auth_methods);
+
+ /*
+ * Async version
+ */
+ loop = g_main_loop_new (NULL, TRUE);
+ ebook_test_utils_book_async_get_supported_auth_methods (book,
+ (GSourceFunc) get_supported_auth_methods_cb, loop);
+
+ g_main_loop_run (loop);
+
+ ebook_test_utils_book_remove (book);
+
+ return 0;
+}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]