aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorbertrand <Bertrand.Guiheneuf@aful.org>1999-08-26 04:42:59 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>1999-08-26 04:42:59 +0800
commita76dccf18b6d8b854280031dbcc9187cd5744958 (patch)
tree9db6ab52836f5226e5b3846c1680c828d5f00800 /tests
parentb42d3101ab747c315952182d78667a58899a1a35 (diff)
downloadgsoc2013-evolution-a76dccf18b6d8b854280031dbcc9187cd5744958.tar
gsoc2013-evolution-a76dccf18b6d8b854280031dbcc9187cd5744958.tar.gz
gsoc2013-evolution-a76dccf18b6d8b854280031dbcc9187cd5744958.tar.bz2
gsoc2013-evolution-a76dccf18b6d8b854280031dbcc9187cd5744958.tar.lz
gsoc2013-evolution-a76dccf18b6d8b854280031dbcc9187cd5744958.tar.xz
gsoc2013-evolution-a76dccf18b6d8b854280031dbcc9187cd5744958.tar.zst
gsoc2013-evolution-a76dccf18b6d8b854280031dbcc9187cd5744958.zip
now descend from CamelMedium.
1999-08-25 bertrand <Bertrand.Guiheneuf@aful.org> * camel/camel-mime-part.c: now descend from CamelMedium. * tests/test1.c (main): all headers must be strdup'ed (main): unref created objects svn path=/trunk/; revision=1143
Diffstat (limited to 'tests')
-rw-r--r--tests/test1.c37
1 files changed, 22 insertions, 15 deletions
diff --git a/tests/test1.c b/tests/test1.c
index ecf155fcdc..f5e3f164b6 100644
--- a/tests/test1.c
+++ b/tests/test1.c
@@ -20,30 +20,32 @@ main (int argc, char**argv)
gtk_init (&argc, &argv);
camel_init ();
- message = camel_mime_message_new_with_session( (CamelSession *)NULL);
+ message = camel_mime_message_new_with_session ((CamelSession *)NULL);
+
camel_mime_part_set_description (CAMEL_MIME_PART (message), "a test");
- camel_mime_part_add_header (CAMEL_MIME_PART (message), "X-test1", "the value of a test");
- camel_mime_part_add_header (CAMEL_MIME_PART (message), "X-test2", "the value of another test");
+
+ camel_medium_add_header (CAMEL_MEDIUM (message), "X-test1", "the value of a test");
+ camel_medium_add_header (CAMEL_MEDIUM (message), "X-test2", "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, "Thu, 20 May 1999, 10:39:14 +0200");
- camel_mime_message_set_subject (message, "A test message");
- camel_mime_message_set_reply_to (message, "toto@toto.com");
- camel_mime_message_set_from (message, "Bertrand.Guiheneuf@inria.fr");
+ camel_mime_message_set_received_date (message, g_strdup ("Thu, 20 May 1999, 10:39:14 +0200"));
+ camel_mime_message_set_subject (message, g_strdup ("A test message"));
+ camel_mime_message_set_reply_to (message, g_strdup ("toto@toto.com"));
+ camel_mime_message_set_from (message, g_strdup ("Bertrand.Guiheneuf@aful.org"));
- camel_mime_message_add_recipient (message, RECIPIENT_TYPE_TO, "franck.dechamps@alseve.fr");
- camel_mime_message_add_recipient (message, RECIPIENT_TYPE_TO, "mc@alseve.fr");
- camel_mime_message_add_recipient (message, RECIPIENT_TYPE_TO, "richard.lengagne@inria.fr");
- camel_mime_message_add_recipient (message, RECIPIENT_TYPE_CC, "Francois.fleuret@inria.fr");
- camel_mime_message_add_recipient (message, RECIPIENT_TYPE_CC, "maury@justmagic.com");
- camel_mime_message_add_recipient (message, RECIPIENT_TYPE_BCC, "Bertrand.Guiheneuf@aful.org");
+ camel_mime_message_add_recipient (message, RECIPIENT_TYPE_TO, g_strdup ("franck.dechamps@alseve.fr"));
+ camel_mime_message_add_recipient (message, RECIPIENT_TYPE_TO, g_strdup ("mc@alseve.fr"));
+ camel_mime_message_add_recipient (message, RECIPIENT_TYPE_TO, g_strdup ("richard.lengagne@inria.fr"));
+ camel_mime_message_add_recipient (message, RECIPIENT_TYPE_CC, g_strdup ("Francois.fleuret@inria.fr"));
+ camel_mime_message_add_recipient (message, RECIPIENT_TYPE_CC, g_strdup ("maury@justmagic.com"));
+ camel_mime_message_add_recipient (message, RECIPIENT_TYPE_BCC, g_strdup ("Bertrand.Guiheneuf@aful.org"));
multipart = camel_multipart_new ();
body_part = camel_mime_body_part_new ();
- camel_mime_part_set_text (CAMEL_MIME_PART (body_part), "This is a test.\nThis is only a test.\n");
+ camel_mime_part_set_text (CAMEL_MIME_PART (body_part), g_strdup ("This is a test.\nThis is only a test.\n"));
camel_multipart_add_part (multipart, body_part);
- camel_mime_part_set_content_object (CAMEL_MIME_PART (message), CAMEL_DATA_WRAPPER (multipart));
+ camel_medium_set_content_object (CAMEL_MEDIUM (message), CAMEL_DATA_WRAPPER (multipart));
stream = camel_stream_fs_new_with_name ("mail1.test", CAMEL_STREAM_FS_WRITE );
if (!stream) {
@@ -53,6 +55,11 @@ main (int argc, char**argv)
camel_data_wrapper_write_to_stream (CAMEL_DATA_WRAPPER (message), stream);
camel_stream_close (stream);
+ gtk_object_unref (GTK_OBJECT (stream));
+
+ gtk_object_unref (GTK_OBJECT (message));
+ gtk_object_unref (GTK_OBJECT (multipart));
+ gtk_object_unref (GTK_OBJECT (body_part));
printf ("Test1 finished\n");
}