2000-11-29 Not Zed <NotZed@HelixCode.com> * tests/message/test2.c (main): Add a missed unref. * camel-stream-mem.c (camel_stream_mem_set_buffer): We must set ourselves as the owner of the byte-array. Weird, someone has modified this file (its been reindented), but i can't see any changelogs ... * tests/lib/messages.c (content_finalise): Fix memleak in tester, free byte array when our content object is deleted. * camel-folder-search.c (camel_folder_search_finalize): Yeah great, so the sexp is a gtk object, not a camel object. Isn't that going to be fun to fix? * camel-session.c (camel_session_finalise): Free the storage path. * providers/local/camel-local-store.c (camel_local_store_init): If store->folders is setup, free it first, then overwrite. Hmm, this seems a bit crappy to me. * camel-store.c (camel_store_init): Dont setup store->folders if its already setup. * camel-exception.c (camel_exception_setv): Removed a memleak. no need to strdup after a strdup_printf!!! * camel-address.c (camel_address_finalize): Free the address ptrarray, once finished. * providers/local/camel-local-folder.c (local_finalize): Make sure we dont leave the folder locked on close. (local_finalize): Free summary/search. * providers/local/camel-mh-summary.c (mh_summary_next_uid_string): Small memleak, always free name after using it. * camel-mime-part.c (set_content_object): Free txt after setting the header. * providers/local/camel-maildir-summary.c (maildir_summary_check): Fix a memleak, close the dir after scanning new. (message_info_free): Added so we can free the filename cached in the messageinfo. (camel_maildir_summary_finalise): Free the hostname. * tests/folder/test[12].c (main): Clear out camel-test before starting. * providers/local/camel-mbox-summary.c (mbox_summary_sync_quick): Because encode_x_evolution folds the line (sigh, because encode_param does, unlike every other function in camel-mime-utils), unfold the encoded result before comparing. (mbox_summary_sync_quick): Another small memleak, free xevnew once finished with it. * camel-mime-utils.c (header_decode_quoted_string): Removed a redundant check for c=0. (header_unfold): New function to un-fold headers. * providers/local/camel-local-summary.c (local_summary_encode_x_evolution): some problems with encoding tags, using the wrong output strings. (local_summary_encode_x_evolution): We dont need to append a ; either, param_list_format_append() will do it for us. ` svn path=/trunk/; revision=6711
154 lines
3.9 KiB
C
154 lines
3.9 KiB
C
|
|
|
|
#include "messages.h"
|
|
#include "camel-test.h"
|
|
|
|
#include <camel/camel-mime-message.h>
|
|
#include <camel/camel-stream-fs.h>
|
|
#include <camel/camel-stream-mem.h>
|
|
|
|
CamelMimeMessage *
|
|
test_message_create_simple(void)
|
|
{
|
|
CamelMimeMessage *msg;
|
|
CamelInternetAddress *addr;
|
|
|
|
msg = camel_mime_message_new();
|
|
|
|
addr = camel_internet_address_new();
|
|
camel_internet_address_add(addr, "Michael Zucchi", "zed@nowhere.com");
|
|
camel_mime_message_set_from(msg, addr);
|
|
camel_address_remove((CamelAddress *)addr, -1);
|
|
camel_internet_address_add(addr, "POSTMASTER", "POSTMASTER@somewhere.net");
|
|
camel_mime_message_set_recipients(msg, CAMEL_RECIPIENT_TYPE_TO, addr);
|
|
camel_address_remove((CamelAddress *)addr, -1);
|
|
camel_internet_address_add(addr, "Michael Zucchi", "zed@nowhere.com");
|
|
camel_mime_message_set_recipients(msg, CAMEL_RECIPIENT_TYPE_CC, addr);
|
|
|
|
check_unref(addr, 1);
|
|
|
|
camel_mime_message_set_subject(msg, "Simple message subject");
|
|
camel_mime_message_set_date(msg, time(0), 930);
|
|
|
|
return msg;
|
|
}
|
|
|
|
static void
|
|
content_finalise(CamelObject *folder, void *crap, void *ba)
|
|
{
|
|
g_byte_array_free(ba, TRUE);
|
|
}
|
|
|
|
void
|
|
test_message_set_content_simple(CamelMimePart *part, int how, const char *type, const char *text, int len)
|
|
{
|
|
CamelStreamMem *content = NULL;
|
|
CamelDataWrapper *dw;
|
|
static GByteArray *ba;
|
|
|
|
switch (how) {
|
|
case 0:
|
|
camel_mime_part_set_content(part, text, len, type);
|
|
break;
|
|
case 1:
|
|
content = (CamelStreamMem *)camel_stream_mem_new_with_buffer(text, len);
|
|
break;
|
|
case 2:
|
|
content = (CamelStreamMem *)camel_stream_mem_new();
|
|
camel_stream_mem_set_buffer(content, text, len);
|
|
break;
|
|
case 3:
|
|
ba = g_byte_array_new();
|
|
g_byte_array_append(ba, text, len);
|
|
|
|
content = (CamelStreamMem *)camel_stream_mem_new_with_byte_array(ba);
|
|
ba = NULL;
|
|
break;
|
|
case 4:
|
|
ba = g_byte_array_new();
|
|
g_byte_array_append(ba, text, len);
|
|
|
|
content = (CamelStreamMem *)camel_stream_mem_new();
|
|
camel_stream_mem_set_byte_array(content, ba);
|
|
|
|
camel_object_hook_event((CamelObject *)content, "finalize", content_finalise, ba);
|
|
break;
|
|
}
|
|
|
|
if (content != 0) {
|
|
dw = camel_data_wrapper_new();
|
|
camel_data_wrapper_set_mime_type (dw, type);
|
|
|
|
camel_data_wrapper_construct_from_stream(dw, (CamelStream *)content);
|
|
camel_medium_set_content_object((CamelMedium *)part, dw);
|
|
|
|
check_unref(content, 2);
|
|
check_unref(dw, 2);
|
|
}
|
|
}
|
|
|
|
int
|
|
test_message_write_file(CamelMimeMessage *msg, const char *name)
|
|
{
|
|
CamelStreamFs *file;
|
|
int ret;
|
|
|
|
file = (CamelStreamFs *)camel_stream_fs_new_with_name(name, O_CREAT|O_WRONLY, 0600);
|
|
camel_data_wrapper_write_to_stream((CamelDataWrapper *)msg, (CamelStream *)file);
|
|
ret = camel_stream_close((CamelStream *)file);
|
|
|
|
check(((CamelObject *)file)->ref_count == 1);
|
|
camel_object_unref((CamelObject *)file);
|
|
|
|
return ret;
|
|
}
|
|
|
|
CamelMimeMessage *
|
|
test_message_read_file(const char *name)
|
|
{
|
|
CamelStreamFs *file;
|
|
CamelMimeMessage *msg2;
|
|
|
|
file = (CamelStreamFs *)camel_stream_fs_new_with_name(name, O_RDONLY, 0);
|
|
msg2 = camel_mime_message_new();
|
|
|
|
camel_data_wrapper_construct_from_stream((CamelDataWrapper *)msg2, (CamelStream *)file);
|
|
/* file's refcount may be > 1 if the message is real big */
|
|
check(CAMEL_OBJECT(file)->ref_count >=1);
|
|
|
|
return msg2;
|
|
}
|
|
|
|
int
|
|
test_message_compare_content(CamelDataWrapper *dw, const char *text, int len)
|
|
{
|
|
CamelStreamMem *content;
|
|
|
|
/* sigh, ok, so i len == 0, dw will probably be 0 too
|
|
camel_mime_part_set_content is weird like that */
|
|
if (dw == 0 && len == 0)
|
|
return 0;
|
|
|
|
content = (CamelStreamMem *)camel_stream_mem_new();
|
|
camel_data_wrapper_write_to_stream(dw, (CamelStream *)content);
|
|
|
|
check_msg(content->buffer->len == len, "buffer->len = %d, len = %d", content->buffer->len, len);
|
|
check_msg(memcmp(content->buffer->data, text, content->buffer->len) == 0, "len = %d", len);
|
|
|
|
check_unref(content, 1);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
test_message_compare_header(CamelMimeMessage *m1, CamelMimeMessage *m2)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
test_message_compare_messages(CamelMimeMessage *m1, CamelMimeMessage *m2)
|
|
{
|
|
return 0;
|
|
}
|