PDF: add test of Ruby 1.9 compatibility of '0x5c'(backslash) handling in FPDF ANSI (#61, #117).

Japanese Shift_JIS and Traditional Chinese Big5 have '0x5c'(backslash) problem.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5344 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-04-06 05:39:26 +00:00
parent a4bad14359
commit 411c7100cb
1 changed files with 15 additions and 0 deletions

View File

@ -44,4 +44,19 @@ class PdfTest < ActiveSupport::TestCase
assert_equal '\\\\\\\\abcd\\\\\\\\abcd\\\\\\\\',
pdf.fix_text_encoding('\\\\abcd\\\\abcd\\\\')
end
def test_fix_text_encoding_backslash_ja_cp932
pdf = Redmine::Export::PDF::IFPDF.new('ja')
assert pdf
assert_equal "\x83\\\\\x98A",
pdf.fix_text_encoding("\xe3\x82\xbd\xe9\x80\xa3")
assert_equal "\x83\\\\\x98A\x91\xe3\x95\\\\",
pdf.fix_text_encoding("\xe3\x82\xbd\xe9\x80\xa3\xe4\xbb\xa3\xe8\xa1\xa8")
assert_equal "\x91\xe3\x95\\\\\\\\",
pdf.fix_text_encoding("\xe4\xbb\xa3\xe8\xa1\xa8\\")
assert_equal "\x91\xe3\x95\\\\\\\\\\\\",
pdf.fix_text_encoding("\xe4\xbb\xa3\xe8\xa1\xa8\\\\")
assert_equal "\x91\xe3\x95\\\\a\\\\",
pdf.fix_text_encoding("\xe4\xbb\xa3\xe8\xa1\xa8a\\")
end
end