aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMatthew Loper <mloper@src.gnome.org>2000-02-02 13:27:27 +0800
committerMatthew Loper <mloper@src.gnome.org>2000-02-02 13:27:27 +0800
commit0715f576a87349732786f1a2a76c35ac7ceff9ff (patch)
tree8d0dff3aec3b9f10e12ef2fd7fc481536b7162f0 /tests
parentc499722cef56ddd2ebfd8d2ff2c6c21c8918a9b0 (diff)
downloadgsoc2013-evolution-0715f576a87349732786f1a2a76c35ac7ceff9ff.tar
gsoc2013-evolution-0715f576a87349732786f1a2a76c35ac7ceff9ff.tar.gz
gsoc2013-evolution-0715f576a87349732786f1a2a76c35ac7ceff9ff.tar.bz2
gsoc2013-evolution-0715f576a87349732786f1a2a76c35ac7ceff9ff.tar.lz
gsoc2013-evolution-0715f576a87349732786f1a2a76c35ac7ceff9ff.tar.xz
gsoc2013-evolution-0715f576a87349732786f1a2a76c35ac7ceff9ff.tar.zst
gsoc2013-evolution-0715f576a87349732786f1a2a76c35ac7ceff9ff.zip
+ * tests/test-formatter.c: New file; intended to test the
+ CamelFormatter class. + + * camel/camel-formatter.c: Lots of cleanup, commenting, some new + functions, and a really basic skeleton for getting bonobo objects + into the html. + (encode_entities): New function, stolen from Daniel Velliard. svn path=/trunk/; revision=1660
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.am3
-rw-r--r--tests/test-formatter.c56
2 files changed, 58 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 5bdb8a806f..7f5873ea53 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -32,4 +32,5 @@ noinst_PROGRAMS = \
test7 \
test8 \
test9 \
- test10
+ test10 \
+ test-formatter
diff --git a/tests/test-formatter.c b/tests/test-formatter.c
new file mode 100644
index 0000000000..9c9c6eed7b
--- /dev/null
+++ b/tests/test-formatter.c
@@ -0,0 +1,56 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/* Based on 'test2.c'; tests the camel-formatter class */
+#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"
+#include "camel.h"
+#include "camel-formatter.h"
+
+static void
+convert_to_html_and_print (CamelMimeMessage *msg)
+{
+ CamelFormatter* cmf = camel_formatter_new();
+ CamelStream* stream = camel_stream_mem_new (CAMEL_STREAM_FS_WRITE);
+ camel_formatter_mime_message_to_html (
+ cmf, msg, stream);
+ g_print ("Parsed message follows\n----------------------\n%s",
+ (CAMEL_STREAM_MEM(stream))->buffer->data);
+}
+
+int
+main (int argc, char**argv)
+{
+ GHashTable *header_table;
+ CamelMimeMessage *message;
+ CamelStream *input_stream;
+
+
+ gtk_init (&argc, &argv);
+ camel_init ();
+ camel_debug_level = CAMEL_LOG_LEVEL_FULL_DEBUG;
+
+ message = camel_mime_message_new_with_session( (CamelSession *)NULL);
+
+ input_stream = camel_stream_fs_new_with_name (
+ argv[1], CAMEL_STREAM_FS_READ);
+
+ if (!input_stream) {
+ perror ("could not open input file");
+ printf ("You must create the file mail.test before running this test");
+ exit(2);
+ }
+
+ camel_data_wrapper_construct_from_stream ( CAMEL_DATA_WRAPPER (message), input_stream);
+
+ camel_debug_level = CAMEL_LOG_LEVEL_FULL_DEBUG;
+ convert_to_html_and_print (message);
+
+ camel_stream_close (input_stream);
+ gtk_object_unref (GTK_OBJECT (input_stream));
+
+ return 0;
+}