diff options
author | nobody <nobody@localhost> | 2000-02-26 07:33:55 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2000-02-26 07:33:55 +0800 |
commit | 8e588ed3d97e720c3439d30956e335b14713d4e3 (patch) | |
tree | e5dfae6704668d028cbb0e1fdc55e43b992004bc /tests/test11.c | |
parent | 59d2deddc74713097251e0b2c0eb48f078f78268 (diff) | |
download | gsoc2013-evolution-before_bonobo.tar gsoc2013-evolution-before_bonobo.tar.gz gsoc2013-evolution-before_bonobo.tar.bz2 gsoc2013-evolution-before_bonobo.tar.lz gsoc2013-evolution-before_bonobo.tar.xz gsoc2013-evolution-before_bonobo.tar.zst gsoc2013-evolution-before_bonobo.zip |
This commit was manufactured by cvs2svn to create tagbefore_bonobo
'before_bonobo'.
svn path=/tags/before_bonobo/; revision=1959
Diffstat (limited to 'tests/test11.c')
-rw-r--r-- | tests/test11.c | 103 |
1 files changed, 0 insertions, 103 deletions
diff --git a/tests/test11.c b/tests/test11.c deleted file mode 100644 index 36ec9c6159..0000000000 --- a/tests/test11.c +++ /dev/null @@ -1,103 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ - -/* - Test search api - */ - - -#include "camel.h" -#include "camel-mbox-folder.h" -#include "camel-mbox-parser.h" -#include "camel-mbox-utils.h" -#include "camel-mbox-summary.h" -#include "camel-log.h" -#include "camel-exception.h" -#include "camel-folder-summary.h" -#include "md5-utils.h" -#include <sys/types.h> -#include <unistd.h> -#include <errno.h> -#include <string.h> -#include <sys/stat.h> -#include <fcntl.h> -#include <glib.h> - -static char * -auth_callback(char *prompt, gboolean secret, - CamelService *service, char *item, - CamelException *ex) -{ - printf ("auth_callback called: %s\n", prompt); - return NULL; -} - -int -main (int argc, char**argv) -{ - CamelSession *session; - CamelException *ex; - CamelStore *store; - gchar *store_url = "mbox:///tmp/evmail"; - CamelFolder *folder; - CamelMimeMessage *message; - GList *uid_list; - int camel_debug_level = 10; - GList *matches; - - gtk_init (&argc, &argv); - camel_init (); - ex = camel_exception_new (); - camel_provider_register_as_module ("../camel/providers/mbox/.libs/libcamelmbox.so.0"); - - session = camel_session_new (auth_callback); - store = camel_session_get_store (session, store_url, ex); - if (camel_exception_get_id (ex)) { - printf ("Exception caught in camel_session_get_store\n" - "Full description : %s\n", camel_exception_get_description (ex)); - return -1; - } - - printf("get folder\n"); - - folder = camel_store_get_folder (store, "Inbox", ex); - if (camel_exception_get_id (ex)) { - printf ("Exception caught in camel_store_get_folder\n" - "Full description : %s\n", camel_exception_get_description (ex)); - return -1; - } - - printf("open folder\n"); - - camel_folder_open (folder, FOLDER_OPEN_READ, ex); - if (camel_exception_get_id (ex)) { - printf ("Exception caught when trying to open the folder\n" - "Full description : %s\n", camel_exception_get_description (ex)); - return -1; - } - - - printf("Search for messages\n"); - - matches = camel_folder_search_by_expression (folder, "(or (match-all (header-contains \"subject\" \"term\")) (match-all (header-contains \"subject\" \"gnome\")))", ex); - - if (matches) { - GList *n; - printf("search found matches:\n"); - n = matches; - while (n) { - printf("uid: %s\n", n->data); - n = g_list_next(n); - } - - } else { - printf("no matches?\n"); - } - - camel_folder_close (folder, FALSE, ex); - - return 0; -} - - - - |