2008-01-05 08:32:22 -05:00
|
|
|
require 'abstract_unit'
|
2005-09-01 10:45:10 -04:00
|
|
|
|
2009-12-27 06:18:46 -05:00
|
|
|
class MailTest < Test::Unit::TestCase
|
2005-09-01 10:45:10 -04:00
|
|
|
def test_body
|
2009-11-12 00:08:50 -05:00
|
|
|
m = Mail.new
|
2005-09-01 10:45:10 -04:00
|
|
|
expected = 'something_with_underscores'
|
2009-11-22 07:20:57 -05:00
|
|
|
m.content_transfer_encoding = 'quoted-printable'
|
2005-09-01 10:45:10 -04:00
|
|
|
quoted_body = [expected].pack('*M')
|
|
|
|
m.body = quoted_body
|
2009-11-22 07:20:57 -05:00
|
|
|
assert_equal "something_with_underscores=\r\n", m.body.encoded
|
2009-12-27 04:56:16 -05:00
|
|
|
# CHANGED: body returns object, not string, Changed m.body to m.body.to_s
|
|
|
|
assert_equal expected, m.body.to_s
|
2005-09-01 10:45:10 -04:00
|
|
|
end
|
2007-02-22 14:04:00 -05:00
|
|
|
|
|
|
|
def test_nested_attachments_are_recognized_correctly
|
|
|
|
fixture = File.read("#{File.dirname(__FILE__)}/fixtures/raw_email_with_nested_attachment")
|
2009-11-19 22:10:57 -05:00
|
|
|
mail = Mail.new(fixture)
|
2007-02-22 14:04:00 -05:00
|
|
|
assert_equal 2, mail.attachments.length
|
2009-11-22 07:20:57 -05:00
|
|
|
assert_equal "image/png", mail.attachments.first.mime_type
|
|
|
|
assert_equal 1902, mail.attachments.first.decoded.length
|
|
|
|
assert_equal "application/pkcs7-signature", mail.attachments.last.mime_type
|
2007-02-22 14:04:00 -05:00
|
|
|
end
|
2009-11-22 07:20:57 -05:00
|
|
|
|
2005-09-01 10:45:10 -04:00
|
|
|
end
|