diff options
author | NotZed <notzed@zedzone.helixcode.com> | 2000-02-14 13:44:48 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2000-02-14 13:44:48 +0800 |
commit | 64c513f9fe6163b2154255987e2a95b0d34d534e (patch) | |
tree | 92e7c6fc7875bc81d934343c12827f67d7f65991 /tests/test11.c | |
parent | c145f90b49652191dc4135da4eaa522c76ba4874 (diff) | |
download | gsoc2013-evolution-64c513f9fe6163b2154255987e2a95b0d34d534e.tar gsoc2013-evolution-64c513f9fe6163b2154255987e2a95b0d34d534e.tar.gz gsoc2013-evolution-64c513f9fe6163b2154255987e2a95b0d34d534e.tar.bz2 gsoc2013-evolution-64c513f9fe6163b2154255987e2a95b0d34d534e.tar.lz gsoc2013-evolution-64c513f9fe6163b2154255987e2a95b0d34d534e.tar.xz gsoc2013-evolution-64c513f9fe6163b2154255987e2a95b0d34d534e.tar.zst gsoc2013-evolution-64c513f9fe6163b2154255987e2a95b0d34d534e.zip |
Add libunicode to CFLAGS/LIBS.
2000-02-14 NotZed <notzed@zedzone.helixcode.com>
* configure.in (EXTRA_GNOME_CFLAGS): Add libunicode to CFLAGS/LIBS.
2000-02-13 NotZed <notzed@zedzone.helixcode.com>
* configure.in: Added check for libunicode.
* Makefile.am (SUBDIRS): Added libibex.
* tests/test11.c (main): New test, tests search api.
svn path=/trunk/; revision=1774
Diffstat (limited to 'tests/test11.c')
-rw-r--r-- | tests/test11.c | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/tests/test11.c b/tests/test11.c new file mode 100644 index 0000000000..69b88c7ad4 --- /dev/null +++ b/tests/test11.c @@ -0,0 +1,89 @@ +/* -*- 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> + +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 ("/opt/gnome/lib/libcamelmbox.so.0"); + + session = camel_session_new (); + store = camel_session_get_store (session, store_url); + + 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, "(match-all (and (header-contains \"subject\" \"terminal\") (header-contains \"subject\" \"patch\")))", 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; +} + + + + |