diff options
author | nobody <nobody@localhost> | 2001-02-22 03:34:27 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2001-02-22 03:34:27 +0800 |
commit | 19d71e1c5029e8c4048d9b8ace72affc28f2d04f (patch) | |
tree | f1ea97702781d0b26bb97bd28213ed46368377b6 /camel/tests/folder/test1.c | |
parent | 535fea211a9a35f5b04017124a71764daf926723 (diff) | |
download | gsoc2013-evolution-GNUMERIC_0_63.tar gsoc2013-evolution-GNUMERIC_0_63.tar.gz gsoc2013-evolution-GNUMERIC_0_63.tar.bz2 gsoc2013-evolution-GNUMERIC_0_63.tar.lz gsoc2013-evolution-GNUMERIC_0_63.tar.xz gsoc2013-evolution-GNUMERIC_0_63.tar.zst gsoc2013-evolution-GNUMERIC_0_63.zip |
This commit was manufactured by cvs2svn to create tagGNUMERIC_0_63
'GNUMERIC_0_63'.
svn path=/tags/GNUMERIC_0_63/; revision=8333
Diffstat (limited to 'camel/tests/folder/test1.c')
-rw-r--r-- | camel/tests/folder/test1.c | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/camel/tests/folder/test1.c b/camel/tests/folder/test1.c deleted file mode 100644 index e7d1ac0604..0000000000 --- a/camel/tests/folder/test1.c +++ /dev/null @@ -1,59 +0,0 @@ -/* store testing */ - -#include "camel-test.h" -#include "folders.h" - -#include <camel/camel-exception.h> -#include <camel/camel-service.h> -#include <camel/camel-session.h> -#include <camel/camel-store.h> - -/* god, who designed this horrid interface */ -static char *auth_callback(CamelAuthCallbackMode mode, - char *data, gboolean secret, - CamelService *service, char *item, - CamelException *ex) -{ - return NULL; -} - -#define ARRAY_LEN(x) (sizeof(x)/sizeof(x[0])) - -static char *local_providers[] = { - "mbox", - "mh", - "maildir" -}; - -int main(int argc, char **argv) -{ - CamelSession *session; - CamelException *ex; - int i; - char *path; - - camel_test_init(argc, argv); - - ex = camel_exception_new(); - - /* clear out any camel-test data */ - system("/bin/rm -rf /tmp/camel-test"); - - session = camel_session_new("/tmp/camel-test", auth_callback, NULL, NULL); - - /* todo: cross-check everything with folder_info checks as well */ - /* todo: subscriptions? */ - /* todo: work out how to do imap/pop/nntp tests */ - for (i=0;i<ARRAY_LEN(local_providers);i++) { - path = g_strdup_printf("%s:///tmp/camel-test/%s", local_providers[i], local_providers[i]); - - test_folder_basic(session, path, TRUE); - - g_free(path); - } - - camel_object_unref((CamelObject *)session); - camel_exception_free(ex); - - return 0; -} |