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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
|
//
// VMime library (http://www.vmime.org)
// Copyright (C) 2002-2005 Vincent Richard <[email protected]>
//
// 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.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// Linking this library statically or dynamically with other modules is making
// a combined work based on this library. Thus, the terms and conditions of
// the GNU General Public License cover the whole combination.
//
#include "tests/testUtils.hpp"
#define VMIME_TEST_SUITE parameterTest
#define VMIME_TEST_SUITE_MODULE "Parser"
VMIME_TEST_SUITE_BEGIN
VMIME_TEST_LIST_BEGIN
VMIME_TEST(testParse)
VMIME_TEST(testGenerate)
VMIME_TEST_LIST_END
// HACK: parameterizedHeaderField constructor is private
class parameterizedHeaderField : public vmime::parameterizedHeaderField
{
private:
vmime::ref <vmime::typeAdapter <vmime::string> > m_value;
public:
parameterizedHeaderField()
: headerField("F"),
m_value(vmime::create <vmime::typeAdapter <vmime::string> >("X"))
{
}
const vmime::component& getValue() const { return *m_value; }
vmime::component& getValue() { return *m_value; }
void setValue(const vmime::component&) { /* Do nothing */ }
const vmime::ref <const vmime::component> getValueImp() const { return m_value; }
vmime::ref <vmime::component> getValueImp() { return m_value; }
};
#define PARAM_VALUE(p, n) (p.getParameterAt(n)->getValue().generate())
#define PARAM_NAME(p, n) (p.getParameterAt(n)->getName())
#define PARAM_CHARSET(p, n) ( \
(p.getParameterAt(n).staticCast <vmime::defaultParameter>())->getValue().getCharset().generate())
#define PARAM_BUFFER(p, n) ( \
(p.getParameterAt(n).staticCast <vmime::defaultParameter>())->getValue().getBuffer())
void testParse()
{
// Simple parameter
parameterizedHeaderField p1;
p1.parse("X; param1=value1;\r\n");
VASSERT_EQ("1.1", 1, p1.getParameterCount());
VASSERT_EQ("1.2", "param1", PARAM_NAME(p1, 0));
VASSERT_EQ("1.3", "value1", PARAM_VALUE(p1, 0));
// Multi-section parameters (1/2)
parameterizedHeaderField p2a;
p2a.parse("X; param1=value1;\r\n"
" param2*0=\"val\";\r\n"
" param2*1=\"ue2\";");
VASSERT_EQ("2a.1", 2, p2a.getParameterCount());
VASSERT_EQ("2a.2", "param1", PARAM_NAME(p2a, 0));
VASSERT_EQ("2a.3", "value1", PARAM_VALUE(p2a, 0));
VASSERT_EQ("2a.4", "param2", PARAM_NAME(p2a, 1));
VASSERT_EQ("2a.5", "value2", PARAM_VALUE(p2a, 1));
// Multi-section parameters (2/2)
parameterizedHeaderField p2b;
p2b.parse("X; param1=value1;\r\n"
" param2=\"should be ignored\";\r\n"
" param2*0=\"val\";\r\n"
" param2*1=\"ue2\";");
VASSERT_EQ("2b.1", 2, p2b.getParameterCount());
VASSERT_EQ("2b.2", "param1", PARAM_NAME(p2b, 0));
VASSERT_EQ("2b.3", "value1", PARAM_VALUE(p2b, 0));
VASSERT_EQ("2b.4", "param2", PARAM_NAME(p2b, 1));
VASSERT_EQ("2b.5", "value2", PARAM_VALUE(p2b, 1));
// Extended parameter (charset and language information)
parameterizedHeaderField p3;
p3.parse("X; param1*=charset'language'value1;\r\n");
VASSERT_EQ("3.1", 1, p3.getParameterCount());
VASSERT_EQ("3.2", "param1", PARAM_NAME(p3, 0));
VASSERT_EQ("3.3", "charset", PARAM_CHARSET(p3, 0));
VASSERT_EQ("3.4", "value1", PARAM_BUFFER(p3, 0));
// Encoded characters in extended parameter values
parameterizedHeaderField p4;
p4.parse("X; param1*=a%20value%20with%20multiple%20word%73"); // 0x73 = 's'
VASSERT_EQ("4.1", 1, p4.getParameterCount());
VASSERT_EQ("4.2", "param1", PARAM_NAME(p4, 0));
VASSERT_EQ("4.3", "a value with multiple words", PARAM_VALUE(p4, 0));
// Invalid encoded character
parameterizedHeaderField p5;
p5.parse("X; param1*=test%20value%");
VASSERT_EQ("5.1", 1, p5.getParameterCount());
VASSERT_EQ("5.2", "param1", PARAM_NAME(p5, 0));
VASSERT_EQ("5.3", "test value%", PARAM_VALUE(p5, 0));
// Spaces before and after '='
parameterizedHeaderField p6;
p6.parse("X; param1\t= \"value1\"");
VASSERT_EQ("6.1", 1, p6.getParameterCount());
VASSERT_EQ("6.2", "param1", PARAM_NAME(p6, 0));
VASSERT_EQ("6.3", "value1", PARAM_VALUE(p6, 0));
// Quoted strings and escaped chars
parameterizedHeaderField p7;
p7.parse("X; param1=\"this is a slash: \\\"\\\\\\\"\""); // \"\\\"
VASSERT_EQ("7.1", 1, p7.getParameterCount());
VASSERT_EQ("7.2", "param1", PARAM_NAME(p7, 0));
VASSERT_EQ("7.3", "this is a slash: \"\\\"", PARAM_VALUE(p7, 0));
// Extended parameter with charset specified in more than one
// section (this is forbidden by RFC, but is should not fail)
parameterizedHeaderField p8;
p8.parse("X; param1*0*=charset1'language1'value1;\r\n"
" param1*1*=charset2'language2'value2;");
VASSERT_EQ("8.1", 1, p8.getParameterCount());
VASSERT_EQ("8.2", "param1", PARAM_NAME(p8, 0));
VASSERT_EQ("8.3", "charset1", PARAM_CHARSET(p8, 0));
VASSERT_EQ("8.4", "value1charset2'language2'value2", PARAM_BUFFER(p8, 0));
// Charset not specified in the first section (that is not encoded),
// but specified in the second one (legal)
parameterizedHeaderField p9;
p9.parse("X; param1*0=value1;\r\n"
" param1*1*=charset'language'value2;");
VASSERT_EQ("9.1", 1, p9.getParameterCount());
VASSERT_EQ("9.2", "param1", PARAM_NAME(p9, 0));
VASSERT_EQ("9.3", "charset", PARAM_CHARSET(p9, 0));
VASSERT_EQ("9.4", "value1value2", PARAM_BUFFER(p9, 0));
// Characters prefixed with '%' in a simple (not extended) section
// should not be decoded
parameterizedHeaderField p10;
p10.parse("X; param1=val%20ue1");
VASSERT_EQ("10.1", 1, p10.getParameterCount());
VASSERT_EQ("10.2", "param1", PARAM_NAME(p10, 0));
VASSERT_EQ("10.3", "val%20ue1", PARAM_VALUE(p10, 0));
// Multiple sections + charset specified and encoding
parameterizedHeaderField p11;
p11.parse("X; param1*0*=charset'language'value1a%20;"
" param1*1*=value1b%20;"
" param1*2=value1c");
VASSERT_EQ("11.1", 1, p11.getParameterCount());
VASSERT_EQ("11.2", "param1", PARAM_NAME(p11, 0));
VASSERT_EQ("11.3", "charset", PARAM_CHARSET(p11, 0));
VASSERT_EQ("11.4", "value1a value1b value1c", PARAM_BUFFER(p11, 0));
// No charset specified: defaults to US-ASCII
parameterizedHeaderField p12;
p12.parse("X; param1*='language'value1");
VASSERT_EQ("12.1", 1, p12.getParameterCount());
VASSERT_EQ("12.2", "param1", PARAM_NAME(p12, 0));
VASSERT_EQ("12.3", "us-ascii", PARAM_CHARSET(p12, 0));
VASSERT_EQ("12.4", "value1", PARAM_BUFFER(p12, 0));
}
void testGenerate()
{
// Simple parameter/value
parameterizedHeaderField p1;
p1.appendParameter(vmime::parameterFactory::getInstance()->create("param1", "value1"));
VASSERT_EQ("1", "F: X; param1=value1", p1.generate());
// Value that needs quoting (1/2)
parameterizedHeaderField p2a;
p2a.appendParameter(vmime::parameterFactory::getInstance()->create("param1", "value1a;value1b"));
VASSERT_EQ("2a", "F: X; param1=\"value1a;value1b\"", p2a.generate());
// Value that needs quoting (2/2)
parameterizedHeaderField p2b;
p2b.appendParameter(vmime::parameterFactory::getInstance()->create("param1", "va\\lue\"1"));
VASSERT_EQ("2b", "F: X; param1=\"va\\\\lue\\\"1\"", p2b.generate());
// Extended parameter with charset specifier
parameterizedHeaderField p3;
p3.appendParameter(vmime::parameterFactory::getInstance()->create("param1",
vmime::word("value 1\xe9", vmime::charset("charset"))));
VASSERT_EQ("3", "F: X; param1=\"value 1\";param1*=charset''value%201%E9", p3.generate());
// Value that spans on multiple lines
parameterizedHeaderField p4;
p4.appendParameter(vmime::parameterFactory::getInstance()->create("param1",
vmime::word("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",
vmime::charset("charset"))));
VASSERT_EQ("4", "F: X; \r\n "
"param1=abcdefghijklm;\r\n "
"param1*0*=charset''abc;\r\n "
"param1*1*=defghijkl;\r\n "
"param1*2*=mnopqrstu;\r\n "
"param1*3*=vwxyzABCD;\r\n "
"param1*4*=EFGHIJKLM;\r\n "
"param1*5*=NOPQRSTUV;\r\n "
"param1*6*=WXYZ", p4.generate(25)); // max line length = 25
}
VMIME_TEST_SUITE_END
|