2008-05-18 06:22:34 +02:00
|
|
|
# encoding: utf-8
|
|
|
|
require 'abstract_unit'
|
2007-01-22 14:43:50 +01:00
|
|
|
require 'tempfile'
|
|
|
|
|
|
|
|
class QuotingTest < Test::Unit::TestCase
|
2007-12-21 08:48:59 +01:00
|
|
|
# Move some tests from TMAIL here
|
|
|
|
def test_unquote_quoted_printable
|
2008-05-18 06:22:34 +02:00
|
|
|
a ="=?ISO-8859-1?Q?[166417]_Bekr=E6ftelse_fra_Rejsefeber?="
|
2007-12-21 08:48:59 +01:00
|
|
|
b = TMail::Unquoter.unquote_and_convert_to(a, 'utf-8')
|
|
|
|
assert_equal "[166417] Bekr\303\246ftelse fra Rejsefeber", b
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_unquote_base64
|
|
|
|
a ="=?ISO-8859-1?B?WzE2NjQxN10gQmVrcuZmdGVsc2UgZnJhIFJlanNlZmViZXI=?="
|
|
|
|
b = TMail::Unquoter.unquote_and_convert_to(a, 'utf-8')
|
|
|
|
assert_equal "[166417] Bekr\303\246ftelse fra Rejsefeber", b
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_unquote_without_charset
|
2008-05-18 06:22:34 +02:00
|
|
|
a ="[166417]_Bekr=E6ftelse_fra_Rejsefeber"
|
2007-12-21 08:48:59 +01:00
|
|
|
b = TMail::Unquoter.unquote_and_convert_to(a, 'utf-8')
|
|
|
|
assert_equal "[166417]_Bekr=E6ftelse_fra_Rejsefeber", b
|
2008-05-18 06:22:34 +02:00
|
|
|
end
|
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
def test_unqoute_multiple
|
2010-05-25 19:45:45 +02:00
|
|
|
quoted ="=?utf-8?q?Re=3A_=5B12=5D_=23137=3A_Inkonsistente_verwendung_von_=22Hin?==?utf-8?b?enVmw7xnZW4i?="
|
|
|
|
actual = TMail::Unquoter.unquote_and_convert_to(quoted, 'utf-8')
|
|
|
|
|
|
|
|
expected = "Re: [12] #137: Inkonsistente verwendung von \"Hinzuf\303\274gen\""
|
|
|
|
expected.force_encoding 'ASCII-8BIT' if expected.respond_to?(:force_encoding)
|
|
|
|
|
|
|
|
assert_equal expected, actual
|
2007-12-21 08:48:59 +01:00
|
|
|
end
|
2008-05-18 06:22:34 +02:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
def test_unqoute_in_the_middle
|
2008-05-18 06:22:34 +02:00
|
|
|
a ="Re: Photos =?ISO-8859-1?Q?Brosch=FCre_Rand?="
|
2007-12-21 08:48:59 +01:00
|
|
|
b = TMail::Unquoter.unquote_and_convert_to(a, 'utf-8')
|
|
|
|
assert_equal "Re: Photos Brosch\303\274re Rand", b
|
|
|
|
end
|
2008-05-18 06:22:34 +02:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
def test_unqoute_iso
|
2008-05-18 06:22:34 +02:00
|
|
|
a ="=?ISO-8859-1?Q?Brosch=FCre_Rand?="
|
2007-12-21 08:48:59 +01:00
|
|
|
b = TMail::Unquoter.unquote_and_convert_to(a, 'iso-8859-1')
|
2008-05-18 06:22:34 +02:00
|
|
|
expected = "Brosch\374re Rand"
|
|
|
|
expected.force_encoding 'iso-8859-1' if expected.respond_to?(:force_encoding)
|
|
|
|
assert_equal expected, b
|
2007-12-21 08:48:59 +01:00
|
|
|
end
|
2008-05-18 06:22:34 +02:00
|
|
|
|
2007-01-22 14:43:50 +01:00
|
|
|
def test_quote_multibyte_chars
|
|
|
|
original = "\303\246 \303\270 and \303\245"
|
2008-05-18 06:22:34 +02:00
|
|
|
original.force_encoding('ASCII-8BIT') if original.respond_to?(:force_encoding)
|
2007-01-22 14:43:50 +01:00
|
|
|
|
|
|
|
result = execute_in_sandbox(<<-CODE)
|
|
|
|
$:.unshift(File.dirname(__FILE__) + "/../lib/")
|
2009-02-04 21:26:08 +01:00
|
|
|
if RUBY_VERSION < '1.9'
|
|
|
|
$KCODE = 'u'
|
|
|
|
require 'jcode'
|
|
|
|
end
|
2007-01-22 14:43:50 +01:00
|
|
|
require 'action_mailer/quoting'
|
|
|
|
include ActionMailer::Quoting
|
|
|
|
quoted_printable(#{original.inspect}, "UTF-8")
|
|
|
|
CODE
|
|
|
|
|
|
|
|
unquoted = TMail::Unquoter.unquote_and_convert_to(result, nil)
|
|
|
|
assert_equal unquoted, original
|
|
|
|
end
|
2008-05-18 06:22:34 +02:00
|
|
|
|
|
|
|
|
2007-02-09 09:04:31 +01:00
|
|
|
# test an email that has been created using \r\n newlines, instead of
|
|
|
|
# \n newlines.
|
|
|
|
def test_email_quoted_with_0d0a
|
|
|
|
mail = TMail::Mail.parse(IO.read("#{File.dirname(__FILE__)}/fixtures/raw_email_quoted_with_0d0a"))
|
|
|
|
assert_match %r{Elapsed time}, mail.body
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_email_with_partially_quoted_subject
|
|
|
|
mail = TMail::Mail.parse(IO.read("#{File.dirname(__FILE__)}/fixtures/raw_email_with_partially_quoted_subject"))
|
2010-05-25 19:45:45 +02:00
|
|
|
expected = "Re: Test: \"\346\274\242\345\255\227\" mid \"\346\274\242\345\255\227\" tail"
|
|
|
|
expected.force_encoding('ASCII-8BIT') if expected.respond_to?(:force_encoding)
|
|
|
|
assert_equal expected, mail.subject
|
2007-02-09 09:04:31 +01:00
|
|
|
end
|
2008-05-18 06:22:34 +02:00
|
|
|
|
2007-01-22 14:43:50 +01:00
|
|
|
private
|
|
|
|
# This whole thing *could* be much simpler, but I don't think Tempfile,
|
|
|
|
# popen and others exist on all platforms (like Windows).
|
|
|
|
def execute_in_sandbox(code)
|
|
|
|
test_name = "#{File.dirname(__FILE__)}/am-quoting-test.#{$$}.rb"
|
|
|
|
res_name = "#{File.dirname(__FILE__)}/am-quoting-test.#{$$}.out"
|
|
|
|
|
|
|
|
File.open(test_name, "w+") do |file|
|
|
|
|
file.write(<<-CODE)
|
|
|
|
block = Proc.new do
|
|
|
|
#{code}
|
|
|
|
end
|
|
|
|
puts block.call
|
|
|
|
CODE
|
|
|
|
end
|
|
|
|
|
|
|
|
system("ruby #{test_name} > #{res_name}") or raise "could not run test in sandbox"
|
2007-02-09 09:04:31 +01:00
|
|
|
File.read(res_name).chomp
|
2007-01-22 14:43:50 +01:00
|
|
|
ensure
|
|
|
|
File.delete(test_name) rescue nil
|
|
|
|
File.delete(res_name) rescue nil
|
|
|
|
end
|
|
|
|
end
|