tmail 1.2.2 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MANIFEST +153 -150
- data/NOTES +34 -46
- data/ext/tmailscanner/tmail/extconf.rb +4 -0
- data/ext/tmailscanner/tmail/tmailscanner.c +1 -1
- data/lib/tmail/attachments.rb +1 -2
- data/lib/tmail/encode.rb +29 -7
- data/lib/tmail/mail.rb +14 -2
- data/lib/tmail/scanner_r.rb +4 -5
- data/lib/tmail/stringio.rb +1 -0
- data/lib/tmail/utils.rb +6 -6
- data/lib/tmail/version.rb +1 -1
- data/log/BugTrackingLog.txt +13 -0
- data/log/Fixme.txt +6 -0
- data/log/Testlog.txt +2226 -0
- data/log/fixme.rdoc +6 -0
- data/meta/VERSION +1 -1
- data/meta/project.yaml +8 -1
- data/setup.rb +2 -1
- data/site/img/mailman.gif +0 -0
- data/test/fixtures/raw_attack_email_with_zero_length_whitespace +29 -0
- data/test/fixtures/raw_email_with_mimepart_without_content_type +94 -0
- data/test/test_address.rb +1 -2
- data/test/test_attachments.rb +1 -2
- data/test/test_encode.rb +7 -0
- data/test/test_header.rb +3 -4
- data/test/test_mail.rb +6 -0
- data/work/script/make +0 -0
- data/work/script/rdoc +0 -0
- data/work/script/setup +0 -0
- data/work/script/test +0 -0
- metadata +197 -192
- data/log/Changelog-0.txt +0 -1189
data/lib/tmail/attachments.rb
CHANGED
@@ -17,8 +17,7 @@ module TMail
|
|
17
17
|
end
|
18
18
|
|
19
19
|
def attachment?(part)
|
20
|
-
|
21
|
-
part.header['content-type'].main_type != "text"
|
20
|
+
part.disposition_is_attachment? || part.content_type_is_text?
|
22
21
|
end
|
23
22
|
|
24
23
|
def attachments
|
data/lib/tmail/encode.rb
CHANGED
@@ -339,22 +339,36 @@ module TMail
|
|
339
339
|
def scanadd( str, force = false )
|
340
340
|
types = ''
|
341
341
|
strs = []
|
342
|
-
|
342
|
+
if str.respond_to?(:encoding)
|
343
|
+
enc = str.encoding
|
344
|
+
str.force_encoding(Encoding::ASCII_8BIT)
|
345
|
+
end
|
343
346
|
until str.empty?
|
344
347
|
if m = /\A[^\e\t\r\n ]+/.match(str)
|
345
348
|
types << (force ? 'j' : 'a')
|
346
|
-
|
347
|
-
|
349
|
+
if str.respond_to?(:encoding)
|
350
|
+
strs.push m[0].force_encoding(enc)
|
351
|
+
else
|
352
|
+
strs.push m[0]
|
353
|
+
end
|
348
354
|
elsif m = /\A[\t\r\n ]+/.match(str)
|
349
355
|
types << 's'
|
350
|
-
|
356
|
+
if str.respond_to?(:encoding)
|
357
|
+
strs.push m[0].force_encoding(enc)
|
358
|
+
else
|
359
|
+
strs.push m[0]
|
360
|
+
end
|
351
361
|
|
352
362
|
elsif m = /\A\e../.match(str)
|
353
363
|
esc = m[0]
|
354
364
|
str = m.post_match
|
355
365
|
if esc != "\e(B" and m = /\A[^\e]+/.match(str)
|
356
366
|
types << 'j'
|
357
|
-
|
367
|
+
if str.respond_to?(:encoding)
|
368
|
+
strs.push m[0].force_encoding(enc)
|
369
|
+
else
|
370
|
+
strs.push m[0]
|
371
|
+
end
|
358
372
|
end
|
359
373
|
|
360
374
|
else
|
@@ -453,7 +467,13 @@ module TMail
|
|
453
467
|
size = max_bytes(chunksize, str.size) - 6
|
454
468
|
size = (size % 2 == 0) ? (size) : (size - 1)
|
455
469
|
return nil if size <= 0
|
456
|
-
|
470
|
+
if str.respond_to?(:encoding)
|
471
|
+
enc = str.encoding
|
472
|
+
str.force_encoding(Encoding::ASCII_8BIT)
|
473
|
+
"\e$B#{str.slice!(0, size)}\e(B".force_encoding(enc)
|
474
|
+
else
|
475
|
+
"\e$B#{str.slice!(0, size)}\e(B"
|
476
|
+
end
|
457
477
|
end
|
458
478
|
|
459
479
|
def extract_A( chunksize, str )
|
@@ -526,7 +546,7 @@ module TMail
|
|
526
546
|
|
527
547
|
# Check the text to see if there is whitespace, or if not
|
528
548
|
@wrapped_text = []
|
529
|
-
until @text
|
549
|
+
until @text.blank?
|
530
550
|
fold_the_string
|
531
551
|
end
|
532
552
|
@text = @wrapped_text.join("#{@eol}#{SPACER}")
|
@@ -537,10 +557,12 @@ module TMail
|
|
537
557
|
# Is the location of the whitespace shorter than the RCF_2822_MAX_LENGTH?
|
538
558
|
# if there is no whitespace in the string, then this
|
539
559
|
unless mazsize(whitespace_location) <= 0
|
560
|
+
@text.strip!
|
540
561
|
@wrapped_text << @text.slice!(0...whitespace_location)
|
541
562
|
# If it is not less, we have to wrap it destructively
|
542
563
|
else
|
543
564
|
slice_point = RFC_2822_MAX_LENGTH - @curlen - @lwsp.length
|
565
|
+
@text.strip!
|
544
566
|
@wrapped_text << @text.slice!(0...slice_point)
|
545
567
|
end
|
546
568
|
end
|
data/lib/tmail/mail.rb
CHANGED
@@ -408,8 +408,8 @@ module TMail
|
|
408
408
|
when /\AFrom (\S+)/
|
409
409
|
unixfrom = $1
|
410
410
|
|
411
|
-
|
412
|
-
|
411
|
+
when /^charset=.*/
|
412
|
+
|
413
413
|
else
|
414
414
|
raise SyntaxError, "wrong mail header: '#{line.inspect}'"
|
415
415
|
end
|
@@ -501,6 +501,18 @@ module TMail
|
|
501
501
|
def each_part( &block )
|
502
502
|
parts().each(&block)
|
503
503
|
end
|
504
|
+
|
505
|
+
# Returns true if the content type of this part of the email is
|
506
|
+
# a disposition attachment
|
507
|
+
def disposition_is_attachment?
|
508
|
+
(self['content-disposition'] && self['content-disposition'].disposition == "attachment")
|
509
|
+
end
|
510
|
+
|
511
|
+
# Returns true if this part's content main type is text, else returns false.
|
512
|
+
# By main type is meant "text/plain" is text. "text/html" is text
|
513
|
+
def content_type_is_text?
|
514
|
+
self.header['content-type'] && (self.header['content-type'].main_type != "text")
|
515
|
+
end
|
504
516
|
|
505
517
|
private
|
506
518
|
|
data/lib/tmail/scanner_r.rb
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
#
|
2
1
|
# scanner_r.rb
|
3
2
|
#
|
4
3
|
#--
|
@@ -33,7 +32,7 @@ module TMail
|
|
33
32
|
|
34
33
|
class TMailScanner
|
35
34
|
|
36
|
-
Version = '
|
35
|
+
Version = '1.2.3'
|
37
36
|
Version.freeze
|
38
37
|
|
39
38
|
MIME_HEADERS = {
|
@@ -49,9 +48,9 @@ module TMail
|
|
49
48
|
tokenchars = alnum + Regexp.quote(tokensyms)
|
50
49
|
iso2022str = '\e(?!\(B)..(?:[^\e]+|\e(?!\(B)..)*\e\(B'
|
51
50
|
|
52
|
-
eucstr =
|
53
|
-
sjisstr =
|
54
|
-
utf8str =
|
51
|
+
eucstr = "(?:[\xa1-\xfe][\xa1-\xfe])+"
|
52
|
+
sjisstr = "(?:[\x81-\x9f\xe0-\xef][\x40-\x7e\x80-\xfc])+"
|
53
|
+
utf8str = "(?:[\xc0-\xdf][\x80-\xbf]|[\xe0-\xef][\x80-\xbf][\x80-\xbf])+"
|
55
54
|
|
56
55
|
quoted_with_iso2022 = /\A(?:[^\\\e"]+|#{iso2022str})+/n
|
57
56
|
domlit_with_iso2022 = /\A(?:[^\\\e\]]+|#{iso2022str})+/n
|
data/lib/tmail/stringio.rb
CHANGED
data/lib/tmail/utils.rb
CHANGED
@@ -109,16 +109,16 @@ module TMail
|
|
109
109
|
# It also provides methods you can call to determine if a string is safe
|
110
110
|
module TextUtils
|
111
111
|
|
112
|
-
aspecial =
|
113
|
-
tspecial =
|
114
|
-
lwsp =
|
115
|
-
control =
|
112
|
+
aspecial = %Q|()<>[]:;.\\,"|
|
113
|
+
tspecial = %Q|()<>[];:\\,"/?=|
|
114
|
+
lwsp = %Q| \t\r\n|
|
115
|
+
control = %Q|\x00-\x1f\x7f-\xff|
|
116
116
|
|
117
|
+
CONTROL_CHAR = /[#{control}]/n
|
117
118
|
ATOM_UNSAFE = /[#{Regexp.quote aspecial}#{control}#{lwsp}]/n
|
118
119
|
PHRASE_UNSAFE = /[#{Regexp.quote aspecial}#{control}]/n
|
119
120
|
TOKEN_UNSAFE = /[#{Regexp.quote tspecial}#{control}#{lwsp}]/n
|
120
|
-
|
121
|
-
|
121
|
+
|
122
122
|
# Returns true if the string supplied is free from characters not allowed as an ATOM
|
123
123
|
def atom_safe?( str )
|
124
124
|
not ATOM_UNSAFE === str
|
data/lib/tmail/version.rb
CHANGED
data/log/BugTrackingLog.txt
CHANGED
@@ -1,6 +1,19 @@
|
|
1
|
+
== Mon Mar 31 04:26:19 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
|
2
|
+
|
3
|
+
* Closed #19203 - TMail errors in Ruby 1.9.1 on invalid multibyte chars
|
4
|
+
|
5
|
+
== Mon Mar 17 09:08:04 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
|
6
|
+
|
7
|
+
* Closed #18881 - TMail goes into an endless loop if extra whitespace on a line to be wrapped
|
8
|
+
|
9
|
+
== Fri Mar 14 12:01:31 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
|
10
|
+
|
11
|
+
* Closed #18814 - Fixed attchment.rb failing on mail part that had a nil content-type (Mikel Lindsaar)
|
12
|
+
|
1
13
|
== Sat Mar 1 23:34:40 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
|
2
14
|
|
3
15
|
* Closed #18516 - Fix TMail::Mail#preamble, and add #preamble= (Charles Lowe)
|
16
|
+
|
4
17
|
* Closed #18515 - Removed ftools from test case (Charles Lowe)
|
5
18
|
|
6
19
|
== Fri Feb 22 15:28:16 GMT 2008 Mikel Lindsaar <raasdnil@gmail.com>
|
data/log/Fixme.txt
ADDED
data/log/Testlog.txt
CHANGED
@@ -112,3 +112,2229 @@ test_ATTRS(ContentDispositionHeaderTester)
|
|
112
112
|
67 tests, 312 assertions, 1 failures, 0 errors
|
113
113
|
|
114
114
|
|
115
|
+
= Solo Test @ Fri Mar 14 22:59:26 +1100 2008
|
116
|
+
|
117
|
+
TEST FILE TESTS ASSERTIONS FAILURES ERRORS
|
118
|
+
test/test_address.rb 29 1686 0 1 [FAIL]
|
119
|
+
test/test_attachments.rb 3 4 0 0 [PASS]
|
120
|
+
test/test_base64.rb 3 1430 0 0 [PASS]
|
121
|
+
test/test_encode.rb 1 26 0 0 [PASS]
|
122
|
+
test/test_header.rb 67 312 1 0 [FAIL]
|
123
|
+
test/test_helper.rb 0 0 0 0 [PASS]
|
124
|
+
test/test_mail.rb 47 215 0 0 [PASS]
|
125
|
+
test/test_mbox.rb 12 63 0 0 [PASS]
|
126
|
+
test/test_port.rb 31 118 0 0 [PASS]
|
127
|
+
test/test_quote.rb 11 11 0 0 [PASS]
|
128
|
+
test/test_scanner.rb 3 117 0 0 [PASS]
|
129
|
+
test/test_utils.rb 3 3 0 0 [PASS]
|
130
|
+
TOTAL 210 3985 1 1
|
131
|
+
|
132
|
+
-- Failures and Errors --
|
133
|
+
|
134
|
+
Loaded suite test/test_address
|
135
|
+
Started
|
136
|
+
...............E.............
|
137
|
+
Finished in 0.09372 seconds.
|
138
|
+
|
139
|
+
1) Error:
|
140
|
+
test_parse__rawjp(TestAddress):
|
141
|
+
TMail::SyntaxError: parse error on token error
|
142
|
+
parser.y:379:in `on_error'
|
143
|
+
parser.y:379:in `_racc_yyparse_c'
|
144
|
+
parser.y:375:in `scan'
|
145
|
+
parser.y:375:in `parse_in'
|
146
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
147
|
+
racc/parser.rb:152:in `__send__'
|
148
|
+
racc/parser.rb:152:in `yyparse'
|
149
|
+
parser.y:366:in `parse'
|
150
|
+
parser.y:344:in `parse'
|
151
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
152
|
+
test/test_address.rb:90:in `validate_case__address'
|
153
|
+
test/test_address.rb:248:in `_test_parse__euc'
|
154
|
+
test/test_address.rb:237:in `test_parse__rawjp'
|
155
|
+
|
156
|
+
29 tests, 1686 assertions, 0 failures, 1 errors
|
157
|
+
Loaded suite test/test_header
|
158
|
+
Started
|
159
|
+
..F................................................................
|
160
|
+
Finished in 0.044237 seconds.
|
161
|
+
|
162
|
+
1) Failure:
|
163
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
164
|
+
[test/test_header.rb:825:in `_test_raw_iso2022jp'
|
165
|
+
test/test_header.rb:756:in `test_ATTRS']:
|
166
|
+
<"attachment"> expected but was
|
167
|
+
<nil>.
|
168
|
+
|
169
|
+
67 tests, 312 assertions, 1 failures, 0 errors
|
170
|
+
|
171
|
+
|
172
|
+
= Cross Test @ Fri Mar 14 23:00:58 +1100 2008
|
173
|
+
|
174
|
+
TEST FILE TESTS ASSERTIONS FAILURES ERRORS
|
175
|
+
test/test_address.rb test/test_address.rb 29 1686 0 1 [FAIL]
|
176
|
+
test/test_address.rb test/test_attachments.rb 32 1690 0 1 [FAIL]
|
177
|
+
test/test_address.rb test/test_base64.rb 32 3116 0 1 [FAIL]
|
178
|
+
test/test_address.rb test/test_encode.rb 30 1712 0 1 [FAIL]
|
179
|
+
test/test_address.rb test/test_header.rb 96 1998 1 1 [FAIL]
|
180
|
+
test/test_address.rb test/test_helper.rb 29 1686 0 1 [FAIL]
|
181
|
+
test/test_address.rb test/test_mail.rb 76 1901 0 1 [FAIL]
|
182
|
+
test/test_address.rb test/test_mbox.rb 41 1749 0 1 [FAIL]
|
183
|
+
test/test_address.rb test/test_port.rb 60 1804 0 1 [FAIL]
|
184
|
+
test/test_address.rb test/test_quote.rb 40 1697 0 1 [FAIL]
|
185
|
+
test/test_address.rb test/test_scanner.rb 32 1803 0 1 [FAIL]
|
186
|
+
test/test_address.rb test/test_utils.rb 32 1689 0 1 [FAIL]
|
187
|
+
test/test_attachments.rb test/test_address.rb 32 1690 0 1 [FAIL]
|
188
|
+
test/test_attachments.rb test/test_attachments.rb 3 4 0 0 [PASS]
|
189
|
+
test/test_attachments.rb test/test_base64.rb 6 1434 0 0 [PASS]
|
190
|
+
test/test_attachments.rb test/test_encode.rb 4 30 0 0 [PASS]
|
191
|
+
test/test_attachments.rb test/test_header.rb 70 316 1 0 [FAIL]
|
192
|
+
test/test_attachments.rb test/test_helper.rb 3 4 0 0 [PASS]
|
193
|
+
test/test_attachments.rb test/test_mail.rb 50 219 0 0 [PASS]
|
194
|
+
test/test_attachments.rb test/test_mbox.rb 15 67 0 0 [PASS]
|
195
|
+
test/test_attachments.rb test/test_port.rb 34 122 0 0 [PASS]
|
196
|
+
test/test_attachments.rb test/test_quote.rb 14 15 0 0 [PASS]
|
197
|
+
test/test_attachments.rb test/test_scanner.rb 6 121 0 0 [PASS]
|
198
|
+
test/test_attachments.rb test/test_utils.rb 6 7 0 0 [PASS]
|
199
|
+
test/test_base64.rb test/test_address.rb 32 3116 0 1 [FAIL]
|
200
|
+
test/test_base64.rb test/test_attachments.rb 6 1434 0 0 [PASS]
|
201
|
+
test/test_base64.rb test/test_base64.rb 3 1430 0 0 [PASS]
|
202
|
+
test/test_base64.rb test/test_encode.rb 4 1456 0 0 [PASS]
|
203
|
+
test/test_base64.rb test/test_header.rb 70 1742 1 0 [FAIL]
|
204
|
+
test/test_base64.rb test/test_helper.rb 3 1430 0 0 [PASS]
|
205
|
+
test/test_base64.rb test/test_mail.rb 50 1645 0 0 [PASS]
|
206
|
+
test/test_base64.rb test/test_mbox.rb 15 1493 0 0 [PASS]
|
207
|
+
test/test_base64.rb test/test_port.rb 34 1548 0 0 [PASS]
|
208
|
+
test/test_base64.rb test/test_quote.rb 14 1441 0 0 [PASS]
|
209
|
+
test/test_base64.rb test/test_scanner.rb 6 1547 0 0 [PASS]
|
210
|
+
test/test_base64.rb test/test_utils.rb 6 1433 0 0 [PASS]
|
211
|
+
test/test_encode.rb test/test_address.rb 30 1712 0 1 [FAIL]
|
212
|
+
test/test_encode.rb test/test_attachments.rb 4 30 0 0 [PASS]
|
213
|
+
test/test_encode.rb test/test_base64.rb 4 1456 0 0 [PASS]
|
214
|
+
test/test_encode.rb test/test_encode.rb 1 26 0 0 [PASS]
|
215
|
+
test/test_encode.rb test/test_header.rb 68 338 1 0 [FAIL]
|
216
|
+
test/test_encode.rb test/test_helper.rb 1 26 0 0 [PASS]
|
217
|
+
test/test_encode.rb test/test_mail.rb 48 241 0 0 [PASS]
|
218
|
+
test/test_encode.rb test/test_mbox.rb 13 89 0 0 [PASS]
|
219
|
+
test/test_encode.rb test/test_port.rb 32 144 0 0 [PASS]
|
220
|
+
test/test_encode.rb test/test_quote.rb 12 37 0 0 [PASS]
|
221
|
+
test/test_encode.rb test/test_scanner.rb 4 143 0 0 [PASS]
|
222
|
+
test/test_encode.rb test/test_utils.rb 4 29 0 0 [PASS]
|
223
|
+
test/test_header.rb test/test_address.rb 96 1998 1 1 [FAIL]
|
224
|
+
test/test_header.rb test/test_attachments.rb 70 316 1 0 [FAIL]
|
225
|
+
test/test_header.rb test/test_base64.rb 70 1742 1 0 [FAIL]
|
226
|
+
test/test_header.rb test/test_encode.rb 68 338 1 0 [FAIL]
|
227
|
+
test/test_header.rb test/test_header.rb 67 312 1 0 [FAIL]
|
228
|
+
test/test_header.rb test/test_helper.rb 67 312 1 0 [FAIL]
|
229
|
+
test/test_header.rb test/test_mail.rb 114 527 1 0 [FAIL]
|
230
|
+
test/test_header.rb test/test_mbox.rb 79 375 1 0 [FAIL]
|
231
|
+
test/test_header.rb test/test_port.rb 98 430 1 0 [FAIL]
|
232
|
+
test/test_header.rb test/test_quote.rb 78 323 1 0 [FAIL]
|
233
|
+
test/test_header.rb test/test_scanner.rb 70 429 1 0 [FAIL]
|
234
|
+
test/test_header.rb test/test_utils.rb 70 315 1 0 [FAIL]
|
235
|
+
test/test_helper.rb test/test_address.rb 29 1686 0 1 [FAIL]
|
236
|
+
test/test_helper.rb test/test_attachments.rb 3 4 0 0 [PASS]
|
237
|
+
test/test_helper.rb test/test_base64.rb 3 1430 0 0 [PASS]
|
238
|
+
test/test_helper.rb test/test_encode.rb 1 26 0 0 [PASS]
|
239
|
+
test/test_helper.rb test/test_header.rb 67 312 1 0 [FAIL]
|
240
|
+
test/test_helper.rb test/test_helper.rb 210 3985 1 1 [FAIL]
|
241
|
+
test/test_helper.rb test/test_mail.rb 47 215 0 0 [PASS]
|
242
|
+
test/test_helper.rb test/test_mbox.rb 12 63 0 0 [PASS]
|
243
|
+
test/test_helper.rb test/test_port.rb 31 118 0 0 [PASS]
|
244
|
+
test/test_helper.rb test/test_quote.rb 11 11 0 0 [PASS]
|
245
|
+
test/test_helper.rb test/test_scanner.rb 3 117 0 0 [PASS]
|
246
|
+
test/test_helper.rb test/test_utils.rb 3 3 0 0 [PASS]
|
247
|
+
test/test_mail.rb test/test_address.rb 76 1901 0 1 [FAIL]
|
248
|
+
test/test_mail.rb test/test_attachments.rb 50 219 0 0 [PASS]
|
249
|
+
test/test_mail.rb test/test_base64.rb 50 1645 0 0 [PASS]
|
250
|
+
test/test_mail.rb test/test_encode.rb 48 241 0 0 [PASS]
|
251
|
+
test/test_mail.rb test/test_header.rb 114 527 1 0 [FAIL]
|
252
|
+
test/test_mail.rb test/test_helper.rb 47 215 0 0 [PASS]
|
253
|
+
test/test_mail.rb test/test_mail.rb 47 215 0 0 [PASS]
|
254
|
+
test/test_mail.rb test/test_mbox.rb 59 278 0 0 [PASS]
|
255
|
+
test/test_mail.rb test/test_port.rb 78 333 0 0 [PASS]
|
256
|
+
test/test_mail.rb test/test_quote.rb 58 226 0 0 [PASS]
|
257
|
+
test/test_mail.rb test/test_scanner.rb 50 332 0 0 [PASS]
|
258
|
+
test/test_mail.rb test/test_utils.rb 50 218 0 0 [PASS]
|
259
|
+
test/test_mbox.rb test/test_address.rb 41 1749 0 1 [FAIL]
|
260
|
+
test/test_mbox.rb test/test_attachments.rb 15 67 0 0 [PASS]
|
261
|
+
test/test_mbox.rb test/test_base64.rb 15 1493 0 0 [PASS]
|
262
|
+
test/test_mbox.rb test/test_encode.rb 13 89 0 0 [PASS]
|
263
|
+
test/test_mbox.rb test/test_header.rb 79 375 1 0 [FAIL]
|
264
|
+
test/test_mbox.rb test/test_helper.rb 12 63 0 0 [PASS]
|
265
|
+
test/test_mbox.rb test/test_mail.rb 59 278 0 0 [PASS]
|
266
|
+
test/test_mbox.rb test/test_mbox.rb 12 63 0 0 [PASS]
|
267
|
+
test/test_mbox.rb test/test_port.rb 43 181 0 0 [PASS]
|
268
|
+
test/test_mbox.rb test/test_quote.rb 23 74 0 0 [PASS]
|
269
|
+
test/test_mbox.rb test/test_scanner.rb 15 180 0 0 [PASS]
|
270
|
+
test/test_mbox.rb test/test_utils.rb 15 66 0 0 [PASS]
|
271
|
+
test/test_port.rb test/test_address.rb 60 1804 0 1 [FAIL]
|
272
|
+
test/test_port.rb test/test_attachments.rb 34 122 0 0 [PASS]
|
273
|
+
test/test_port.rb test/test_base64.rb 34 1548 0 0 [PASS]
|
274
|
+
test/test_port.rb test/test_encode.rb 32 144 0 0 [PASS]
|
275
|
+
test/test_port.rb test/test_header.rb 98 430 1 0 [FAIL]
|
276
|
+
test/test_port.rb test/test_helper.rb 31 118 0 0 [PASS]
|
277
|
+
test/test_port.rb test/test_mail.rb 78 333 0 0 [PASS]
|
278
|
+
test/test_port.rb test/test_mbox.rb 43 181 0 0 [PASS]
|
279
|
+
test/test_port.rb test/test_port.rb 31 118 0 0 [PASS]
|
280
|
+
test/test_port.rb test/test_quote.rb 42 129 0 0 [PASS]
|
281
|
+
test/test_port.rb test/test_scanner.rb 34 235 0 0 [PASS]
|
282
|
+
test/test_port.rb test/test_utils.rb 34 121 0 0 [PASS]
|
283
|
+
test/test_quote.rb test/test_address.rb 40 1697 0 1 [FAIL]
|
284
|
+
test/test_quote.rb test/test_attachments.rb 14 15 0 0 [PASS]
|
285
|
+
test/test_quote.rb test/test_base64.rb 14 1441 0 0 [PASS]
|
286
|
+
test/test_quote.rb test/test_encode.rb 12 37 0 0 [PASS]
|
287
|
+
test/test_quote.rb test/test_header.rb 78 323 1 0 [FAIL]
|
288
|
+
test/test_quote.rb test/test_helper.rb 11 11 0 0 [PASS]
|
289
|
+
test/test_quote.rb test/test_mail.rb 58 226 0 0 [PASS]
|
290
|
+
test/test_quote.rb test/test_mbox.rb 23 74 0 0 [PASS]
|
291
|
+
test/test_quote.rb test/test_port.rb 42 129 0 0 [PASS]
|
292
|
+
test/test_quote.rb test/test_quote.rb 11 11 0 0 [PASS]
|
293
|
+
test/test_quote.rb test/test_scanner.rb 14 128 0 0 [PASS]
|
294
|
+
test/test_quote.rb test/test_utils.rb 14 14 0 0 [PASS]
|
295
|
+
test/test_scanner.rb test/test_address.rb 32 1803 0 1 [FAIL]
|
296
|
+
test/test_scanner.rb test/test_attachments.rb 6 121 0 0 [PASS]
|
297
|
+
test/test_scanner.rb test/test_base64.rb 6 1547 0 0 [PASS]
|
298
|
+
test/test_scanner.rb test/test_encode.rb 4 143 0 0 [PASS]
|
299
|
+
test/test_scanner.rb test/test_header.rb 70 429 1 0 [FAIL]
|
300
|
+
test/test_scanner.rb test/test_helper.rb 3 117 0 0 [PASS]
|
301
|
+
test/test_scanner.rb test/test_mail.rb 50 332 0 0 [PASS]
|
302
|
+
test/test_scanner.rb test/test_mbox.rb 15 180 0 0 [PASS]
|
303
|
+
test/test_scanner.rb test/test_port.rb 34 235 0 0 [PASS]
|
304
|
+
test/test_scanner.rb test/test_quote.rb 14 128 0 0 [PASS]
|
305
|
+
test/test_scanner.rb test/test_scanner.rb 3 117 0 0 [PASS]
|
306
|
+
test/test_scanner.rb test/test_utils.rb 6 120 0 0 [PASS]
|
307
|
+
test/test_utils.rb test/test_address.rb 32 1689 0 1 [FAIL]
|
308
|
+
test/test_utils.rb test/test_attachments.rb 6 7 0 0 [PASS]
|
309
|
+
test/test_utils.rb test/test_base64.rb 6 1433 0 0 [PASS]
|
310
|
+
test/test_utils.rb test/test_encode.rb 4 29 0 0 [PASS]
|
311
|
+
test/test_utils.rb test/test_header.rb 70 315 1 0 [FAIL]
|
312
|
+
test/test_utils.rb test/test_helper.rb 3 3 0 0 [PASS]
|
313
|
+
test/test_utils.rb test/test_mail.rb 50 218 0 0 [PASS]
|
314
|
+
test/test_utils.rb test/test_mbox.rb 15 66 0 0 [PASS]
|
315
|
+
test/test_utils.rb test/test_port.rb 34 121 0 0 [PASS]
|
316
|
+
test/test_utils.rb test/test_quote.rb 14 14 0 0 [PASS]
|
317
|
+
test/test_utils.rb test/test_scanner.rb 6 120 0 0 [PASS]
|
318
|
+
test/test_utils.rb test/test_utils.rb 3 3 0 0 [PASS]
|
319
|
+
TOTAL 5040 95640 24 24
|
320
|
+
|
321
|
+
-- Failures and Errors --
|
322
|
+
|
323
|
+
Loaded suite -e
|
324
|
+
Started
|
325
|
+
...............E.............
|
326
|
+
Finished in 0.09302 seconds.
|
327
|
+
|
328
|
+
1) Error:
|
329
|
+
test_parse__rawjp(TestAddress):
|
330
|
+
TMail::SyntaxError: parse error on token error
|
331
|
+
parser.y:379:in `on_error'
|
332
|
+
parser.y:379:in `_racc_yyparse_c'
|
333
|
+
parser.y:375:in `scan'
|
334
|
+
parser.y:375:in `parse_in'
|
335
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
336
|
+
racc/parser.rb:152:in `__send__'
|
337
|
+
racc/parser.rb:152:in `yyparse'
|
338
|
+
parser.y:366:in `parse'
|
339
|
+
parser.y:344:in `parse'
|
340
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
341
|
+
./test/test_address.rb:90:in `validate_case__address'
|
342
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
343
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
344
|
+
|
345
|
+
29 tests, 1686 assertions, 0 failures, 1 errors
|
346
|
+
Loaded suite -e
|
347
|
+
Started
|
348
|
+
...............E................
|
349
|
+
Finished in 0.104716 seconds.
|
350
|
+
|
351
|
+
1) Error:
|
352
|
+
test_parse__rawjp(TestAddress):
|
353
|
+
TMail::SyntaxError: parse error on token error
|
354
|
+
parser.y:379:in `on_error'
|
355
|
+
parser.y:379:in `_racc_yyparse_c'
|
356
|
+
parser.y:375:in `scan'
|
357
|
+
parser.y:375:in `parse_in'
|
358
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
359
|
+
racc/parser.rb:152:in `__send__'
|
360
|
+
racc/parser.rb:152:in `yyparse'
|
361
|
+
parser.y:366:in `parse'
|
362
|
+
parser.y:344:in `parse'
|
363
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
364
|
+
./test/test_address.rb:90:in `validate_case__address'
|
365
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
366
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
367
|
+
|
368
|
+
32 tests, 1690 assertions, 0 failures, 1 errors
|
369
|
+
Loaded suite -e
|
370
|
+
Started
|
371
|
+
...............E................
|
372
|
+
Finished in 0.179128 seconds.
|
373
|
+
|
374
|
+
1) Error:
|
375
|
+
test_parse__rawjp(TestAddress):
|
376
|
+
TMail::SyntaxError: parse error on token error
|
377
|
+
parser.y:379:in `on_error'
|
378
|
+
parser.y:379:in `_racc_yyparse_c'
|
379
|
+
parser.y:375:in `scan'
|
380
|
+
parser.y:375:in `parse_in'
|
381
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
382
|
+
racc/parser.rb:152:in `__send__'
|
383
|
+
racc/parser.rb:152:in `yyparse'
|
384
|
+
parser.y:366:in `parse'
|
385
|
+
parser.y:344:in `parse'
|
386
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
387
|
+
./test/test_address.rb:90:in `validate_case__address'
|
388
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
389
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
390
|
+
|
391
|
+
32 tests, 3116 assertions, 0 failures, 1 errors
|
392
|
+
Loaded suite -e
|
393
|
+
Started
|
394
|
+
...............E..............
|
395
|
+
Finished in 0.102972 seconds.
|
396
|
+
|
397
|
+
1) Error:
|
398
|
+
test_parse__rawjp(TestAddress):
|
399
|
+
TMail::SyntaxError: parse error on token error
|
400
|
+
parser.y:379:in `on_error'
|
401
|
+
parser.y:379:in `_racc_yyparse_c'
|
402
|
+
parser.y:375:in `scan'
|
403
|
+
parser.y:375:in `parse_in'
|
404
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
405
|
+
racc/parser.rb:152:in `__send__'
|
406
|
+
racc/parser.rb:152:in `yyparse'
|
407
|
+
parser.y:366:in `parse'
|
408
|
+
parser.y:344:in `parse'
|
409
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
410
|
+
./test/test_address.rb:90:in `validate_case__address'
|
411
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
412
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
413
|
+
|
414
|
+
30 tests, 1712 assertions, 0 failures, 1 errors
|
415
|
+
Loaded suite -e
|
416
|
+
Started
|
417
|
+
..F.............................................................................E...............
|
418
|
+
Finished in 0.125127 seconds.
|
419
|
+
|
420
|
+
1) Failure:
|
421
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
422
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
423
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
424
|
+
<"attachment"> expected but was
|
425
|
+
<nil>.
|
426
|
+
|
427
|
+
2) Error:
|
428
|
+
test_parse__rawjp(TestAddress):
|
429
|
+
TMail::SyntaxError: parse error on token error
|
430
|
+
parser.y:379:in `on_error'
|
431
|
+
parser.y:379:in `_racc_yyparse_c'
|
432
|
+
parser.y:375:in `scan'
|
433
|
+
parser.y:375:in `parse_in'
|
434
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
435
|
+
racc/parser.rb:152:in `__send__'
|
436
|
+
racc/parser.rb:152:in `yyparse'
|
437
|
+
parser.y:366:in `parse'
|
438
|
+
parser.y:344:in `parse'
|
439
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
440
|
+
./test/test_address.rb:90:in `validate_case__address'
|
441
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
442
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
443
|
+
|
444
|
+
96 tests, 1998 assertions, 1 failures, 1 errors
|
445
|
+
Loaded suite -e
|
446
|
+
Started
|
447
|
+
...............E.............
|
448
|
+
Finished in 0.092103 seconds.
|
449
|
+
|
450
|
+
1) Error:
|
451
|
+
test_parse__rawjp(TestAddress):
|
452
|
+
TMail::SyntaxError: parse error on token error
|
453
|
+
parser.y:379:in `on_error'
|
454
|
+
parser.y:379:in `_racc_yyparse_c'
|
455
|
+
parser.y:375:in `scan'
|
456
|
+
parser.y:375:in `parse_in'
|
457
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
458
|
+
racc/parser.rb:152:in `__send__'
|
459
|
+
racc/parser.rb:152:in `yyparse'
|
460
|
+
parser.y:366:in `parse'
|
461
|
+
parser.y:344:in `parse'
|
462
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
463
|
+
./test/test_address.rb:90:in `validate_case__address'
|
464
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
465
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
466
|
+
|
467
|
+
29 tests, 1686 assertions, 0 failures, 1 errors
|
468
|
+
Loaded suite -e
|
469
|
+
Started
|
470
|
+
...............E............................................................
|
471
|
+
Finished in 0.145643 seconds.
|
472
|
+
|
473
|
+
1) Error:
|
474
|
+
test_parse__rawjp(TestAddress):
|
475
|
+
TMail::SyntaxError: parse error on token error
|
476
|
+
parser.y:379:in `on_error'
|
477
|
+
parser.y:379:in `_racc_yyparse_c'
|
478
|
+
parser.y:375:in `scan'
|
479
|
+
parser.y:375:in `parse_in'
|
480
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
481
|
+
racc/parser.rb:152:in `__send__'
|
482
|
+
racc/parser.rb:152:in `yyparse'
|
483
|
+
parser.y:366:in `parse'
|
484
|
+
parser.y:344:in `parse'
|
485
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
486
|
+
./test/test_address.rb:90:in `validate_case__address'
|
487
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
488
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
489
|
+
|
490
|
+
76 tests, 1901 assertions, 0 failures, 1 errors
|
491
|
+
Loaded suite -e
|
492
|
+
Started
|
493
|
+
...........................E.............
|
494
|
+
Finished in 0.155874 seconds.
|
495
|
+
|
496
|
+
1) Error:
|
497
|
+
test_parse__rawjp(TestAddress):
|
498
|
+
TMail::SyntaxError: parse error on token error
|
499
|
+
parser.y:379:in `on_error'
|
500
|
+
parser.y:379:in `_racc_yyparse_c'
|
501
|
+
parser.y:375:in `scan'
|
502
|
+
parser.y:375:in `parse_in'
|
503
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
504
|
+
racc/parser.rb:152:in `__send__'
|
505
|
+
racc/parser.rb:152:in `yyparse'
|
506
|
+
parser.y:366:in `parse'
|
507
|
+
parser.y:344:in `parse'
|
508
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
509
|
+
./test/test_address.rb:90:in `validate_case__address'
|
510
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
511
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
512
|
+
|
513
|
+
41 tests, 1749 assertions, 0 failures, 1 errors
|
514
|
+
Loaded suite -e
|
515
|
+
Started
|
516
|
+
..............................................E.............
|
517
|
+
Finished in 0.18006 seconds.
|
518
|
+
|
519
|
+
1) Error:
|
520
|
+
test_parse__rawjp(TestAddress):
|
521
|
+
TMail::SyntaxError: parse error on token error
|
522
|
+
parser.y:379:in `on_error'
|
523
|
+
parser.y:379:in `_racc_yyparse_c'
|
524
|
+
parser.y:375:in `scan'
|
525
|
+
parser.y:375:in `parse_in'
|
526
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
527
|
+
racc/parser.rb:152:in `__send__'
|
528
|
+
racc/parser.rb:152:in `yyparse'
|
529
|
+
parser.y:366:in `parse'
|
530
|
+
parser.y:344:in `parse'
|
531
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
532
|
+
./test/test_address.rb:90:in `validate_case__address'
|
533
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
534
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
535
|
+
|
536
|
+
60 tests, 1804 assertions, 0 failures, 1 errors
|
537
|
+
Loaded suite -e
|
538
|
+
Started
|
539
|
+
...............E........................
|
540
|
+
Finished in 0.101734 seconds.
|
541
|
+
|
542
|
+
1) Error:
|
543
|
+
test_parse__rawjp(TestAddress):
|
544
|
+
TMail::SyntaxError: parse error on token error
|
545
|
+
parser.y:379:in `on_error'
|
546
|
+
parser.y:379:in `_racc_yyparse_c'
|
547
|
+
parser.y:375:in `scan'
|
548
|
+
parser.y:375:in `parse_in'
|
549
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
550
|
+
racc/parser.rb:152:in `__send__'
|
551
|
+
racc/parser.rb:152:in `yyparse'
|
552
|
+
parser.y:366:in `parse'
|
553
|
+
parser.y:344:in `parse'
|
554
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
555
|
+
./test/test_address.rb:90:in `validate_case__address'
|
556
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
557
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
558
|
+
|
559
|
+
40 tests, 1697 assertions, 0 failures, 1 errors
|
560
|
+
Loaded suite -e
|
561
|
+
Started
|
562
|
+
..................E.............
|
563
|
+
Finished in 0.100893 seconds.
|
564
|
+
|
565
|
+
1) Error:
|
566
|
+
test_parse__rawjp(TestAddress):
|
567
|
+
TMail::SyntaxError: parse error on token error
|
568
|
+
parser.y:379:in `on_error'
|
569
|
+
parser.y:379:in `_racc_yyparse_c'
|
570
|
+
parser.y:375:in `scan'
|
571
|
+
parser.y:375:in `parse_in'
|
572
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
573
|
+
racc/parser.rb:152:in `__send__'
|
574
|
+
racc/parser.rb:152:in `yyparse'
|
575
|
+
parser.y:366:in `parse'
|
576
|
+
parser.y:344:in `parse'
|
577
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
578
|
+
./test/test_address.rb:90:in `validate_case__address'
|
579
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
580
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
581
|
+
|
582
|
+
32 tests, 1803 assertions, 0 failures, 1 errors
|
583
|
+
Loaded suite -e
|
584
|
+
Started
|
585
|
+
...............E................
|
586
|
+
Finished in 0.092059 seconds.
|
587
|
+
|
588
|
+
1) Error:
|
589
|
+
test_parse__rawjp(TestAddress):
|
590
|
+
TMail::SyntaxError: parse error on token error
|
591
|
+
parser.y:379:in `on_error'
|
592
|
+
parser.y:379:in `_racc_yyparse_c'
|
593
|
+
parser.y:375:in `scan'
|
594
|
+
parser.y:375:in `parse_in'
|
595
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
596
|
+
racc/parser.rb:152:in `__send__'
|
597
|
+
racc/parser.rb:152:in `yyparse'
|
598
|
+
parser.y:366:in `parse'
|
599
|
+
parser.y:344:in `parse'
|
600
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
601
|
+
./test/test_address.rb:90:in `validate_case__address'
|
602
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
603
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
604
|
+
|
605
|
+
32 tests, 1689 assertions, 0 failures, 1 errors
|
606
|
+
Loaded suite -e
|
607
|
+
Started
|
608
|
+
...............E................
|
609
|
+
Finished in 0.096896 seconds.
|
610
|
+
|
611
|
+
1) Error:
|
612
|
+
test_parse__rawjp(TestAddress):
|
613
|
+
TMail::SyntaxError: parse error on token error
|
614
|
+
parser.y:379:in `on_error'
|
615
|
+
parser.y:379:in `_racc_yyparse_c'
|
616
|
+
parser.y:375:in `scan'
|
617
|
+
parser.y:375:in `parse_in'
|
618
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
619
|
+
racc/parser.rb:152:in `__send__'
|
620
|
+
racc/parser.rb:152:in `yyparse'
|
621
|
+
parser.y:366:in `parse'
|
622
|
+
parser.y:344:in `parse'
|
623
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
624
|
+
./test/test_address.rb:90:in `validate_case__address'
|
625
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
626
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
627
|
+
|
628
|
+
32 tests, 1690 assertions, 0 failures, 1 errors
|
629
|
+
Loaded suite -e
|
630
|
+
Started
|
631
|
+
..F...................................................................
|
632
|
+
Finished in 0.050509 seconds.
|
633
|
+
|
634
|
+
1) Failure:
|
635
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
636
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
637
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
638
|
+
<"attachment"> expected but was
|
639
|
+
<nil>.
|
640
|
+
|
641
|
+
70 tests, 316 assertions, 1 failures, 0 errors
|
642
|
+
Loaded suite -e
|
643
|
+
Started
|
644
|
+
...............E................
|
645
|
+
Finished in 0.177225 seconds.
|
646
|
+
|
647
|
+
1) Error:
|
648
|
+
test_parse__rawjp(TestAddress):
|
649
|
+
TMail::SyntaxError: parse error on token error
|
650
|
+
parser.y:379:in `on_error'
|
651
|
+
parser.y:379:in `_racc_yyparse_c'
|
652
|
+
parser.y:375:in `scan'
|
653
|
+
parser.y:375:in `parse_in'
|
654
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
655
|
+
racc/parser.rb:152:in `__send__'
|
656
|
+
racc/parser.rb:152:in `yyparse'
|
657
|
+
parser.y:366:in `parse'
|
658
|
+
parser.y:344:in `parse'
|
659
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
660
|
+
./test/test_address.rb:90:in `validate_case__address'
|
661
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
662
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
663
|
+
|
664
|
+
32 tests, 3116 assertions, 0 failures, 1 errors
|
665
|
+
Loaded suite -e
|
666
|
+
Started
|
667
|
+
..F...................................................................
|
668
|
+
Finished in 0.122517 seconds.
|
669
|
+
|
670
|
+
1) Failure:
|
671
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
672
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
673
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
674
|
+
<"attachment"> expected but was
|
675
|
+
<nil>.
|
676
|
+
|
677
|
+
70 tests, 1742 assertions, 1 failures, 0 errors
|
678
|
+
Loaded suite -e
|
679
|
+
Started
|
680
|
+
...............E..............
|
681
|
+
Finished in 0.102566 seconds.
|
682
|
+
|
683
|
+
1) Error:
|
684
|
+
test_parse__rawjp(TestAddress):
|
685
|
+
TMail::SyntaxError: parse error on token error
|
686
|
+
parser.y:379:in `on_error'
|
687
|
+
parser.y:379:in `_racc_yyparse_c'
|
688
|
+
parser.y:375:in `scan'
|
689
|
+
parser.y:375:in `parse_in'
|
690
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
691
|
+
racc/parser.rb:152:in `__send__'
|
692
|
+
racc/parser.rb:152:in `yyparse'
|
693
|
+
parser.y:366:in `parse'
|
694
|
+
parser.y:344:in `parse'
|
695
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
696
|
+
./test/test_address.rb:90:in `validate_case__address'
|
697
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
698
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
699
|
+
|
700
|
+
30 tests, 1712 assertions, 0 failures, 1 errors
|
701
|
+
Loaded suite -e
|
702
|
+
Started
|
703
|
+
..F.................................................................
|
704
|
+
Finished in 0.048416 seconds.
|
705
|
+
|
706
|
+
1) Failure:
|
707
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
708
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
709
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
710
|
+
<"attachment"> expected but was
|
711
|
+
<nil>.
|
712
|
+
|
713
|
+
68 tests, 338 assertions, 1 failures, 0 errors
|
714
|
+
Loaded suite -e
|
715
|
+
Started
|
716
|
+
..F.............................................................................E...............
|
717
|
+
Finished in 0.124603 seconds.
|
718
|
+
|
719
|
+
1) Failure:
|
720
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
721
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
722
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
723
|
+
<"attachment"> expected but was
|
724
|
+
<nil>.
|
725
|
+
|
726
|
+
2) Error:
|
727
|
+
test_parse__rawjp(TestAddress):
|
728
|
+
TMail::SyntaxError: parse error on token error
|
729
|
+
parser.y:379:in `on_error'
|
730
|
+
parser.y:379:in `_racc_yyparse_c'
|
731
|
+
parser.y:375:in `scan'
|
732
|
+
parser.y:375:in `parse_in'
|
733
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
734
|
+
racc/parser.rb:152:in `__send__'
|
735
|
+
racc/parser.rb:152:in `yyparse'
|
736
|
+
parser.y:366:in `parse'
|
737
|
+
parser.y:344:in `parse'
|
738
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
739
|
+
./test/test_address.rb:90:in `validate_case__address'
|
740
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
741
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
742
|
+
|
743
|
+
96 tests, 1998 assertions, 1 failures, 1 errors
|
744
|
+
Loaded suite -e
|
745
|
+
Started
|
746
|
+
..F...................................................................
|
747
|
+
Finished in 0.050084 seconds.
|
748
|
+
|
749
|
+
1) Failure:
|
750
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
751
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
752
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
753
|
+
<"attachment"> expected but was
|
754
|
+
<nil>.
|
755
|
+
|
756
|
+
70 tests, 316 assertions, 1 failures, 0 errors
|
757
|
+
Loaded suite -e
|
758
|
+
Started
|
759
|
+
..F...................................................................
|
760
|
+
Finished in 0.122198 seconds.
|
761
|
+
|
762
|
+
1) Failure:
|
763
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
764
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
765
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
766
|
+
<"attachment"> expected but was
|
767
|
+
<nil>.
|
768
|
+
|
769
|
+
70 tests, 1742 assertions, 1 failures, 0 errors
|
770
|
+
Loaded suite -e
|
771
|
+
Started
|
772
|
+
..F.................................................................
|
773
|
+
Finished in 0.048844 seconds.
|
774
|
+
|
775
|
+
1) Failure:
|
776
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
777
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
778
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
779
|
+
<"attachment"> expected but was
|
780
|
+
<nil>.
|
781
|
+
|
782
|
+
68 tests, 338 assertions, 1 failures, 0 errors
|
783
|
+
Loaded suite -e
|
784
|
+
Started
|
785
|
+
..F................................................................
|
786
|
+
Finished in 0.042681 seconds.
|
787
|
+
|
788
|
+
1) Failure:
|
789
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
790
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
791
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
792
|
+
<"attachment"> expected but was
|
793
|
+
<nil>.
|
794
|
+
|
795
|
+
67 tests, 312 assertions, 1 failures, 0 errors
|
796
|
+
Loaded suite -e
|
797
|
+
Started
|
798
|
+
..F................................................................
|
799
|
+
Finished in 0.044667 seconds.
|
800
|
+
|
801
|
+
1) Failure:
|
802
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
803
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
804
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
805
|
+
<"attachment"> expected but was
|
806
|
+
<nil>.
|
807
|
+
|
808
|
+
67 tests, 312 assertions, 1 failures, 0 errors
|
809
|
+
Loaded suite -e
|
810
|
+
Started
|
811
|
+
..F...............................................................................................................
|
812
|
+
Finished in 0.081823 seconds.
|
813
|
+
|
814
|
+
1) Failure:
|
815
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
816
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
817
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
818
|
+
<"attachment"> expected but was
|
819
|
+
<nil>.
|
820
|
+
|
821
|
+
114 tests, 527 assertions, 1 failures, 0 errors
|
822
|
+
Loaded suite -e
|
823
|
+
Started
|
824
|
+
..F............................................................................
|
825
|
+
Finished in 0.086606 seconds.
|
826
|
+
|
827
|
+
1) Failure:
|
828
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
829
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
830
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
831
|
+
<"attachment"> expected but was
|
832
|
+
<nil>.
|
833
|
+
|
834
|
+
79 tests, 375 assertions, 1 failures, 0 errors
|
835
|
+
Loaded suite -e
|
836
|
+
Started
|
837
|
+
..F...............................................................................................
|
838
|
+
Finished in 0.106947 seconds.
|
839
|
+
|
840
|
+
1) Failure:
|
841
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
842
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
843
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
844
|
+
<"attachment"> expected but was
|
845
|
+
<nil>.
|
846
|
+
|
847
|
+
98 tests, 430 assertions, 1 failures, 0 errors
|
848
|
+
Loaded suite -e
|
849
|
+
Started
|
850
|
+
..F...........................................................................
|
851
|
+
Finished in 0.047306 seconds.
|
852
|
+
|
853
|
+
1) Failure:
|
854
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
855
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
856
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
857
|
+
<"attachment"> expected but was
|
858
|
+
<nil>.
|
859
|
+
|
860
|
+
78 tests, 323 assertions, 1 failures, 0 errors
|
861
|
+
Loaded suite -e
|
862
|
+
Started
|
863
|
+
..F...................................................................
|
864
|
+
Finished in 0.047525 seconds.
|
865
|
+
|
866
|
+
1) Failure:
|
867
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
868
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
869
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
870
|
+
<"attachment"> expected but was
|
871
|
+
<nil>.
|
872
|
+
|
873
|
+
70 tests, 429 assertions, 1 failures, 0 errors
|
874
|
+
Loaded suite -e
|
875
|
+
Started
|
876
|
+
..F...................................................................
|
877
|
+
Finished in 0.045308 seconds.
|
878
|
+
|
879
|
+
1) Failure:
|
880
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
881
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
882
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
883
|
+
<"attachment"> expected but was
|
884
|
+
<nil>.
|
885
|
+
|
886
|
+
70 tests, 315 assertions, 1 failures, 0 errors
|
887
|
+
Loaded suite -e
|
888
|
+
Started
|
889
|
+
...............E.............
|
890
|
+
Finished in 0.09224 seconds.
|
891
|
+
|
892
|
+
1) Error:
|
893
|
+
test_parse__rawjp(TestAddress):
|
894
|
+
TMail::SyntaxError: parse error on token error
|
895
|
+
parser.y:379:in `on_error'
|
896
|
+
parser.y:379:in `_racc_yyparse_c'
|
897
|
+
parser.y:375:in `scan'
|
898
|
+
parser.y:375:in `parse_in'
|
899
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
900
|
+
racc/parser.rb:152:in `__send__'
|
901
|
+
racc/parser.rb:152:in `yyparse'
|
902
|
+
parser.y:366:in `parse'
|
903
|
+
parser.y:344:in `parse'
|
904
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
905
|
+
./test/test_address.rb:90:in `validate_case__address'
|
906
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
907
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
908
|
+
|
909
|
+
29 tests, 1686 assertions, 0 failures, 1 errors
|
910
|
+
Loaded suite -e
|
911
|
+
Started
|
912
|
+
..F................................................................
|
913
|
+
Finished in 0.044664 seconds.
|
914
|
+
|
915
|
+
1) Failure:
|
916
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
917
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
918
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
919
|
+
<"attachment"> expected but was
|
920
|
+
<nil>.
|
921
|
+
|
922
|
+
67 tests, 312 assertions, 1 failures, 0 errors
|
923
|
+
Loaded suite .
|
924
|
+
Started
|
925
|
+
..F...........................................................................................................................E...................................................................................
|
926
|
+
Finished in 0.431701 seconds.
|
927
|
+
|
928
|
+
1) Failure:
|
929
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
930
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
931
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
932
|
+
<"attachment"> expected but was
|
933
|
+
<nil>.
|
934
|
+
|
935
|
+
2) Error:
|
936
|
+
test_parse__rawjp(TestAddress):
|
937
|
+
TMail::SyntaxError: parse error on token error
|
938
|
+
parser.y:379:in `on_error'
|
939
|
+
parser.y:379:in `_racc_yyparse_c'
|
940
|
+
parser.y:375:in `scan'
|
941
|
+
parser.y:375:in `parse_in'
|
942
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
943
|
+
racc/parser.rb:152:in `__send__'
|
944
|
+
racc/parser.rb:152:in `yyparse'
|
945
|
+
parser.y:366:in `parse'
|
946
|
+
parser.y:344:in `parse'
|
947
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
948
|
+
./test/test_address.rb:90:in `validate_case__address'
|
949
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
950
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
951
|
+
|
952
|
+
210 tests, 3985 assertions, 1 failures, 1 errors
|
953
|
+
Loaded suite -e
|
954
|
+
Started
|
955
|
+
...............E............................................................
|
956
|
+
Finished in 0.138379 seconds.
|
957
|
+
|
958
|
+
1) Error:
|
959
|
+
test_parse__rawjp(TestAddress):
|
960
|
+
TMail::SyntaxError: parse error on token error
|
961
|
+
parser.y:379:in `on_error'
|
962
|
+
parser.y:379:in `_racc_yyparse_c'
|
963
|
+
parser.y:375:in `scan'
|
964
|
+
parser.y:375:in `parse_in'
|
965
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
966
|
+
racc/parser.rb:152:in `__send__'
|
967
|
+
racc/parser.rb:152:in `yyparse'
|
968
|
+
parser.y:366:in `parse'
|
969
|
+
parser.y:344:in `parse'
|
970
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
971
|
+
./test/test_address.rb:90:in `validate_case__address'
|
972
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
973
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
974
|
+
|
975
|
+
76 tests, 1901 assertions, 0 failures, 1 errors
|
976
|
+
Loaded suite -e
|
977
|
+
Started
|
978
|
+
..F...............................................................................................................
|
979
|
+
Finished in 0.082695 seconds.
|
980
|
+
|
981
|
+
1) Failure:
|
982
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
983
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
984
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
985
|
+
<"attachment"> expected but was
|
986
|
+
<nil>.
|
987
|
+
|
988
|
+
114 tests, 527 assertions, 1 failures, 0 errors
|
989
|
+
Loaded suite -e
|
990
|
+
Started
|
991
|
+
...........................E.............
|
992
|
+
Finished in 0.160588 seconds.
|
993
|
+
|
994
|
+
1) Error:
|
995
|
+
test_parse__rawjp(TestAddress):
|
996
|
+
TMail::SyntaxError: parse error on token error
|
997
|
+
parser.y:379:in `on_error'
|
998
|
+
parser.y:379:in `_racc_yyparse_c'
|
999
|
+
parser.y:375:in `scan'
|
1000
|
+
parser.y:375:in `parse_in'
|
1001
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1002
|
+
racc/parser.rb:152:in `__send__'
|
1003
|
+
racc/parser.rb:152:in `yyparse'
|
1004
|
+
parser.y:366:in `parse'
|
1005
|
+
parser.y:344:in `parse'
|
1006
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1007
|
+
./test/test_address.rb:90:in `validate_case__address'
|
1008
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
1009
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
1010
|
+
|
1011
|
+
41 tests, 1749 assertions, 0 failures, 1 errors
|
1012
|
+
Loaded suite -e
|
1013
|
+
Started
|
1014
|
+
..F............................................................................
|
1015
|
+
Finished in 0.097336 seconds.
|
1016
|
+
|
1017
|
+
1) Failure:
|
1018
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
1019
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
1020
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
1021
|
+
<"attachment"> expected but was
|
1022
|
+
<nil>.
|
1023
|
+
|
1024
|
+
79 tests, 375 assertions, 1 failures, 0 errors
|
1025
|
+
Loaded suite -e
|
1026
|
+
Started
|
1027
|
+
..............................................E.............
|
1028
|
+
Finished in 0.168924 seconds.
|
1029
|
+
|
1030
|
+
1) Error:
|
1031
|
+
test_parse__rawjp(TestAddress):
|
1032
|
+
TMail::SyntaxError: parse error on token error
|
1033
|
+
parser.y:379:in `on_error'
|
1034
|
+
parser.y:379:in `_racc_yyparse_c'
|
1035
|
+
parser.y:375:in `scan'
|
1036
|
+
parser.y:375:in `parse_in'
|
1037
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1038
|
+
racc/parser.rb:152:in `__send__'
|
1039
|
+
racc/parser.rb:152:in `yyparse'
|
1040
|
+
parser.y:366:in `parse'
|
1041
|
+
parser.y:344:in `parse'
|
1042
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1043
|
+
./test/test_address.rb:90:in `validate_case__address'
|
1044
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
1045
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
1046
|
+
|
1047
|
+
60 tests, 1804 assertions, 0 failures, 1 errors
|
1048
|
+
Loaded suite -e
|
1049
|
+
Started
|
1050
|
+
..F...............................................................................................
|
1051
|
+
Finished in 0.104936 seconds.
|
1052
|
+
|
1053
|
+
1) Failure:
|
1054
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
1055
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
1056
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
1057
|
+
<"attachment"> expected but was
|
1058
|
+
<nil>.
|
1059
|
+
|
1060
|
+
98 tests, 430 assertions, 1 failures, 0 errors
|
1061
|
+
Loaded suite -e
|
1062
|
+
Started
|
1063
|
+
...............E........................
|
1064
|
+
Finished in 0.100879 seconds.
|
1065
|
+
|
1066
|
+
1) Error:
|
1067
|
+
test_parse__rawjp(TestAddress):
|
1068
|
+
TMail::SyntaxError: parse error on token error
|
1069
|
+
parser.y:379:in `on_error'
|
1070
|
+
parser.y:379:in `_racc_yyparse_c'
|
1071
|
+
parser.y:375:in `scan'
|
1072
|
+
parser.y:375:in `parse_in'
|
1073
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1074
|
+
racc/parser.rb:152:in `__send__'
|
1075
|
+
racc/parser.rb:152:in `yyparse'
|
1076
|
+
parser.y:366:in `parse'
|
1077
|
+
parser.y:344:in `parse'
|
1078
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1079
|
+
./test/test_address.rb:90:in `validate_case__address'
|
1080
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
1081
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
1082
|
+
|
1083
|
+
40 tests, 1697 assertions, 0 failures, 1 errors
|
1084
|
+
Loaded suite -e
|
1085
|
+
Started
|
1086
|
+
..F...........................................................................
|
1087
|
+
Finished in 0.047438 seconds.
|
1088
|
+
|
1089
|
+
1) Failure:
|
1090
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
1091
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
1092
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
1093
|
+
<"attachment"> expected but was
|
1094
|
+
<nil>.
|
1095
|
+
|
1096
|
+
78 tests, 323 assertions, 1 failures, 0 errors
|
1097
|
+
Loaded suite -e
|
1098
|
+
Started
|
1099
|
+
..................E.............
|
1100
|
+
Finished in 0.100312 seconds.
|
1101
|
+
|
1102
|
+
1) Error:
|
1103
|
+
test_parse__rawjp(TestAddress):
|
1104
|
+
TMail::SyntaxError: parse error on token error
|
1105
|
+
parser.y:379:in `on_error'
|
1106
|
+
parser.y:379:in `_racc_yyparse_c'
|
1107
|
+
parser.y:375:in `scan'
|
1108
|
+
parser.y:375:in `parse_in'
|
1109
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1110
|
+
racc/parser.rb:152:in `__send__'
|
1111
|
+
racc/parser.rb:152:in `yyparse'
|
1112
|
+
parser.y:366:in `parse'
|
1113
|
+
parser.y:344:in `parse'
|
1114
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1115
|
+
./test/test_address.rb:90:in `validate_case__address'
|
1116
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
1117
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
1118
|
+
|
1119
|
+
32 tests, 1803 assertions, 0 failures, 1 errors
|
1120
|
+
Loaded suite -e
|
1121
|
+
Started
|
1122
|
+
..F...................................................................
|
1123
|
+
Finished in 0.047378 seconds.
|
1124
|
+
|
1125
|
+
1) Failure:
|
1126
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
1127
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
1128
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
1129
|
+
<"attachment"> expected but was
|
1130
|
+
<nil>.
|
1131
|
+
|
1132
|
+
70 tests, 429 assertions, 1 failures, 0 errors
|
1133
|
+
Loaded suite -e
|
1134
|
+
Started
|
1135
|
+
...............E................
|
1136
|
+
Finished in 0.0925590000000001 seconds.
|
1137
|
+
|
1138
|
+
1) Error:
|
1139
|
+
test_parse__rawjp(TestAddress):
|
1140
|
+
TMail::SyntaxError: parse error on token error
|
1141
|
+
parser.y:379:in `on_error'
|
1142
|
+
parser.y:379:in `_racc_yyparse_c'
|
1143
|
+
parser.y:375:in `scan'
|
1144
|
+
parser.y:375:in `parse_in'
|
1145
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1146
|
+
racc/parser.rb:152:in `__send__'
|
1147
|
+
racc/parser.rb:152:in `yyparse'
|
1148
|
+
parser.y:366:in `parse'
|
1149
|
+
parser.y:344:in `parse'
|
1150
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1151
|
+
./test/test_address.rb:90:in `validate_case__address'
|
1152
|
+
./test/test_address.rb:248:in `_test_parse__euc'
|
1153
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
1154
|
+
|
1155
|
+
32 tests, 1689 assertions, 0 failures, 1 errors
|
1156
|
+
Loaded suite -e
|
1157
|
+
Started
|
1158
|
+
..F...................................................................
|
1159
|
+
Finished in 0.045748 seconds.
|
1160
|
+
|
1161
|
+
1) Failure:
|
1162
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
1163
|
+
[./test/test_header.rb:825:in `_test_raw_iso2022jp'
|
1164
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
1165
|
+
<"attachment"> expected but was
|
1166
|
+
<nil>.
|
1167
|
+
|
1168
|
+
70 tests, 315 assertions, 1 failures, 0 errors
|
1169
|
+
|
1170
|
+
|
1171
|
+
= Solo Test @ Fri Mar 14 23:01:10 +1100 2008
|
1172
|
+
|
1173
|
+
TEST FILE TESTS ASSERTIONS FAILURES ERRORS
|
1174
|
+
test/test_address.rb 29 1686 0 1 [FAIL]
|
1175
|
+
test/test_attachments.rb 3 4 0 0 [PASS]
|
1176
|
+
test/test_base64.rb 3 1430 0 0 [PASS]
|
1177
|
+
test/test_encode.rb 1 26 0 0 [PASS]
|
1178
|
+
test/test_header.rb 67 312 1 0 [FAIL]
|
1179
|
+
test/test_helper.rb 0 0 0 0 [PASS]
|
1180
|
+
test/test_mail.rb 47 215 0 0 [PASS]
|
1181
|
+
test/test_mbox.rb 12 63 0 0 [PASS]
|
1182
|
+
test/test_port.rb 31 118 0 0 [PASS]
|
1183
|
+
test/test_quote.rb 11 11 0 0 [PASS]
|
1184
|
+
test/test_scanner.rb 3 117 0 0 [PASS]
|
1185
|
+
test/test_utils.rb 3 3 0 0 [PASS]
|
1186
|
+
TOTAL 210 3985 1 1
|
1187
|
+
|
1188
|
+
-- Failures and Errors --
|
1189
|
+
|
1190
|
+
Loaded suite test/test_address
|
1191
|
+
Started
|
1192
|
+
...............E.............
|
1193
|
+
Finished in 0.090869 seconds.
|
1194
|
+
|
1195
|
+
1) Error:
|
1196
|
+
test_parse__rawjp(TestAddress):
|
1197
|
+
TMail::SyntaxError: parse error on token error
|
1198
|
+
parser.y:379:in `on_error'
|
1199
|
+
parser.y:379:in `_racc_yyparse_c'
|
1200
|
+
parser.y:375:in `scan'
|
1201
|
+
parser.y:375:in `parse_in'
|
1202
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1203
|
+
racc/parser.rb:152:in `__send__'
|
1204
|
+
racc/parser.rb:152:in `yyparse'
|
1205
|
+
parser.y:366:in `parse'
|
1206
|
+
parser.y:344:in `parse'
|
1207
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1208
|
+
test/test_address.rb:90:in `validate_case__address'
|
1209
|
+
test/test_address.rb:248:in `_test_parse__euc'
|
1210
|
+
test/test_address.rb:237:in `test_parse__rawjp'
|
1211
|
+
|
1212
|
+
29 tests, 1686 assertions, 0 failures, 1 errors
|
1213
|
+
Loaded suite test/test_header
|
1214
|
+
Started
|
1215
|
+
..F................................................................
|
1216
|
+
Finished in 0.044878 seconds.
|
1217
|
+
|
1218
|
+
1) Failure:
|
1219
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
1220
|
+
[test/test_header.rb:825:in `_test_raw_iso2022jp'
|
1221
|
+
test/test_header.rb:756:in `test_ATTRS']:
|
1222
|
+
<"attachment"> expected but was
|
1223
|
+
<nil>.
|
1224
|
+
|
1225
|
+
67 tests, 312 assertions, 1 failures, 0 errors
|
1226
|
+
|
1227
|
+
|
1228
|
+
= Solo Test @ Sat Mar 15 01:21:40 +1100 2008
|
1229
|
+
|
1230
|
+
TEST FILE TESTS ASSERTIONS FAILURES ERRORS
|
1231
|
+
test/test_address.rb 29 1686 0 1 [FAIL]
|
1232
|
+
test/test_attachments.rb 3 4 0 0 [PASS]
|
1233
|
+
test/test_base64.rb 3 1430 0 0 [PASS]
|
1234
|
+
test/test_encode.rb 1 26 0 0 [PASS]
|
1235
|
+
test/test_header.rb 67 312 1 0 [FAIL]
|
1236
|
+
test/test_helper.rb 0 0 0 0 [PASS]
|
1237
|
+
test/test_mail.rb 47 215 0 0 [PASS]
|
1238
|
+
test/test_mbox.rb 12 63 0 0 [PASS]
|
1239
|
+
test/test_port.rb 31 118 0 0 [PASS]
|
1240
|
+
test/test_quote.rb 11 11 0 0 [PASS]
|
1241
|
+
test/test_scanner.rb 3 117 0 0 [PASS]
|
1242
|
+
test/test_utils.rb 3 3 0 0 [PASS]
|
1243
|
+
TOTAL 210 3985 1 1
|
1244
|
+
|
1245
|
+
-- Failures and Errors --
|
1246
|
+
|
1247
|
+
Loaded suite test/test_address
|
1248
|
+
Started
|
1249
|
+
...............E.............
|
1250
|
+
Finished in 0.092228 seconds.
|
1251
|
+
|
1252
|
+
1) Error:
|
1253
|
+
test_parse__rawjp(TestAddress):
|
1254
|
+
TMail::SyntaxError: parse error on token error
|
1255
|
+
parser.y:379:in `on_error'
|
1256
|
+
parser.y:379:in `_racc_yyparse_c'
|
1257
|
+
parser.y:375:in `scan'
|
1258
|
+
parser.y:375:in `parse_in'
|
1259
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1260
|
+
racc/parser.rb:152:in `__send__'
|
1261
|
+
racc/parser.rb:152:in `yyparse'
|
1262
|
+
parser.y:366:in `parse'
|
1263
|
+
parser.y:344:in `parse'
|
1264
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1265
|
+
test/test_address.rb:90:in `validate_case__address'
|
1266
|
+
test/test_address.rb:248:in `_test_parse__euc'
|
1267
|
+
test/test_address.rb:237:in `test_parse__rawjp'
|
1268
|
+
|
1269
|
+
29 tests, 1686 assertions, 0 failures, 1 errors
|
1270
|
+
Loaded suite test/test_header
|
1271
|
+
Started
|
1272
|
+
..F................................................................
|
1273
|
+
Finished in 0.045673 seconds.
|
1274
|
+
|
1275
|
+
1) Failure:
|
1276
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
1277
|
+
[test/test_header.rb:825:in `_test_raw_iso2022jp'
|
1278
|
+
test/test_header.rb:756:in `test_ATTRS']:
|
1279
|
+
<"attachment"> expected but was
|
1280
|
+
<nil>.
|
1281
|
+
|
1282
|
+
67 tests, 312 assertions, 1 failures, 0 errors
|
1283
|
+
|
1284
|
+
|
1285
|
+
= Solo Test @ Mon Apr 07 09:47:05 +1000 2008
|
1286
|
+
|
1287
|
+
TEST FILE TESTS ASSERTIONS FAILURES ERRORS
|
1288
|
+
test/test_address.rb 29 1686 0 1 [FAIL]
|
1289
|
+
test/test_attachments.rb 3 4 0 0 [PASS]
|
1290
|
+
test/test_base64.rb 3 1430 0 0 [PASS]
|
1291
|
+
test/test_encode.rb 2 27 0 0 [PASS]
|
1292
|
+
test/test_header.rb 67 312 1 0 [FAIL]
|
1293
|
+
test/test_helper.rb 0 0 0 0 [PASS]
|
1294
|
+
test/test_mail.rb 47 215 0 0 [PASS]
|
1295
|
+
test/test_mbox.rb 12 63 0 0 [PASS]
|
1296
|
+
test/test_port.rb 31 118 0 0 [PASS]
|
1297
|
+
test/test_quote.rb 11 11 0 0 [PASS]
|
1298
|
+
test/test_scanner.rb 3 117 0 0 [PASS]
|
1299
|
+
test/test_utils.rb 3 3 0 0 [PASS]
|
1300
|
+
TOTAL 211 3986 1 1
|
1301
|
+
|
1302
|
+
-- Failures and Errors --
|
1303
|
+
|
1304
|
+
Loaded suite test/test_address
|
1305
|
+
Started
|
1306
|
+
...............E.............
|
1307
|
+
Finished in 0.0950920000000001 seconds.
|
1308
|
+
|
1309
|
+
1) Error:
|
1310
|
+
test_parse__rawjp(TestAddress):
|
1311
|
+
TMail::SyntaxError: parse error on token error
|
1312
|
+
parser.y:379:in `on_error'
|
1313
|
+
parser.y:379:in `_racc_yyparse_c'
|
1314
|
+
parser.y:375:in `scan'
|
1315
|
+
parser.y:375:in `parse_in'
|
1316
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1317
|
+
racc/parser.rb:152:in `__send__'
|
1318
|
+
racc/parser.rb:152:in `yyparse'
|
1319
|
+
parser.y:366:in `parse'
|
1320
|
+
parser.y:344:in `parse'
|
1321
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1322
|
+
test/test_address.rb:90:in `validate_case__address'
|
1323
|
+
test/test_address.rb:247:in `_test_parse__euc'
|
1324
|
+
test/test_address.rb:237:in `test_parse__rawjp'
|
1325
|
+
|
1326
|
+
29 tests, 1686 assertions, 0 failures, 1 errors
|
1327
|
+
Loaded suite test/test_header
|
1328
|
+
Started
|
1329
|
+
..F................................................................
|
1330
|
+
Finished in 0.073639 seconds.
|
1331
|
+
|
1332
|
+
1) Failure:
|
1333
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
1334
|
+
[test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1335
|
+
test/test_header.rb:756:in `test_ATTRS']:
|
1336
|
+
<"attachment"> expected but was
|
1337
|
+
<nil>.
|
1338
|
+
|
1339
|
+
67 tests, 312 assertions, 1 failures, 0 errors
|
1340
|
+
|
1341
|
+
|
1342
|
+
= Cross Test @ Mon Apr 07 09:47:45 +1000 2008
|
1343
|
+
|
1344
|
+
TEST FILE TESTS ASSERTIONS FAILURES ERRORS
|
1345
|
+
test/test_address.rb test/test_address.rb 29 1686 0 1 [FAIL]
|
1346
|
+
test/test_address.rb test/test_attachments.rb 32 1690 0 1 [FAIL]
|
1347
|
+
test/test_address.rb test/test_base64.rb 32 3116 0 1 [FAIL]
|
1348
|
+
test/test_address.rb test/test_encode.rb 31 1713 0 1 [FAIL]
|
1349
|
+
test/test_address.rb test/test_header.rb 96 1998 1 1 [FAIL]
|
1350
|
+
test/test_address.rb test/test_helper.rb 29 1686 0 1 [FAIL]
|
1351
|
+
test/test_address.rb test/test_mail.rb 76 1901 0 1 [FAIL]
|
1352
|
+
test/test_address.rb test/test_mbox.rb 41 1749 0 1 [FAIL]
|
1353
|
+
test/test_address.rb test/test_port.rb 60 1804 0 1 [FAIL]
|
1354
|
+
test/test_address.rb test/test_quote.rb 40 1697 0 1 [FAIL]
|
1355
|
+
test/test_address.rb test/test_scanner.rb 32 1803 0 1 [FAIL]
|
1356
|
+
test/test_address.rb test/test_utils.rb 32 1689 0 1 [FAIL]
|
1357
|
+
test/test_attachments.rb test/test_address.rb 32 1690 0 1 [FAIL]
|
1358
|
+
test/test_attachments.rb test/test_attachments.rb 3 4 0 0 [PASS]
|
1359
|
+
test/test_attachments.rb test/test_base64.rb 6 1434 0 0 [PASS]
|
1360
|
+
test/test_attachments.rb test/test_encode.rb 5 31 0 0 [PASS]
|
1361
|
+
test/test_attachments.rb test/test_header.rb 70 316 1 0 [FAIL]
|
1362
|
+
test/test_attachments.rb test/test_helper.rb 3 4 0 0 [PASS]
|
1363
|
+
test/test_attachments.rb test/test_mail.rb 50 219 0 0 [PASS]
|
1364
|
+
test/test_attachments.rb test/test_mbox.rb 15 67 0 0 [PASS]
|
1365
|
+
test/test_attachments.rb test/test_port.rb 34 122 0 0 [PASS]
|
1366
|
+
test/test_attachments.rb test/test_quote.rb 14 15 0 0 [PASS]
|
1367
|
+
test/test_attachments.rb test/test_scanner.rb 6 121 0 0 [PASS]
|
1368
|
+
test/test_attachments.rb test/test_utils.rb 6 7 0 0 [PASS]
|
1369
|
+
test/test_base64.rb test/test_address.rb 32 3116 0 1 [FAIL]
|
1370
|
+
test/test_base64.rb test/test_attachments.rb 6 1434 0 0 [PASS]
|
1371
|
+
test/test_base64.rb test/test_base64.rb 3 1430 0 0 [PASS]
|
1372
|
+
test/test_base64.rb test/test_encode.rb 5 1457 0 0 [PASS]
|
1373
|
+
test/test_base64.rb test/test_header.rb 70 1742 1 0 [FAIL]
|
1374
|
+
test/test_base64.rb test/test_helper.rb 3 1430 0 0 [PASS]
|
1375
|
+
test/test_base64.rb test/test_mail.rb 50 1645 0 0 [PASS]
|
1376
|
+
test/test_base64.rb test/test_mbox.rb 15 1493 0 0 [PASS]
|
1377
|
+
test/test_base64.rb test/test_port.rb 34 1548 0 0 [PASS]
|
1378
|
+
test/test_base64.rb test/test_quote.rb 14 1441 0 0 [PASS]
|
1379
|
+
test/test_base64.rb test/test_scanner.rb 6 1547 0 0 [PASS]
|
1380
|
+
test/test_base64.rb test/test_utils.rb 6 1433 0 0 [PASS]
|
1381
|
+
test/test_encode.rb test/test_address.rb 31 1713 0 1 [FAIL]
|
1382
|
+
test/test_encode.rb test/test_attachments.rb 5 31 0 0 [PASS]
|
1383
|
+
test/test_encode.rb test/test_base64.rb 5 1457 0 0 [PASS]
|
1384
|
+
test/test_encode.rb test/test_encode.rb 2 27 0 0 [PASS]
|
1385
|
+
test/test_encode.rb test/test_header.rb 69 339 1 0 [FAIL]
|
1386
|
+
test/test_encode.rb test/test_helper.rb 2 27 0 0 [PASS]
|
1387
|
+
test/test_encode.rb test/test_mail.rb 49 242 0 0 [PASS]
|
1388
|
+
test/test_encode.rb test/test_mbox.rb 14 90 0 0 [PASS]
|
1389
|
+
test/test_encode.rb test/test_port.rb 33 145 0 0 [PASS]
|
1390
|
+
test/test_encode.rb test/test_quote.rb 13 38 0 0 [PASS]
|
1391
|
+
test/test_encode.rb test/test_scanner.rb 5 144 0 0 [PASS]
|
1392
|
+
test/test_encode.rb test/test_utils.rb 5 30 0 0 [PASS]
|
1393
|
+
test/test_header.rb test/test_address.rb 96 1998 1 1 [FAIL]
|
1394
|
+
test/test_header.rb test/test_attachments.rb 70 316 1 0 [FAIL]
|
1395
|
+
test/test_header.rb test/test_base64.rb 70 1742 1 0 [FAIL]
|
1396
|
+
test/test_header.rb test/test_encode.rb 69 339 1 0 [FAIL]
|
1397
|
+
test/test_header.rb test/test_header.rb 67 312 1 0 [FAIL]
|
1398
|
+
test/test_header.rb test/test_helper.rb 67 312 1 0 [FAIL]
|
1399
|
+
test/test_header.rb test/test_mail.rb 114 527 1 0 [FAIL]
|
1400
|
+
test/test_header.rb test/test_mbox.rb 79 375 1 0 [FAIL]
|
1401
|
+
test/test_header.rb test/test_port.rb 98 430 1 0 [FAIL]
|
1402
|
+
test/test_header.rb test/test_quote.rb 78 323 1 0 [FAIL]
|
1403
|
+
test/test_header.rb test/test_scanner.rb 70 429 1 0 [FAIL]
|
1404
|
+
test/test_header.rb test/test_utils.rb 70 315 1 0 [FAIL]
|
1405
|
+
test/test_helper.rb test/test_address.rb 29 1686 0 1 [FAIL]
|
1406
|
+
test/test_helper.rb test/test_attachments.rb 3 4 0 0 [PASS]
|
1407
|
+
test/test_helper.rb test/test_base64.rb 3 1430 0 0 [PASS]
|
1408
|
+
test/test_helper.rb test/test_encode.rb 2 27 0 0 [PASS]
|
1409
|
+
test/test_helper.rb test/test_header.rb 67 312 1 0 [FAIL]
|
1410
|
+
test/test_helper.rb test/test_helper.rb 211 3986 1 1 [FAIL]
|
1411
|
+
test/test_helper.rb test/test_mail.rb 47 215 0 0 [PASS]
|
1412
|
+
test/test_helper.rb test/test_mbox.rb 12 63 0 0 [PASS]
|
1413
|
+
test/test_helper.rb test/test_port.rb 31 118 0 0 [PASS]
|
1414
|
+
test/test_helper.rb test/test_quote.rb 11 11 0 0 [PASS]
|
1415
|
+
test/test_helper.rb test/test_scanner.rb 3 117 0 0 [PASS]
|
1416
|
+
test/test_helper.rb test/test_utils.rb 3 3 0 0 [PASS]
|
1417
|
+
test/test_mail.rb test/test_address.rb 76 1901 0 1 [FAIL]
|
1418
|
+
test/test_mail.rb test/test_attachments.rb 50 219 0 0 [PASS]
|
1419
|
+
test/test_mail.rb test/test_base64.rb 50 1645 0 0 [PASS]
|
1420
|
+
test/test_mail.rb test/test_encode.rb 49 242 0 0 [PASS]
|
1421
|
+
test/test_mail.rb test/test_header.rb 114 527 1 0 [FAIL]
|
1422
|
+
test/test_mail.rb test/test_helper.rb 47 215 0 0 [PASS]
|
1423
|
+
test/test_mail.rb test/test_mail.rb 47 215 0 0 [PASS]
|
1424
|
+
test/test_mail.rb test/test_mbox.rb 59 278 0 0 [PASS]
|
1425
|
+
test/test_mail.rb test/test_port.rb 78 333 0 0 [PASS]
|
1426
|
+
test/test_mail.rb test/test_quote.rb 58 226 0 0 [PASS]
|
1427
|
+
test/test_mail.rb test/test_scanner.rb 50 332 0 0 [PASS]
|
1428
|
+
test/test_mail.rb test/test_utils.rb 50 218 0 0 [PASS]
|
1429
|
+
test/test_mbox.rb test/test_address.rb 41 1749 0 1 [FAIL]
|
1430
|
+
test/test_mbox.rb test/test_attachments.rb 15 67 0 0 [PASS]
|
1431
|
+
test/test_mbox.rb test/test_base64.rb 15 1493 0 0 [PASS]
|
1432
|
+
test/test_mbox.rb test/test_encode.rb 14 90 0 0 [PASS]
|
1433
|
+
test/test_mbox.rb test/test_header.rb 79 375 1 0 [FAIL]
|
1434
|
+
test/test_mbox.rb test/test_helper.rb 12 63 0 0 [PASS]
|
1435
|
+
test/test_mbox.rb test/test_mail.rb 59 278 0 0 [PASS]
|
1436
|
+
test/test_mbox.rb test/test_mbox.rb 12 63 0 0 [PASS]
|
1437
|
+
test/test_mbox.rb test/test_port.rb 43 181 0 0 [PASS]
|
1438
|
+
test/test_mbox.rb test/test_quote.rb 23 74 0 0 [PASS]
|
1439
|
+
test/test_mbox.rb test/test_scanner.rb 15 180 0 0 [PASS]
|
1440
|
+
test/test_mbox.rb test/test_utils.rb 15 66 0 0 [PASS]
|
1441
|
+
test/test_port.rb test/test_address.rb 60 1804 0 1 [FAIL]
|
1442
|
+
test/test_port.rb test/test_attachments.rb 34 122 0 0 [PASS]
|
1443
|
+
test/test_port.rb test/test_base64.rb 34 1548 0 0 [PASS]
|
1444
|
+
test/test_port.rb test/test_encode.rb 33 145 0 0 [PASS]
|
1445
|
+
test/test_port.rb test/test_header.rb 98 430 1 0 [FAIL]
|
1446
|
+
test/test_port.rb test/test_helper.rb 31 118 0 0 [PASS]
|
1447
|
+
test/test_port.rb test/test_mail.rb 78 333 0 0 [PASS]
|
1448
|
+
test/test_port.rb test/test_mbox.rb 43 181 0 0 [PASS]
|
1449
|
+
test/test_port.rb test/test_port.rb 31 118 0 0 [PASS]
|
1450
|
+
test/test_port.rb test/test_quote.rb 42 129 0 0 [PASS]
|
1451
|
+
test/test_port.rb test/test_scanner.rb 34 235 0 0 [PASS]
|
1452
|
+
test/test_port.rb test/test_utils.rb 34 121 0 0 [PASS]
|
1453
|
+
test/test_quote.rb test/test_address.rb 40 1697 0 1 [FAIL]
|
1454
|
+
test/test_quote.rb test/test_attachments.rb 14 15 0 0 [PASS]
|
1455
|
+
test/test_quote.rb test/test_base64.rb 14 1441 0 0 [PASS]
|
1456
|
+
test/test_quote.rb test/test_encode.rb 13 38 0 0 [PASS]
|
1457
|
+
test/test_quote.rb test/test_header.rb 78 323 1 0 [FAIL]
|
1458
|
+
test/test_quote.rb test/test_helper.rb 11 11 0 0 [PASS]
|
1459
|
+
test/test_quote.rb test/test_mail.rb 58 226 0 0 [PASS]
|
1460
|
+
test/test_quote.rb test/test_mbox.rb 23 74 0 0 [PASS]
|
1461
|
+
test/test_quote.rb test/test_port.rb 42 129 0 0 [PASS]
|
1462
|
+
test/test_quote.rb test/test_quote.rb 11 11 0 0 [PASS]
|
1463
|
+
test/test_quote.rb test/test_scanner.rb 14 128 0 0 [PASS]
|
1464
|
+
test/test_quote.rb test/test_utils.rb 14 14 0 0 [PASS]
|
1465
|
+
test/test_scanner.rb test/test_address.rb 32 1803 0 1 [FAIL]
|
1466
|
+
test/test_scanner.rb test/test_attachments.rb 6 121 0 0 [PASS]
|
1467
|
+
test/test_scanner.rb test/test_base64.rb 6 1547 0 0 [PASS]
|
1468
|
+
test/test_scanner.rb test/test_encode.rb 5 144 0 0 [PASS]
|
1469
|
+
test/test_scanner.rb test/test_header.rb 70 429 1 0 [FAIL]
|
1470
|
+
test/test_scanner.rb test/test_helper.rb 3 117 0 0 [PASS]
|
1471
|
+
test/test_scanner.rb test/test_mail.rb 50 332 0 0 [PASS]
|
1472
|
+
test/test_scanner.rb test/test_mbox.rb 15 180 0 0 [PASS]
|
1473
|
+
test/test_scanner.rb test/test_port.rb 34 235 0 0 [PASS]
|
1474
|
+
test/test_scanner.rb test/test_quote.rb 14 128 0 0 [PASS]
|
1475
|
+
test/test_scanner.rb test/test_scanner.rb 3 117 0 0 [PASS]
|
1476
|
+
test/test_scanner.rb test/test_utils.rb 6 120 0 0 [PASS]
|
1477
|
+
test/test_utils.rb test/test_address.rb 32 1689 0 1 [FAIL]
|
1478
|
+
test/test_utils.rb test/test_attachments.rb 6 7 0 0 [PASS]
|
1479
|
+
test/test_utils.rb test/test_base64.rb 6 1433 0 0 [PASS]
|
1480
|
+
test/test_utils.rb test/test_encode.rb 5 30 0 0 [PASS]
|
1481
|
+
test/test_utils.rb test/test_header.rb 70 315 1 0 [FAIL]
|
1482
|
+
test/test_utils.rb test/test_helper.rb 3 3 0 0 [PASS]
|
1483
|
+
test/test_utils.rb test/test_mail.rb 50 218 0 0 [PASS]
|
1484
|
+
test/test_utils.rb test/test_mbox.rb 15 66 0 0 [PASS]
|
1485
|
+
test/test_utils.rb test/test_port.rb 34 121 0 0 [PASS]
|
1486
|
+
test/test_utils.rb test/test_quote.rb 14 14 0 0 [PASS]
|
1487
|
+
test/test_utils.rb test/test_scanner.rb 6 120 0 0 [PASS]
|
1488
|
+
test/test_utils.rb test/test_utils.rb 3 3 0 0 [PASS]
|
1489
|
+
TOTAL 5064 95664 24 24
|
1490
|
+
|
1491
|
+
-- Failures and Errors --
|
1492
|
+
|
1493
|
+
Loaded suite -e
|
1494
|
+
Started
|
1495
|
+
...............E.............
|
1496
|
+
Finished in 0.095256 seconds.
|
1497
|
+
|
1498
|
+
1) Error:
|
1499
|
+
test_parse__rawjp(TestAddress):
|
1500
|
+
TMail::SyntaxError: parse error on token error
|
1501
|
+
parser.y:379:in `on_error'
|
1502
|
+
parser.y:379:in `_racc_yyparse_c'
|
1503
|
+
parser.y:375:in `scan'
|
1504
|
+
parser.y:375:in `parse_in'
|
1505
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1506
|
+
racc/parser.rb:152:in `__send__'
|
1507
|
+
racc/parser.rb:152:in `yyparse'
|
1508
|
+
parser.y:366:in `parse'
|
1509
|
+
parser.y:344:in `parse'
|
1510
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1511
|
+
./test/test_address.rb:90:in `validate_case__address'
|
1512
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
1513
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
1514
|
+
|
1515
|
+
29 tests, 1686 assertions, 0 failures, 1 errors
|
1516
|
+
Loaded suite -e
|
1517
|
+
Started
|
1518
|
+
...............E................
|
1519
|
+
Finished in 0.105752 seconds.
|
1520
|
+
|
1521
|
+
1) Error:
|
1522
|
+
test_parse__rawjp(TestAddress):
|
1523
|
+
TMail::SyntaxError: parse error on token error
|
1524
|
+
parser.y:379:in `on_error'
|
1525
|
+
parser.y:379:in `_racc_yyparse_c'
|
1526
|
+
parser.y:375:in `scan'
|
1527
|
+
parser.y:375:in `parse_in'
|
1528
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1529
|
+
racc/parser.rb:152:in `__send__'
|
1530
|
+
racc/parser.rb:152:in `yyparse'
|
1531
|
+
parser.y:366:in `parse'
|
1532
|
+
parser.y:344:in `parse'
|
1533
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1534
|
+
./test/test_address.rb:90:in `validate_case__address'
|
1535
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
1536
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
1537
|
+
|
1538
|
+
32 tests, 1690 assertions, 0 failures, 1 errors
|
1539
|
+
Loaded suite -e
|
1540
|
+
Started
|
1541
|
+
...............E................
|
1542
|
+
Finished in 0.186971 seconds.
|
1543
|
+
|
1544
|
+
1) Error:
|
1545
|
+
test_parse__rawjp(TestAddress):
|
1546
|
+
TMail::SyntaxError: parse error on token error
|
1547
|
+
parser.y:379:in `on_error'
|
1548
|
+
parser.y:379:in `_racc_yyparse_c'
|
1549
|
+
parser.y:375:in `scan'
|
1550
|
+
parser.y:375:in `parse_in'
|
1551
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1552
|
+
racc/parser.rb:152:in `__send__'
|
1553
|
+
racc/parser.rb:152:in `yyparse'
|
1554
|
+
parser.y:366:in `parse'
|
1555
|
+
parser.y:344:in `parse'
|
1556
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1557
|
+
./test/test_address.rb:90:in `validate_case__address'
|
1558
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
1559
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
1560
|
+
|
1561
|
+
32 tests, 3116 assertions, 0 failures, 1 errors
|
1562
|
+
Loaded suite -e
|
1563
|
+
Started
|
1564
|
+
...............E...............
|
1565
|
+
Finished in 0.107076 seconds.
|
1566
|
+
|
1567
|
+
1) Error:
|
1568
|
+
test_parse__rawjp(TestAddress):
|
1569
|
+
TMail::SyntaxError: parse error on token error
|
1570
|
+
parser.y:379:in `on_error'
|
1571
|
+
parser.y:379:in `_racc_yyparse_c'
|
1572
|
+
parser.y:375:in `scan'
|
1573
|
+
parser.y:375:in `parse_in'
|
1574
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1575
|
+
racc/parser.rb:152:in `__send__'
|
1576
|
+
racc/parser.rb:152:in `yyparse'
|
1577
|
+
parser.y:366:in `parse'
|
1578
|
+
parser.y:344:in `parse'
|
1579
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1580
|
+
./test/test_address.rb:90:in `validate_case__address'
|
1581
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
1582
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
1583
|
+
|
1584
|
+
31 tests, 1713 assertions, 0 failures, 1 errors
|
1585
|
+
Loaded suite -e
|
1586
|
+
Started
|
1587
|
+
..F.............................................................................E...............
|
1588
|
+
Finished in 0.127074 seconds.
|
1589
|
+
|
1590
|
+
1) Failure:
|
1591
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
1592
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1593
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
1594
|
+
<"attachment"> expected but was
|
1595
|
+
<nil>.
|
1596
|
+
|
1597
|
+
2) Error:
|
1598
|
+
test_parse__rawjp(TestAddress):
|
1599
|
+
TMail::SyntaxError: parse error on token error
|
1600
|
+
parser.y:379:in `on_error'
|
1601
|
+
parser.y:379:in `_racc_yyparse_c'
|
1602
|
+
parser.y:375:in `scan'
|
1603
|
+
parser.y:375:in `parse_in'
|
1604
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1605
|
+
racc/parser.rb:152:in `__send__'
|
1606
|
+
racc/parser.rb:152:in `yyparse'
|
1607
|
+
parser.y:366:in `parse'
|
1608
|
+
parser.y:344:in `parse'
|
1609
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1610
|
+
./test/test_address.rb:90:in `validate_case__address'
|
1611
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
1612
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
1613
|
+
|
1614
|
+
96 tests, 1998 assertions, 1 failures, 1 errors
|
1615
|
+
Loaded suite -e
|
1616
|
+
Started
|
1617
|
+
...............E.............
|
1618
|
+
Finished in 0.094599 seconds.
|
1619
|
+
|
1620
|
+
1) Error:
|
1621
|
+
test_parse__rawjp(TestAddress):
|
1622
|
+
TMail::SyntaxError: parse error on token error
|
1623
|
+
parser.y:379:in `on_error'
|
1624
|
+
parser.y:379:in `_racc_yyparse_c'
|
1625
|
+
parser.y:375:in `scan'
|
1626
|
+
parser.y:375:in `parse_in'
|
1627
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1628
|
+
racc/parser.rb:152:in `__send__'
|
1629
|
+
racc/parser.rb:152:in `yyparse'
|
1630
|
+
parser.y:366:in `parse'
|
1631
|
+
parser.y:344:in `parse'
|
1632
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1633
|
+
./test/test_address.rb:90:in `validate_case__address'
|
1634
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
1635
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
1636
|
+
|
1637
|
+
29 tests, 1686 assertions, 0 failures, 1 errors
|
1638
|
+
Loaded suite -e
|
1639
|
+
Started
|
1640
|
+
...............E............................................................
|
1641
|
+
Finished in 0.142425 seconds.
|
1642
|
+
|
1643
|
+
1) Error:
|
1644
|
+
test_parse__rawjp(TestAddress):
|
1645
|
+
TMail::SyntaxError: parse error on token error
|
1646
|
+
parser.y:379:in `on_error'
|
1647
|
+
parser.y:379:in `_racc_yyparse_c'
|
1648
|
+
parser.y:375:in `scan'
|
1649
|
+
parser.y:375:in `parse_in'
|
1650
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1651
|
+
racc/parser.rb:152:in `__send__'
|
1652
|
+
racc/parser.rb:152:in `yyparse'
|
1653
|
+
parser.y:366:in `parse'
|
1654
|
+
parser.y:344:in `parse'
|
1655
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1656
|
+
./test/test_address.rb:90:in `validate_case__address'
|
1657
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
1658
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
1659
|
+
|
1660
|
+
76 tests, 1901 assertions, 0 failures, 1 errors
|
1661
|
+
Loaded suite -e
|
1662
|
+
Started
|
1663
|
+
...........................E.............
|
1664
|
+
Finished in 0.164831 seconds.
|
1665
|
+
|
1666
|
+
1) Error:
|
1667
|
+
test_parse__rawjp(TestAddress):
|
1668
|
+
TMail::SyntaxError: parse error on token error
|
1669
|
+
parser.y:379:in `on_error'
|
1670
|
+
parser.y:379:in `_racc_yyparse_c'
|
1671
|
+
parser.y:375:in `scan'
|
1672
|
+
parser.y:375:in `parse_in'
|
1673
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1674
|
+
racc/parser.rb:152:in `__send__'
|
1675
|
+
racc/parser.rb:152:in `yyparse'
|
1676
|
+
parser.y:366:in `parse'
|
1677
|
+
parser.y:344:in `parse'
|
1678
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1679
|
+
./test/test_address.rb:90:in `validate_case__address'
|
1680
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
1681
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
1682
|
+
|
1683
|
+
41 tests, 1749 assertions, 0 failures, 1 errors
|
1684
|
+
Loaded suite -e
|
1685
|
+
Started
|
1686
|
+
..............................................E.............
|
1687
|
+
Finished in 0.167203 seconds.
|
1688
|
+
|
1689
|
+
1) Error:
|
1690
|
+
test_parse__rawjp(TestAddress):
|
1691
|
+
TMail::SyntaxError: parse error on token error
|
1692
|
+
parser.y:379:in `on_error'
|
1693
|
+
parser.y:379:in `_racc_yyparse_c'
|
1694
|
+
parser.y:375:in `scan'
|
1695
|
+
parser.y:375:in `parse_in'
|
1696
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1697
|
+
racc/parser.rb:152:in `__send__'
|
1698
|
+
racc/parser.rb:152:in `yyparse'
|
1699
|
+
parser.y:366:in `parse'
|
1700
|
+
parser.y:344:in `parse'
|
1701
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1702
|
+
./test/test_address.rb:90:in `validate_case__address'
|
1703
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
1704
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
1705
|
+
|
1706
|
+
60 tests, 1804 assertions, 0 failures, 1 errors
|
1707
|
+
Loaded suite -e
|
1708
|
+
Started
|
1709
|
+
...............E........................
|
1710
|
+
Finished in 0.102978 seconds.
|
1711
|
+
|
1712
|
+
1) Error:
|
1713
|
+
test_parse__rawjp(TestAddress):
|
1714
|
+
TMail::SyntaxError: parse error on token error
|
1715
|
+
parser.y:379:in `on_error'
|
1716
|
+
parser.y:379:in `_racc_yyparse_c'
|
1717
|
+
parser.y:375:in `scan'
|
1718
|
+
parser.y:375:in `parse_in'
|
1719
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1720
|
+
racc/parser.rb:152:in `__send__'
|
1721
|
+
racc/parser.rb:152:in `yyparse'
|
1722
|
+
parser.y:366:in `parse'
|
1723
|
+
parser.y:344:in `parse'
|
1724
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1725
|
+
./test/test_address.rb:90:in `validate_case__address'
|
1726
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
1727
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
1728
|
+
|
1729
|
+
40 tests, 1697 assertions, 0 failures, 1 errors
|
1730
|
+
Loaded suite -e
|
1731
|
+
Started
|
1732
|
+
..................E.............
|
1733
|
+
Finished in 0.103419 seconds.
|
1734
|
+
|
1735
|
+
1) Error:
|
1736
|
+
test_parse__rawjp(TestAddress):
|
1737
|
+
TMail::SyntaxError: parse error on token error
|
1738
|
+
parser.y:379:in `on_error'
|
1739
|
+
parser.y:379:in `_racc_yyparse_c'
|
1740
|
+
parser.y:375:in `scan'
|
1741
|
+
parser.y:375:in `parse_in'
|
1742
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1743
|
+
racc/parser.rb:152:in `__send__'
|
1744
|
+
racc/parser.rb:152:in `yyparse'
|
1745
|
+
parser.y:366:in `parse'
|
1746
|
+
parser.y:344:in `parse'
|
1747
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1748
|
+
./test/test_address.rb:90:in `validate_case__address'
|
1749
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
1750
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
1751
|
+
|
1752
|
+
32 tests, 1803 assertions, 0 failures, 1 errors
|
1753
|
+
Loaded suite -e
|
1754
|
+
Started
|
1755
|
+
...............E................
|
1756
|
+
Finished in 0.094892 seconds.
|
1757
|
+
|
1758
|
+
1) Error:
|
1759
|
+
test_parse__rawjp(TestAddress):
|
1760
|
+
TMail::SyntaxError: parse error on token error
|
1761
|
+
parser.y:379:in `on_error'
|
1762
|
+
parser.y:379:in `_racc_yyparse_c'
|
1763
|
+
parser.y:375:in `scan'
|
1764
|
+
parser.y:375:in `parse_in'
|
1765
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1766
|
+
racc/parser.rb:152:in `__send__'
|
1767
|
+
racc/parser.rb:152:in `yyparse'
|
1768
|
+
parser.y:366:in `parse'
|
1769
|
+
parser.y:344:in `parse'
|
1770
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1771
|
+
./test/test_address.rb:90:in `validate_case__address'
|
1772
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
1773
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
1774
|
+
|
1775
|
+
32 tests, 1689 assertions, 0 failures, 1 errors
|
1776
|
+
Loaded suite -e
|
1777
|
+
Started
|
1778
|
+
...............E................
|
1779
|
+
Finished in 0.107364 seconds.
|
1780
|
+
|
1781
|
+
1) Error:
|
1782
|
+
test_parse__rawjp(TestAddress):
|
1783
|
+
TMail::SyntaxError: parse error on token error
|
1784
|
+
parser.y:379:in `on_error'
|
1785
|
+
parser.y:379:in `_racc_yyparse_c'
|
1786
|
+
parser.y:375:in `scan'
|
1787
|
+
parser.y:375:in `parse_in'
|
1788
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1789
|
+
racc/parser.rb:152:in `__send__'
|
1790
|
+
racc/parser.rb:152:in `yyparse'
|
1791
|
+
parser.y:366:in `parse'
|
1792
|
+
parser.y:344:in `parse'
|
1793
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1794
|
+
./test/test_address.rb:90:in `validate_case__address'
|
1795
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
1796
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
1797
|
+
|
1798
|
+
32 tests, 1690 assertions, 0 failures, 1 errors
|
1799
|
+
Loaded suite -e
|
1800
|
+
Started
|
1801
|
+
..F...................................................................
|
1802
|
+
Finished in 0.050516 seconds.
|
1803
|
+
|
1804
|
+
1) Failure:
|
1805
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
1806
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1807
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
1808
|
+
<"attachment"> expected but was
|
1809
|
+
<nil>.
|
1810
|
+
|
1811
|
+
70 tests, 316 assertions, 1 failures, 0 errors
|
1812
|
+
Loaded suite -e
|
1813
|
+
Started
|
1814
|
+
...............E................
|
1815
|
+
Finished in 0.181623 seconds.
|
1816
|
+
|
1817
|
+
1) Error:
|
1818
|
+
test_parse__rawjp(TestAddress):
|
1819
|
+
TMail::SyntaxError: parse error on token error
|
1820
|
+
parser.y:379:in `on_error'
|
1821
|
+
parser.y:379:in `_racc_yyparse_c'
|
1822
|
+
parser.y:375:in `scan'
|
1823
|
+
parser.y:375:in `parse_in'
|
1824
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1825
|
+
racc/parser.rb:152:in `__send__'
|
1826
|
+
racc/parser.rb:152:in `yyparse'
|
1827
|
+
parser.y:366:in `parse'
|
1828
|
+
parser.y:344:in `parse'
|
1829
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1830
|
+
./test/test_address.rb:90:in `validate_case__address'
|
1831
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
1832
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
1833
|
+
|
1834
|
+
32 tests, 3116 assertions, 0 failures, 1 errors
|
1835
|
+
Loaded suite -e
|
1836
|
+
Started
|
1837
|
+
..F...................................................................
|
1838
|
+
Finished in 0.123416 seconds.
|
1839
|
+
|
1840
|
+
1) Failure:
|
1841
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
1842
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1843
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
1844
|
+
<"attachment"> expected but was
|
1845
|
+
<nil>.
|
1846
|
+
|
1847
|
+
70 tests, 1742 assertions, 1 failures, 0 errors
|
1848
|
+
Loaded suite -e
|
1849
|
+
Started
|
1850
|
+
...............E...............
|
1851
|
+
Finished in 0.108171 seconds.
|
1852
|
+
|
1853
|
+
1) Error:
|
1854
|
+
test_parse__rawjp(TestAddress):
|
1855
|
+
TMail::SyntaxError: parse error on token error
|
1856
|
+
parser.y:379:in `on_error'
|
1857
|
+
parser.y:379:in `_racc_yyparse_c'
|
1858
|
+
parser.y:375:in `scan'
|
1859
|
+
parser.y:375:in `parse_in'
|
1860
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1861
|
+
racc/parser.rb:152:in `__send__'
|
1862
|
+
racc/parser.rb:152:in `yyparse'
|
1863
|
+
parser.y:366:in `parse'
|
1864
|
+
parser.y:344:in `parse'
|
1865
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1866
|
+
./test/test_address.rb:90:in `validate_case__address'
|
1867
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
1868
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
1869
|
+
|
1870
|
+
31 tests, 1713 assertions, 0 failures, 1 errors
|
1871
|
+
Loaded suite -e
|
1872
|
+
Started
|
1873
|
+
..F..................................................................
|
1874
|
+
Finished in 0.051321 seconds.
|
1875
|
+
|
1876
|
+
1) Failure:
|
1877
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
1878
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1879
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
1880
|
+
<"attachment"> expected but was
|
1881
|
+
<nil>.
|
1882
|
+
|
1883
|
+
69 tests, 339 assertions, 1 failures, 0 errors
|
1884
|
+
Loaded suite -e
|
1885
|
+
Started
|
1886
|
+
..F.............................................................................E...............
|
1887
|
+
Finished in 0.127828 seconds.
|
1888
|
+
|
1889
|
+
1) Failure:
|
1890
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
1891
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1892
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
1893
|
+
<"attachment"> expected but was
|
1894
|
+
<nil>.
|
1895
|
+
|
1896
|
+
2) Error:
|
1897
|
+
test_parse__rawjp(TestAddress):
|
1898
|
+
TMail::SyntaxError: parse error on token error
|
1899
|
+
parser.y:379:in `on_error'
|
1900
|
+
parser.y:379:in `_racc_yyparse_c'
|
1901
|
+
parser.y:375:in `scan'
|
1902
|
+
parser.y:375:in `parse_in'
|
1903
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
1904
|
+
racc/parser.rb:152:in `__send__'
|
1905
|
+
racc/parser.rb:152:in `yyparse'
|
1906
|
+
parser.y:366:in `parse'
|
1907
|
+
parser.y:344:in `parse'
|
1908
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
1909
|
+
./test/test_address.rb:90:in `validate_case__address'
|
1910
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
1911
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
1912
|
+
|
1913
|
+
96 tests, 1998 assertions, 1 failures, 1 errors
|
1914
|
+
Loaded suite -e
|
1915
|
+
Started
|
1916
|
+
..F...................................................................
|
1917
|
+
Finished in 0.050633 seconds.
|
1918
|
+
|
1919
|
+
1) Failure:
|
1920
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
1921
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1922
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
1923
|
+
<"attachment"> expected but was
|
1924
|
+
<nil>.
|
1925
|
+
|
1926
|
+
70 tests, 316 assertions, 1 failures, 0 errors
|
1927
|
+
Loaded suite -e
|
1928
|
+
Started
|
1929
|
+
..F...................................................................
|
1930
|
+
Finished in 0.123302 seconds.
|
1931
|
+
|
1932
|
+
1) Failure:
|
1933
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
1934
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1935
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
1936
|
+
<"attachment"> expected but was
|
1937
|
+
<nil>.
|
1938
|
+
|
1939
|
+
70 tests, 1742 assertions, 1 failures, 0 errors
|
1940
|
+
Loaded suite -e
|
1941
|
+
Started
|
1942
|
+
..F..................................................................
|
1943
|
+
Finished in 0.051097 seconds.
|
1944
|
+
|
1945
|
+
1) Failure:
|
1946
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
1947
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1948
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
1949
|
+
<"attachment"> expected but was
|
1950
|
+
<nil>.
|
1951
|
+
|
1952
|
+
69 tests, 339 assertions, 1 failures, 0 errors
|
1953
|
+
Loaded suite -e
|
1954
|
+
Started
|
1955
|
+
..F................................................................
|
1956
|
+
Finished in 0.042483 seconds.
|
1957
|
+
|
1958
|
+
1) Failure:
|
1959
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
1960
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1961
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
1962
|
+
<"attachment"> expected but was
|
1963
|
+
<nil>.
|
1964
|
+
|
1965
|
+
67 tests, 312 assertions, 1 failures, 0 errors
|
1966
|
+
Loaded suite -e
|
1967
|
+
Started
|
1968
|
+
..F................................................................
|
1969
|
+
Finished in 0.045175 seconds.
|
1970
|
+
|
1971
|
+
1) Failure:
|
1972
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
1973
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1974
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
1975
|
+
<"attachment"> expected but was
|
1976
|
+
<nil>.
|
1977
|
+
|
1978
|
+
67 tests, 312 assertions, 1 failures, 0 errors
|
1979
|
+
Loaded suite -e
|
1980
|
+
Started
|
1981
|
+
..F...............................................................................................................
|
1982
|
+
Finished in 0.082539 seconds.
|
1983
|
+
|
1984
|
+
1) Failure:
|
1985
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
1986
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
1987
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
1988
|
+
<"attachment"> expected but was
|
1989
|
+
<nil>.
|
1990
|
+
|
1991
|
+
114 tests, 527 assertions, 1 failures, 0 errors
|
1992
|
+
Loaded suite -e
|
1993
|
+
Started
|
1994
|
+
..F............................................................................
|
1995
|
+
Finished in 0.08958 seconds.
|
1996
|
+
|
1997
|
+
1) Failure:
|
1998
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
1999
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2000
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
2001
|
+
<"attachment"> expected but was
|
2002
|
+
<nil>.
|
2003
|
+
|
2004
|
+
79 tests, 375 assertions, 1 failures, 0 errors
|
2005
|
+
Loaded suite -e
|
2006
|
+
Started
|
2007
|
+
..F...............................................................................................
|
2008
|
+
Finished in 0.08739 seconds.
|
2009
|
+
|
2010
|
+
1) Failure:
|
2011
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
2012
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2013
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
2014
|
+
<"attachment"> expected but was
|
2015
|
+
<nil>.
|
2016
|
+
|
2017
|
+
98 tests, 430 assertions, 1 failures, 0 errors
|
2018
|
+
Loaded suite -e
|
2019
|
+
Started
|
2020
|
+
..F...........................................................................
|
2021
|
+
Finished in 0.047858 seconds.
|
2022
|
+
|
2023
|
+
1) Failure:
|
2024
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
2025
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2026
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
2027
|
+
<"attachment"> expected but was
|
2028
|
+
<nil>.
|
2029
|
+
|
2030
|
+
78 tests, 323 assertions, 1 failures, 0 errors
|
2031
|
+
Loaded suite -e
|
2032
|
+
Started
|
2033
|
+
..F...................................................................
|
2034
|
+
Finished in 0.047838 seconds.
|
2035
|
+
|
2036
|
+
1) Failure:
|
2037
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
2038
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2039
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
2040
|
+
<"attachment"> expected but was
|
2041
|
+
<nil>.
|
2042
|
+
|
2043
|
+
70 tests, 429 assertions, 1 failures, 0 errors
|
2044
|
+
Loaded suite -e
|
2045
|
+
Started
|
2046
|
+
..F...................................................................
|
2047
|
+
Finished in 0.045607 seconds.
|
2048
|
+
|
2049
|
+
1) Failure:
|
2050
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
2051
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2052
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
2053
|
+
<"attachment"> expected but was
|
2054
|
+
<nil>.
|
2055
|
+
|
2056
|
+
70 tests, 315 assertions, 1 failures, 0 errors
|
2057
|
+
Loaded suite -e
|
2058
|
+
Started
|
2059
|
+
...............E.............
|
2060
|
+
Finished in 0.094401 seconds.
|
2061
|
+
|
2062
|
+
1) Error:
|
2063
|
+
test_parse__rawjp(TestAddress):
|
2064
|
+
TMail::SyntaxError: parse error on token error
|
2065
|
+
parser.y:379:in `on_error'
|
2066
|
+
parser.y:379:in `_racc_yyparse_c'
|
2067
|
+
parser.y:375:in `scan'
|
2068
|
+
parser.y:375:in `parse_in'
|
2069
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
2070
|
+
racc/parser.rb:152:in `__send__'
|
2071
|
+
racc/parser.rb:152:in `yyparse'
|
2072
|
+
parser.y:366:in `parse'
|
2073
|
+
parser.y:344:in `parse'
|
2074
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
2075
|
+
./test/test_address.rb:90:in `validate_case__address'
|
2076
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
2077
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
2078
|
+
|
2079
|
+
29 tests, 1686 assertions, 0 failures, 1 errors
|
2080
|
+
Loaded suite -e
|
2081
|
+
Started
|
2082
|
+
..F................................................................
|
2083
|
+
Finished in 0.04508 seconds.
|
2084
|
+
|
2085
|
+
1) Failure:
|
2086
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
2087
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2088
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
2089
|
+
<"attachment"> expected but was
|
2090
|
+
<nil>.
|
2091
|
+
|
2092
|
+
67 tests, 312 assertions, 1 failures, 0 errors
|
2093
|
+
Loaded suite .
|
2094
|
+
Started
|
2095
|
+
..F...........................................................................................................................E....................................................................................
|
2096
|
+
Finished in 0.425147 seconds.
|
2097
|
+
|
2098
|
+
1) Failure:
|
2099
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
2100
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2101
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
2102
|
+
<"attachment"> expected but was
|
2103
|
+
<nil>.
|
2104
|
+
|
2105
|
+
2) Error:
|
2106
|
+
test_parse__rawjp(TestAddress):
|
2107
|
+
TMail::SyntaxError: parse error on token error
|
2108
|
+
parser.y:379:in `on_error'
|
2109
|
+
parser.y:379:in `_racc_yyparse_c'
|
2110
|
+
parser.y:375:in `scan'
|
2111
|
+
parser.y:375:in `parse_in'
|
2112
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
2113
|
+
racc/parser.rb:152:in `__send__'
|
2114
|
+
racc/parser.rb:152:in `yyparse'
|
2115
|
+
parser.y:366:in `parse'
|
2116
|
+
parser.y:344:in `parse'
|
2117
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
2118
|
+
./test/test_address.rb:90:in `validate_case__address'
|
2119
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
2120
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
2121
|
+
|
2122
|
+
211 tests, 3986 assertions, 1 failures, 1 errors
|
2123
|
+
Loaded suite -e
|
2124
|
+
Started
|
2125
|
+
...............E............................................................
|
2126
|
+
Finished in 0.142091 seconds.
|
2127
|
+
|
2128
|
+
1) Error:
|
2129
|
+
test_parse__rawjp(TestAddress):
|
2130
|
+
TMail::SyntaxError: parse error on token error
|
2131
|
+
parser.y:379:in `on_error'
|
2132
|
+
parser.y:379:in `_racc_yyparse_c'
|
2133
|
+
parser.y:375:in `scan'
|
2134
|
+
parser.y:375:in `parse_in'
|
2135
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
2136
|
+
racc/parser.rb:152:in `__send__'
|
2137
|
+
racc/parser.rb:152:in `yyparse'
|
2138
|
+
parser.y:366:in `parse'
|
2139
|
+
parser.y:344:in `parse'
|
2140
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
2141
|
+
./test/test_address.rb:90:in `validate_case__address'
|
2142
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
2143
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
2144
|
+
|
2145
|
+
76 tests, 1901 assertions, 0 failures, 1 errors
|
2146
|
+
Loaded suite -e
|
2147
|
+
Started
|
2148
|
+
..F...............................................................................................................
|
2149
|
+
Finished in 0.083532 seconds.
|
2150
|
+
|
2151
|
+
1) Failure:
|
2152
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
2153
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2154
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
2155
|
+
<"attachment"> expected but was
|
2156
|
+
<nil>.
|
2157
|
+
|
2158
|
+
114 tests, 527 assertions, 1 failures, 0 errors
|
2159
|
+
Loaded suite -e
|
2160
|
+
Started
|
2161
|
+
...........................E.............
|
2162
|
+
Finished in 0.154959 seconds.
|
2163
|
+
|
2164
|
+
1) Error:
|
2165
|
+
test_parse__rawjp(TestAddress):
|
2166
|
+
TMail::SyntaxError: parse error on token error
|
2167
|
+
parser.y:379:in `on_error'
|
2168
|
+
parser.y:379:in `_racc_yyparse_c'
|
2169
|
+
parser.y:375:in `scan'
|
2170
|
+
parser.y:375:in `parse_in'
|
2171
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
2172
|
+
racc/parser.rb:152:in `__send__'
|
2173
|
+
racc/parser.rb:152:in `yyparse'
|
2174
|
+
parser.y:366:in `parse'
|
2175
|
+
parser.y:344:in `parse'
|
2176
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
2177
|
+
./test/test_address.rb:90:in `validate_case__address'
|
2178
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
2179
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
2180
|
+
|
2181
|
+
41 tests, 1749 assertions, 0 failures, 1 errors
|
2182
|
+
Loaded suite -e
|
2183
|
+
Started
|
2184
|
+
..F............................................................................
|
2185
|
+
Finished in 0.086501 seconds.
|
2186
|
+
|
2187
|
+
1) Failure:
|
2188
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
2189
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2190
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
2191
|
+
<"attachment"> expected but was
|
2192
|
+
<nil>.
|
2193
|
+
|
2194
|
+
79 tests, 375 assertions, 1 failures, 0 errors
|
2195
|
+
Loaded suite -e
|
2196
|
+
Started
|
2197
|
+
..............................................E.............
|
2198
|
+
Finished in 0.172243 seconds.
|
2199
|
+
|
2200
|
+
1) Error:
|
2201
|
+
test_parse__rawjp(TestAddress):
|
2202
|
+
TMail::SyntaxError: parse error on token error
|
2203
|
+
parser.y:379:in `on_error'
|
2204
|
+
parser.y:379:in `_racc_yyparse_c'
|
2205
|
+
parser.y:375:in `scan'
|
2206
|
+
parser.y:375:in `parse_in'
|
2207
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
2208
|
+
racc/parser.rb:152:in `__send__'
|
2209
|
+
racc/parser.rb:152:in `yyparse'
|
2210
|
+
parser.y:366:in `parse'
|
2211
|
+
parser.y:344:in `parse'
|
2212
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
2213
|
+
./test/test_address.rb:90:in `validate_case__address'
|
2214
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
2215
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
2216
|
+
|
2217
|
+
60 tests, 1804 assertions, 0 failures, 1 errors
|
2218
|
+
Loaded suite -e
|
2219
|
+
Started
|
2220
|
+
..F...............................................................................................
|
2221
|
+
Finished in 0.105874 seconds.
|
2222
|
+
|
2223
|
+
1) Failure:
|
2224
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
2225
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2226
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
2227
|
+
<"attachment"> expected but was
|
2228
|
+
<nil>.
|
2229
|
+
|
2230
|
+
98 tests, 430 assertions, 1 failures, 0 errors
|
2231
|
+
Loaded suite -e
|
2232
|
+
Started
|
2233
|
+
...............E........................
|
2234
|
+
Finished in 0.103469 seconds.
|
2235
|
+
|
2236
|
+
1) Error:
|
2237
|
+
test_parse__rawjp(TestAddress):
|
2238
|
+
TMail::SyntaxError: parse error on token error
|
2239
|
+
parser.y:379:in `on_error'
|
2240
|
+
parser.y:379:in `_racc_yyparse_c'
|
2241
|
+
parser.y:375:in `scan'
|
2242
|
+
parser.y:375:in `parse_in'
|
2243
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
2244
|
+
racc/parser.rb:152:in `__send__'
|
2245
|
+
racc/parser.rb:152:in `yyparse'
|
2246
|
+
parser.y:366:in `parse'
|
2247
|
+
parser.y:344:in `parse'
|
2248
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
2249
|
+
./test/test_address.rb:90:in `validate_case__address'
|
2250
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
2251
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
2252
|
+
|
2253
|
+
40 tests, 1697 assertions, 0 failures, 1 errors
|
2254
|
+
Loaded suite -e
|
2255
|
+
Started
|
2256
|
+
..F...........................................................................
|
2257
|
+
Finished in 0.047818 seconds.
|
2258
|
+
|
2259
|
+
1) Failure:
|
2260
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
2261
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2262
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
2263
|
+
<"attachment"> expected but was
|
2264
|
+
<nil>.
|
2265
|
+
|
2266
|
+
78 tests, 323 assertions, 1 failures, 0 errors
|
2267
|
+
Loaded suite -e
|
2268
|
+
Started
|
2269
|
+
..................E.............
|
2270
|
+
Finished in 0.103414 seconds.
|
2271
|
+
|
2272
|
+
1) Error:
|
2273
|
+
test_parse__rawjp(TestAddress):
|
2274
|
+
TMail::SyntaxError: parse error on token error
|
2275
|
+
parser.y:379:in `on_error'
|
2276
|
+
parser.y:379:in `_racc_yyparse_c'
|
2277
|
+
parser.y:375:in `scan'
|
2278
|
+
parser.y:375:in `parse_in'
|
2279
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
2280
|
+
racc/parser.rb:152:in `__send__'
|
2281
|
+
racc/parser.rb:152:in `yyparse'
|
2282
|
+
parser.y:366:in `parse'
|
2283
|
+
parser.y:344:in `parse'
|
2284
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
2285
|
+
./test/test_address.rb:90:in `validate_case__address'
|
2286
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
2287
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
2288
|
+
|
2289
|
+
32 tests, 1803 assertions, 0 failures, 1 errors
|
2290
|
+
Loaded suite -e
|
2291
|
+
Started
|
2292
|
+
..F...................................................................
|
2293
|
+
Finished in 0.04758 seconds.
|
2294
|
+
|
2295
|
+
1) Failure:
|
2296
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
2297
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2298
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
2299
|
+
<"attachment"> expected but was
|
2300
|
+
<nil>.
|
2301
|
+
|
2302
|
+
70 tests, 429 assertions, 1 failures, 0 errors
|
2303
|
+
Loaded suite -e
|
2304
|
+
Started
|
2305
|
+
...............E................
|
2306
|
+
Finished in 0.104814 seconds.
|
2307
|
+
|
2308
|
+
1) Error:
|
2309
|
+
test_parse__rawjp(TestAddress):
|
2310
|
+
TMail::SyntaxError: parse error on token error
|
2311
|
+
parser.y:379:in `on_error'
|
2312
|
+
parser.y:379:in `_racc_yyparse_c'
|
2313
|
+
parser.y:375:in `scan'
|
2314
|
+
parser.y:375:in `parse_in'
|
2315
|
+
racc/parser.rb:152:in `_racc_yyparse_c'
|
2316
|
+
racc/parser.rb:152:in `__send__'
|
2317
|
+
racc/parser.rb:152:in `yyparse'
|
2318
|
+
parser.y:366:in `parse'
|
2319
|
+
parser.y:344:in `parse'
|
2320
|
+
./test/../lib/tmail/address.rb:84:in `parse'
|
2321
|
+
./test/test_address.rb:90:in `validate_case__address'
|
2322
|
+
./test/test_address.rb:247:in `_test_parse__euc'
|
2323
|
+
./test/test_address.rb:237:in `test_parse__rawjp'
|
2324
|
+
|
2325
|
+
32 tests, 1689 assertions, 0 failures, 1 errors
|
2326
|
+
Loaded suite -e
|
2327
|
+
Started
|
2328
|
+
..F...................................................................
|
2329
|
+
Finished in 0.045485 seconds.
|
2330
|
+
|
2331
|
+
1) Failure:
|
2332
|
+
test_ATTRS(ContentDispositionHeaderTester)
|
2333
|
+
[./test/test_header.rb:824:in `_test_raw_iso2022jp'
|
2334
|
+
./test/test_header.rb:756:in `test_ATTRS']:
|
2335
|
+
<"attachment"> expected but was
|
2336
|
+
<nil>.
|
2337
|
+
|
2338
|
+
70 tests, 315 assertions, 1 failures, 0 errors
|
2339
|
+
|
2340
|
+
|