1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Authors: Jeffrey Stedfast <fejj@ximian.com>
*
* Copyright 2003 Ximian, Inc. (www.ximian.com)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
*
*/
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <dirent.h>
#include "camel-test.h"
#include "messages.h"
#include <camel/camel-multipart.h>
#include <camel/camel-mime-message.h>
#include <camel/camel-stream-fs.h>
#include <camel/camel-stream-mem.h>
#if 0
static void
dump_mime_struct (CamelMimePart *mime_part, int depth)
{
CamelDataWrapper *content;
char *mime_type;
int i = 0;
while (i < depth) {
printf (" ");
i++;
}
content = camel_medium_get_content_object ((CamelMedium *) mime_part);
mime_type = camel_data_wrapper_get_mime_type (content);
printf ("Content-Type: %s\n", mime_type);
g_free (mime_type);
if (CAMEL_IS_MULTIPART (content)) {
guint num, index = 0;
num = camel_multipart_get_number ((CamelMultipart *) content);
while (index < num) {
mime_part = camel_multipart_get_part ((CamelMultipart *) content, index);
dump_mime_struct (mime_part, depth + 1);
index++;
}
} else if (CAMEL_IS_MIME_MESSAGE (content)) {
dump_mime_struct ((CamelMimePart *) content, depth + 1);
}
}
#endif
int main (int argc, char **argv)
{
struct dirent *dent;
DIR *dir;
int fd;
camel_test_init (argc, argv);
camel_test_start ("Message Test Suite");
if (!(dir = opendir ("../data/messages")))
return 77;
while ((dent = readdir (dir)) != NULL) {
CamelMimeMessage *message;
CamelStream *stream;
char *filename;
struct stat st;
if (dent->d_name[0] == '.')
continue;
filename = g_strdup_printf ("../data/messages/%s", dent->d_name);
if (stat (filename, &st) == -1 || !S_ISREG (st.st_mode)) {
g_free (filename);
continue;
}
if ((fd = open (filename, O_RDONLY)) == -1) {
g_free (filename);
continue;
}
push ("testing message `%s`", filename);
g_free (filename);
stream = camel_stream_fs_new_with_fd (fd);
message = camel_mime_message_new ();
camel_data_wrapper_construct_from_stream ((CamelDataWrapper *) message, stream);
camel_stream_reset (stream);
/*dump_mime_struct ((CamelMimePart *) message, 0);*/
test_message_compare (message);
camel_object_unref (message);
camel_object_unref (stream);
pull ();
}
closedir (dir);
camel_test_end ();
return 0;
}
|