aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test4.c
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-07-13 04:44:02 +0800
committernobody <nobody@localhost>2001-07-13 04:44:02 +0800
commitf0262739e1c7bd152ad5eaad36a99513706177c7 (patch)
treeb086de6767c3880e0549a692f616c7b02a751123 /tests/test4.c
parent4da3e76c2cb4e89850166ae5fa0bf2e4db837733 (diff)
downloadgsoc2013-evolution-GAL_0_9.tar
gsoc2013-evolution-GAL_0_9.tar.gz
gsoc2013-evolution-GAL_0_9.tar.bz2
gsoc2013-evolution-GAL_0_9.tar.lz
gsoc2013-evolution-GAL_0_9.tar.xz
gsoc2013-evolution-GAL_0_9.tar.zst
gsoc2013-evolution-GAL_0_9.zip
This commit was manufactured by cvs2svn to create tag 'GAL_0_9'.GAL_0_9
svn path=/tags/GAL_0_9/; revision=11062
Diffstat (limited to 'tests/test4.c')
-rw-r--r--tests/test4.c65
1 files changed, 0 insertions, 65 deletions
diff --git a/tests/test4.c b/tests/test4.c
deleted file mode 100644
index bc9eef71d1..0000000000
--- a/tests/test4.c
+++ /dev/null
@@ -1,65 +0,0 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-
-/* testing mh providers
- do not use CamelMhFolder and CamelMhStore directly.
- We do it here for test purpose only */
-
-
-
-#include "camel-folder.h"
-#include "camel-mh-folder.h"
-#include "camel-mh-store.h"
-#include "camel.h"
-
-int
-main (int argc, char**argv)
-{
- CamelStore *store;
- CamelFolder *inbox_folder;
- CamelFolder *root_mh_folder;
- GList *mh_subfolders_name;
- CamelMimeMessage *message_1;
- gboolean inbox_exists;
-
- gtk_init (&argc, &argv);
- camel_init ();
-
-
- store = gtk_type_new (CAMEL_MH_STORE_TYPE);
- camel_store_init (store, (CamelSession *)NULL, g_strdup ("mh:///root/Mail"));
-
- root_mh_folder = camel_store_get_folder (store, "");
- mh_subfolders_name = camel_folder_list_subfolders (root_mh_folder, NULL);
-
- printf ("\n------------- Listing root Mh folder subfolders --------\n");
- while (mh_subfolders_name) {
- printf ("\t\"%s\"\n", (gchar *)mh_subfolders_name->data);
- mh_subfolders_name = mh_subfolders_name->next;
- }
- printf ("--------------------------------------------------------\n\n");
-
- inbox_folder = camel_store_get_folder (store, "inbox");
- if (!inbox_folder) {
- printf ("** Error: could not get inbox folder from store\n");
- return 1;
- }
-
- /* test existence */
- inbox_exists = camel_folder_exists (inbox_folder, NULL);
- if (inbox_exists)
- printf ("MH folder inbox exists, continuing tests\n");
- else {
- printf ("MH folder inbox does not exist. Stopping \n");
- return 1;
- }
-
- printf ("\n Inbox folder contains %d messages\n", camel_folder_get_message_count (inbox_folder, NULL));
- printf ("\n------------- Gettting message numer 3 in inbox --------\n");
- message_1 = camel_folder_get_message (inbox_folder, 3, NULL);
- printf ("--------------------------------------------------------\n\n");
-
-
- return 1;
-
-
-}