Browse Source

PDF: add test of replacing converting error characters in FPDF ANSI on Ruby 1.9 (#61).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5350 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.2.0
Toshi MARUYAMA 13 years ago
parent
commit
561f6bb6d1
1 changed files with 16 additions and 0 deletions
  1. 16
    0
      test/unit/lib/redmine/export/pdf_test.rb

+ 16
- 0
test/unit/lib/redmine/export/pdf_test.rb View File

@@ -66,4 +66,20 @@ class PdfTest < ActiveSupport::TestCase
assert_equal "\x91\xe3\x95\\\\a\\\\",
pdf.fix_text_encoding("\xe4\xbb\xa3\xe8\xa1\xa8a\\")
end

def test_fix_text_encoding_cannot_convert_ja_cp932
pdf = Redmine::Export::PDF::IFPDF.new('ja')
assert pdf
utf8_txt_1 = "\xe7\x8b\x80\xe6\x85\x8b"
utf8_txt_2 = "\xe7\x8b\x80\xe6\x85\x8b\xe7\x8b\x80"
utf8_txt_3 = "\xe7\x8b\x80\xe7\x8b\x80\xe6\x85\x8b\xe7\x8b\x80"
if utf8_txt_1.respond_to?(:force_encoding)
assert_equal "?\x91\xd4",
pdf.fix_text_encoding(utf8_txt_1)
assert_equal "?\x91\xd4?",
pdf.fix_text_encoding(utf8_txt_2)
assert_equal "??\x91\xd4?",
pdf.fix_text_encoding(utf8_txt_3)
end
end
end

Loading…
Cancel
Save