aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRobert Brady <rwb197@ecs.soton.ac.uk>1999-08-06 23:47:45 +0800
committerRobert Brady <rbrady@src.gnome.org>1999-08-06 23:47:45 +0800
commit85067acb32a4992410e337352f8c54b61b78709b (patch)
tree88fdde821bfecfd1a33d2c9c6d760fab8341506a /tests
parentf3e57fa18f42e44f81f1eedc2db85a4125752d20 (diff)
downloadgsoc2013-evolution-85067acb32a4992410e337352f8c54b61b78709b.tar
gsoc2013-evolution-85067acb32a4992410e337352f8c54b61b78709b.tar.gz
gsoc2013-evolution-85067acb32a4992410e337352f8c54b61b78709b.tar.bz2
gsoc2013-evolution-85067acb32a4992410e337352f8c54b61b78709b.tar.lz
gsoc2013-evolution-85067acb32a4992410e337352f8c54b61b78709b.tar.xz
gsoc2013-evolution-85067acb32a4992410e337352f8c54b61b78709b.tar.zst
gsoc2013-evolution-85067acb32a4992410e337352f8c54b61b78709b.zip
encoder test.
1999-08-06 Robert Brady <rwb197@ecs.soton.ac.uk> * tests/test6.c: encoder test. * camel/gmime-rfc2047.c: Fixed decoder bug : sequence ?= is not always the terminator for an encoded-string. svn path=/trunk/; revision=1091
Diffstat (limited to 'tests')
-rw-r--r--tests/test6.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/tests/test6.c b/tests/test6.c
new file mode 100644
index 0000000000..ead8312c52
--- /dev/null
+++ b/tests/test6.c
@@ -0,0 +1,50 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+
+/* test for the RFC 2047 encoder */
+
+#include <string.h>
+#include <unicode.h>
+
+#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 "gmime-rfc2047.h"
+
+#define TERMINAL_CHARSET "UTF-8"
+
+/*
+ * Info on many unicode issues, including, utf-8 xterms from :
+ *
+ * http://www.cl.cam.ac.uk/~mgk25/unicode.html
+ *
+ */
+
+const char *tests[] =
+{
+ "is is a test", "ISO-8859-1",
+ "Itrtinlation", "ISO-8859-1",
+ "Καλημέρα κόσμε", "UTF-8",
+ "コンニチハ", "UTF-8",
+ "ði ıntəˈnæʃənəl fəˈnɛtık əsoʊsiˈeıʃn", "UTF-8",
+ NULL
+};
+
+
+int
+main (int argc, char**argv)
+{
+ const char **b = tests;
+ while (*b) {
+ char *e = gmime_rfc2047_encode(b[0], b[1]);
+ printf("%s\t%s\n", e, gmime_rfc2047_decode(e, TERMINAL_CHARSET));
+ b+=2;
+ }
+
+ return 0;
+
+}