diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/.cvsignore | 4 | ||||
-rw-r--r-- | tests/Makefile.am | 15 | ||||
-rw-r--r-- | tests/test1.c | 43 | ||||
-rw-r--r-- | tests/test2.c | 61 |
4 files changed, 0 insertions, 123 deletions
diff --git a/tests/.cvsignore b/tests/.cvsignore deleted file mode 100644 index 8cb5c0556b..0000000000 --- a/tests/.cvsignore +++ /dev/null @@ -1,4 +0,0 @@ -Makefile.in -Makefile -.deps -.libs diff --git a/tests/Makefile.am b/tests/Makefile.am deleted file mode 100644 index 5e2fd8947c..0000000000 --- a/tests/Makefile.am +++ /dev/null @@ -1,15 +0,0 @@ -# process this file with automake to create Makefile.in - -INCLUDES = -I$(top_srcdir)/intl -I$(top_srcdir)/camel \ - -I$(includedir) - -LDADD = \ - $(top_builddir)/camel/libcamel.la \ - $(GNOME_LIBDIR) \ - $(GNOMEUI_LIBS) $(INTLLIBS) \ - $(BONOBO_LIBS) - -noinst_PROGRAMS = \ - test1 \ - test2 - diff --git a/tests/test1.c b/tests/test1.c deleted file mode 100644 index 65d3b046c7..0000000000 --- a/tests/test1.c +++ /dev/null @@ -1,43 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -#include "camel-mime-message.h" -#include "stdio.h" -#include "camel-stream.h" -#include "camel-stream-fs.h" -#include "camel-log.h" - -void -main (int argc, char**argv) -{ - CamelMimeMessage *message; - /* FILE *output_file; */ - CamelStream *stream; - - gtk_init (&argc, &argv); - message = camel_mime_message_new_with_session( (CamelSession *)NULL); - camel_mime_part_set_description (CAMEL_MIME_PART (message), g_string_new ("a test")); - camel_mime_part_add_header (CAMEL_MIME_PART (message), g_string_new ("X-test1"), g_string_new ("the value of a test")); - camel_mime_part_add_header (CAMEL_MIME_PART (message), g_string_new ("X-test2"), g_string_new ("the value of another test")); - /*camel_mime_part_add_content_language (CAMEL_MIME_PART (message), g_string_new ("es-ca"));*/ - - camel_mime_message_set_received_date (message, g_string_new ("Thu, 20 May 1999, 10:39:14 +0200")); - camel_mime_message_set_subject (message, g_string_new ("A test message")); - camel_mime_message_set_reply_to (message, g_string_new ("toto@toto.com")); - camel_mime_message_set_from (message, g_string_new ("Bertrand.Guiheneuf@inria.fr")); - - camel_mime_message_add_recipient (message, g_string_new (RECIPIENT_TYPE_TO), g_string_new ("franck.dechamps@alseve.fr")); - camel_mime_message_add_recipient (message, g_string_new (RECIPIENT_TYPE_TO), g_string_new ("mc@alseve.fr")); - camel_mime_message_add_recipient (message, g_string_new (RECIPIENT_TYPE_TO), g_string_new ("richard.lengagne@inria.fr")); - camel_mime_message_add_recipient (message, g_string_new (RECIPIENT_TYPE_CC), g_string_new ("Francois.fleuret@inria.fr")); - camel_mime_message_add_recipient (message, g_string_new (RECIPIENT_TYPE_CC), g_string_new ("maury@justmagic.com")); - camel_mime_message_add_recipient (message, g_string_new (RECIPIENT_TYPE_BCC), g_string_new ("guiheneu@aful.org")); - - - stream = camel_stream_fs_new_with_name (g_string_new ("mail1.test"), CAMEL_STREAM_FS_WRITE ); - if (!stream) { - CAMEL_LOG(WARNING, "could not open output file"); - exit(2); - } - - camel_data_wrapper_write_to_stream (CAMEL_DATA_WRAPPER (message), stream); - camel_stream_close (stream); -} diff --git a/tests/test2.c b/tests/test2.c deleted file mode 100644 index 6f4ef3fdc6..0000000000 --- a/tests/test2.c +++ /dev/null @@ -1,61 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* tests mime message file parsing */ -#include "gmime-utils.h" -#include "stdio.h" -#include "camel-log.h" -#include "camel-mime-message.h" -#include "camel-mime-part.h" -#include "camel-stream.h" -#include "camel-stream-fs.h" - -void print_header_pair (gpointer key, gpointer value, gpointer user_data) -{ - GString *header_name = (GString *)key; - GString *header_value = (GString *)value; - CamelMimeMessage *message = (CamelMimeMessage *) user_data; - - - printf("\n--------- New Header ----------\n"); - if ((header_name) && (header_name->str)) - printf("header name :%s\n", header_name->str); - if ((header_value) && (header_value->str)) - printf("header value :%s\n", header_value->str); - - camel_mime_part_add_header ( CAMEL_MIME_PART (message), header_name, header_value); - - printf("--------- End -----------------\n"); - -} - -void -main (int argc, char**argv) -{ - GHashTable *header_table; - CamelMimeMessage *message; - CamelStream *input_stream, *output_stream; - - gtk_init (&argc, &argv); - camel_debug_level = FULL_DEBUG; - message = camel_mime_message_new_with_session( (CamelSession *)NULL); - - - input_stream = camel_stream_fs_new_with_name (g_string_new ("mail.test"), CAMEL_STREAM_FS_READ); - if (!input_stream) { - perror("could not open input file"); - exit(2); - } - - header_table = get_header_table_from_stream (input_stream); - - if (header_table) g_hash_table_foreach (header_table, print_header_pair, (gpointer)message); - else printf("header is empty, no header line present\n"); - - camel_stream_close (input_stream); - - output_stream = camel_stream_fs_new_with_name (g_string_new ("mail2.test"), CAMEL_STREAM_FS_WRITE); - camel_data_wrapper_write_to_stream (CAMEL_DATA_WRAPPER (message), output_stream); - camel_stream_close (output_stream); - - - -} |