-
Notifications
You must be signed in to change notification settings - Fork 100
/
header_test.go
411 lines (391 loc) · 10.8 KB
/
header_test.go
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
package enmime
import (
"bufio"
"net/mail"
"strings"
"testing"
"github.com/jhillyerd/enmime/v2/internal/textproto"
)
// Test re-encoding to base64
func TestDecodeToUTF8Base64Header(t *testing.T) {
var testTable = []struct {
in, want string
}{
{"no encoding", "no encoding"},
{"=?utf-8?q?abcABC_=24_=c2=a2_=e2=82=ac?=", "=?UTF-8?b?YWJjQUJDICQgwqIg4oKs?="},
{"=?iso-8859-1?q?#=a3_c=a9_r=ae_u=b5?=", "=?UTF-8?b?I8KjIGPCqSBywq4gdcK1?="},
{"=?big5?q?=a1=5d_=a1=61_=a1=71?=", "=?UTF-8?b?77yIIO+9myDjgIg=?="},
// Must respect separate tokens
{"=?UTF-8?Q?Miros=C5=82aw?= <u@h>", "=?UTF-8?b?TWlyb3PFgmF3?= <u@h>"},
{"First Last <u@h> (=?iso-8859-1?q?#=a3_c=a9_r=ae_u=b5?=)",
"First Last <u@h> (=?UTF-8?b?I8KjIGPCqSBywq4gdcK1?=)"},
// Quoted display name without space before angle-addr spec, issue #112
{"\"=?UTF-8?b?TWlyb3PFgmF3?=\"<u@h>", "=?UTF-8?b?Ik1pcm9zxYJhdyI=?= <u@h>"},
}
for _, tt := range testTable {
got := decodeToUTF8Base64Header(tt.in)
if got != tt.want {
t.Errorf("DecodeHeader(%q) == %q, want: %q", tt.in, got, tt.want)
}
}
}
func TestParseAddressListNoFailures(t *testing.T) {
testStrings := []string{
"Example User <[email protected]>",
`"The Example User" <[email protected]>`,
"=?UTF-8?Q?Miros=C5=82aw?= <u@h>",
"First Last <u@h> (=?iso-8859-1?q?#=a3_c=a9_r=ae_u=b5?=)",
// Quoted display name without space before angle-addr spec, issue #112
`"=?UTF-8?b?TWlyb3PFgmF3?="<u@h>`,
// Unquoted display name without space before angle-addr, issue #227
"=?utf-8?Q?=D0=9D=D0=94=D0=A4=D0=9B=D0=BA=D0=B0=20?=<[email protected]>",
// Multiple encoded words containing a colon, issue #218
"=?utf-8?Q?ze=3AStore=20?= =?utf-8?Q?Orange=20?= =?utf-8?Q?Premium=20?= =?utf-8?Q?Reseller?= <[email protected]>",
}
for _, ts := range testStrings {
t.Run(ts, func(t *testing.T) {
_, err := ParseAddressList(ts)
if err != nil {
t.Errorf("Failed to parse address list %q:\n%v", ts, err)
}
})
}
}
func TestParseAddressListResult(t *testing.T) {
testCases := []struct {
input string
want []*mail.Address
}{
{
"Example User <[email protected]>",
[]*mail.Address{{
Name: "Example User",
Address: "[email protected]"}},
},
{
"a@h, b@h, c@h",
[]*mail.Address{
{Name: "", Address: "a@h"},
{Name: "", Address: "b@h"},
{Name: "", Address: "c@h"},
},
},
{
"=?utf-8?Q?ze=3AStore=20?= =?utf-8?Q?Orange=20?= =?utf-8?Q?Premium=20?= =?utf-8?Q?Reseller?= <[email protected]>",
[]*mail.Address{{
Name: "ze:Store Orange Premium Reseller",
Address: "[email protected]"}},
},
{
`"=?UTF-8?Q?Miros=C5=82aw_Marczak?=" <[email protected]>`,
[]*mail.Address{{
Name: "Mirosław Marczak",
Address: "[email protected]",
}},
},
{
`=?iso-8859-1?q?#=a3_c=a9_r=ae_u=b5?= <a@h>, =?big5?q?=a1=5d_=a1=61_=a1=71?= <b@h>`,
[]*mail.Address{
{
Name: "#\u00a3 c\u00a9 r\u00ae u\u00b5",
Address: "a@h",
},
{
Name: "\uff08 \uff5b \u3008",
Address: "b@h",
},
},
},
{
`=?big5?Q?ext-encoding-without-comma?= <[email protected]> <[email protected]>`,
[]*mail.Address{
{
Name: "ext-encoding-without-comma",
Address: "[email protected]",
},
{
Name: "",
Address: "[email protected]",
},
},
},
{
`=?UTF-8?B?dGVzdG5hbWU=?= <[email protected]>`,
[]*mail.Address{
{
Name: "testname",
Address: "[email protected]",
},
},
},
}
for _, tc := range testCases {
t.Run(tc.input, func(t *testing.T) {
got, err := ParseAddressList(tc.input)
if err != nil {
t.Errorf("Failed to parse address list %q:\n%v", tc.input, err)
return
}
if len(got) != len(tc.want) {
t.Errorf("Got %v addresses, wanted %v", len(got), len(tc.want))
return
}
for i, want := range tc.want {
if got[i].Name != want.Name {
t.Errorf("Got Name %q, wanted %q", got[i].Name, want.Name)
}
if got[i].Address != want.Address {
t.Errorf("Got Address %q, wanted %q", got[i].Address, want.Address)
}
}
})
}
}
func TestReadHeader(t *testing.T) {
// These values will surround the test table input string.
prefix := "From: hooman\n \n being\n"
suffix := "Subject: hi\n\nPart body\n"
data := make([]byte, 16*1024)
for i := 0; i < len(data); i++ {
data[i] = 'x'
}
sdata := string(data)
var ttable = []struct {
label, input, hname, want string
correct bool
extras []string
}{
{
label: "basic crlf",
input: "Foo: bar\r\n",
hname: "Foo",
want: "bar",
correct: true,
},
{
label: "basic lf",
input: "To: anybody\n",
hname: "To",
want: "anybody",
correct: true,
},
{
label: "hyphenated",
input: "Content-Language: en\r\n",
hname: "Content-Language",
want: "en",
correct: true,
},
{
label: "numeric",
input: "Privilege: 127\n",
hname: "Privilege",
want: "127",
correct: true,
},
{
label: "space before colon",
input: "SID : 0\r\n",
hname: "SID",
want: "0",
correct: true,
},
{
label: "space in name",
input: "Audio Mode : None\r\n",
hname: "Audio Mode",
want: "None",
correct: true,
},
{
label: "sdata",
input: "Cookie: " + sdata + "\r\n",
hname: "Cookie",
want: sdata,
correct: true,
},
{
label: "missing name",
input: ": line1=foo\r\n",
correct: false,
},
{
label: "blank line in continuation",
input: "X-Continuation: line1=foo\r\n" +
" \r\n" +
" line2=bar\r\n",
hname: "X-Continuation",
want: "line1=foo line2=bar",
correct: true,
},
{
label: "lf-space continuation",
input: "Content-Type: text/plain;\n charset=us-ascii\n",
hname: "Content-Type",
want: "text/plain; charset=us-ascii",
correct: true,
},
{
label: "lf-tab continuation",
input: "X-Tabbed-Continuation: line1=foo;\n\tline2=bar\n",
hname: "X-Tabbed-Continuation",
want: "line1=foo; line2=bar",
correct: true,
},
{
label: "permitted specials in name",
input: "Begin!#$%&'*+-.^_`|~End: text\n",
hname: "Begin!#$%&'*+-.^_`|~End",
want: "text",
correct: true,
},
{
// all special characters of printable ASCII characters (exclude
// 0-9, a-z, A-Z, :, and ` (tested in next case).
label: "special characters in header field",
input: `X-!"#$%&'()*+,-./;<=>?@[\]^_{|}~:text` + "\n",
hname: `X-!"#$%&'()*+,-./;<=>?@[\]^_{|}~`,
want: "text",
correct: true,
},
{
label: "special character (`) in header field",
input: "X-`:text\n",
hname: "X-`",
want: "text",
correct: true,
},
{
label: "no space before continuation",
input: "X-Bad-Continuation: line1=foo;\nline2=bar\n",
hname: "X-Bad-Continuation",
want: "line1=foo; line2=bar",
correct: false,
},
{
label: "not really a continuation",
input: "X-Not-Continuation: line1=foo;\nline2: bar\n",
hname: "X-Not-Continuation",
want: "line1=foo;",
correct: true,
extras: []string{"line2"},
},
{
label: "continuation with header style",
input: "X-Continuation: line1=foo;\n not-a-header 15 X-Not-Header: bar\n",
hname: "X-Continuation",
want: "line1=foo; not-a-header 15 X-Not-Header: bar",
correct: true,
},
{
label: "multiline continuation with header style, few spaces",
input: "X-Continuation-DKIM-like: line1=foo;\n" +
" h=Subject:From:Reply-To:To:Date:Message-ID: List-ID:List-Unsubscribe:\n" +
" Content-Type:MIME-Version;\n",
hname: "X-Continuation-DKIM-like",
want: "line1=foo;" +
" h=Subject:From:Reply-To:To:Date:Message-ID: List-ID:List-Unsubscribe:" +
" Content-Type:MIME-Version;",
correct: true,
},
{
label: "multiline continuation, few colons",
input: "Authentication-Results: mx.google.com;\n" +
" spf=pass (google.com: sender)\n" +
" dkim=pass header.i=@1;\n" +
" dkim=pass header.i=@2\n",
hname: "Authentication-Results",
want: "mx.google.com;" +
" spf=pass (google.com: sender)" +
" dkim=pass header.i=@1;" +
" dkim=pass header.i=@2",
correct: true,
},
{
label: "continuation containing early name-colon",
input: "DKIM-Signature: a=rsa-sha256; v=1; q=dns/txt;\r\n" +
" s=krs; t=1603674005; h=Content-Transfer-Encoding: Mime-Version:\r\n" +
" Content-Type: Subject: From: To: Message-Id: Sender: Date;\r\n",
hname: "DKIM-Signature",
want: "a=rsa-sha256; v=1; q=dns/txt;" +
" s=krs; t=1603674005; h=Content-Transfer-Encoding: Mime-Version:" +
" Content-Type: Subject: From: To: Message-Id: Sender: Date;",
correct: true,
},
}
for _, tt := range ttable {
t.Run(tt.label, func(t *testing.T) {
if lastc := tt.input[len(tt.input)-1]; lastc != '\r' && lastc != '\n' {
t.Fatalf("Malformed test case, %q input does not end with a CR or LF", tt.label)
}
// Reader we will share with readHeader()
r := bufio.NewReader(strings.NewReader(prefix + tt.input + suffix))
p := &Part{}
header, err := readHeader(r, p)
if err != nil {
t.Fatal(err)
}
// Check exepcted prefix header.
got := header.Get("From")
want := "hooman being"
if got != want {
t.Errorf("Prefix (From) header mangled\ngot: %q, want: %q", got, want)
}
// Check exepcted suffix header.
got = header.Get("Subject")
want = "hi"
if got != want {
t.Errorf("Suffix (Subject) header mangled\ngot: %q, want: %q", got, want)
}
// Check exepcted header from ttable.
got = header.Get(tt.hname)
if got != tt.want {
t.Errorf(
"Stripped %q header value mismatch\ngot : %q,\nwant: %q", tt.hname, got, tt.want)
}
// Check error count.
wantErrs := 0
if !tt.correct {
wantErrs = 1
}
gotErrs := len(p.Errors)
if gotErrs != wantErrs {
t.Errorf("Got %v p.Errors, want %v", gotErrs, wantErrs)
if gotErrs > 0 {
for _, e := range p.Errors {
t.Log(e)
}
}
}
// Check for extra headers by removing expected ones.
delete(header, "From")
delete(header, "Subject")
delete(header, textproto.CanonicalEmailMIMEHeaderKey(tt.hname))
for _, hname := range tt.extras {
delete(header, textproto.CanonicalEmailMIMEHeaderKey(hname))
}
for hname := range header {
t.Errorf("Found unexpected header %q after parsing", hname)
}
// Output input if any check failed.
if t.Failed() {
t.Errorf("input: %q", tt.input)
}
// readHeader should have consumed the two header lines, and the blank line, but not the
// body
want = "Part body"
line, isPrefix, err := r.ReadLine()
got = string(line)
if err != nil {
t.Fatal(err)
}
if isPrefix {
t.Fatal("isPrefix was true, wanted false")
}
if got != want {
t.Errorf("Line got: %q, want: %q", got, want)
}
})
}
}