diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-11-16 05:07:16 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-11-16 05:07:16 +0000 |
commit | 8433bbab69c6e18074383b73d820368f8bdddfbe (patch) | |
tree | c5af00107b11acaabb92aeba5423644939834b8d /test/unit/lib | |
parent | d2811171fd96c01e83fe80dacedb26789f589563 (diff) | |
download | redmine-8433bbab69c6e18074383b73d820368f8bdddfbe.tar.gz redmine-8433bbab69c6e18074383b73d820368f8bdddfbe.zip |
move iconv from utf8 logic from pdf to lib/redmine/codeset_util.rb for common use (#8549)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7818 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/lib')
-rw-r--r-- | test/unit/lib/redmine/export/pdf_test.rb | 64 |
1 files changed, 17 insertions, 47 deletions
diff --git a/test/unit/lib/redmine/export/pdf_test.rb b/test/unit/lib/redmine/export/pdf_test.rb index ec1f3fd7b..d80741cdd 100644 --- a/test/unit/lib/redmine/export/pdf_test.rb +++ b/test/unit/lib/redmine/export/pdf_test.rb @@ -19,38 +19,21 @@ require File.expand_path('../../../../../test_helper', __FILE__) require 'iconv' class PdfTest < ActiveSupport::TestCase - include Redmine::I18n def test_fix_text_encoding_nil - set_language_if_valid 'ja' - assert_equal 'CP932', l(:general_pdf_encoding) - if RUBY_VERSION < '1.9' - if RUBY_PLATFORM == 'java' - ic = Iconv.new("SJIS", 'UTF-8') - else - ic = Iconv.new(l(:general_pdf_encoding), 'UTF-8') - end - end - assert_equal '', Redmine::Export::PDF::RDMPdfEncoding::rdm_pdf_iconv(ic, nil) + assert_equal '', Redmine::Export::PDF::RDMPdfEncoding::rdm_from_utf8(nil, "UTF-8") + assert_equal '', Redmine::Export::PDF::RDMPdfEncoding::rdm_from_utf8(nil, "ISO-8859-1") end def test_rdm_pdf_iconv_cannot_convert_ja_cp932 - set_language_if_valid 'ja' - assert_equal 'CP932', l(:general_pdf_encoding) - if RUBY_VERSION < '1.9' - if RUBY_PLATFORM == 'java' - ic = Iconv.new("SJIS", 'UTF-8') - else - ic = Iconv.new(l(:general_pdf_encoding), 'UTF-8') - end - end + encoding = ( RUBY_PLATFORM == 'java' ? "SJIS" : "CP932" ) 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) - txt_1 = Redmine::Export::PDF::RDMPdfEncoding::rdm_pdf_iconv(ic, utf8_txt_1) - txt_2 = Redmine::Export::PDF::RDMPdfEncoding::rdm_pdf_iconv(ic, utf8_txt_2) - txt_3 = Redmine::Export::PDF::RDMPdfEncoding::rdm_pdf_iconv(ic, utf8_txt_3) + txt_1 = Redmine::Export::PDF::RDMPdfEncoding::rdm_from_utf8(utf8_txt_1, encoding) + txt_2 = Redmine::Export::PDF::RDMPdfEncoding::rdm_from_utf8(utf8_txt_2, encoding) + txt_3 = Redmine::Export::PDF::RDMPdfEncoding::rdm_from_utf8(utf8_txt_3, encoding) assert_equal "?\x91\xd4", txt_1 assert_equal "?\x91\xd4?", txt_2 assert_equal "??\x91\xd4?", txt_3 @@ -59,33 +42,28 @@ class PdfTest < ActiveSupport::TestCase assert_equal "ASCII-8BIT", txt_3.encoding.to_s elsif RUBY_PLATFORM == 'java' assert_equal "??", - Redmine::Export::PDF::RDMPdfEncoding::rdm_pdf_iconv(ic, utf8_txt_1) + Redmine::Export::PDF::RDMPdfEncoding::rdm_from_utf8(utf8_txt_1, encoding) assert_equal "???", - Redmine::Export::PDF::RDMPdfEncoding::rdm_pdf_iconv(ic, utf8_txt_2) + Redmine::Export::PDF::RDMPdfEncoding::rdm_from_utf8(utf8_txt_2, encoding) assert_equal "????", - Redmine::Export::PDF::RDMPdfEncoding::rdm_pdf_iconv(ic, utf8_txt_3) + Redmine::Export::PDF::RDMPdfEncoding::rdm_from_utf8(utf8_txt_3, encoding) else assert_equal "???\x91\xd4", - Redmine::Export::PDF::RDMPdfEncoding::rdm_pdf_iconv(ic, utf8_txt_1) + Redmine::Export::PDF::RDMPdfEncoding::rdm_from_utf8(utf8_txt_1, encoding) assert_equal "???\x91\xd4???", - Redmine::Export::PDF::RDMPdfEncoding::rdm_pdf_iconv(ic, utf8_txt_2) + Redmine::Export::PDF::RDMPdfEncoding::rdm_from_utf8(utf8_txt_2, encoding) assert_equal "??????\x91\xd4???", - Redmine::Export::PDF::RDMPdfEncoding::rdm_pdf_iconv(ic, utf8_txt_3) + Redmine::Export::PDF::RDMPdfEncoding::rdm_from_utf8(utf8_txt_3, encoding) end end def test_rdm_pdf_iconv_invalid_utf8_should_be_replaced_en - set_language_if_valid 'en' - assert_equal 'UTF-8', l(:general_pdf_encoding) str1 = "Texte encod\xe9 en ISO-8859-1" str2 = "\xe9a\xe9b\xe9c\xe9d\xe9e test" str1.force_encoding("UTF-8") if str1.respond_to?(:force_encoding) str2.force_encoding("ASCII-8BIT") if str2.respond_to?(:force_encoding) - if RUBY_VERSION < '1.9' - ic = Iconv.new(l(:general_pdf_encoding), 'UTF-8') - end - txt_1 = Redmine::Export::PDF::RDMPdfEncoding::rdm_pdf_iconv(ic, str1) - txt_2 = Redmine::Export::PDF::RDMPdfEncoding::rdm_pdf_iconv(ic, str2) + txt_1 = Redmine::Export::PDF::RDMPdfEncoding::rdm_from_utf8(str1, 'UTF-8') + txt_2 = Redmine::Export::PDF::RDMPdfEncoding::rdm_from_utf8(str2, 'UTF-8') if txt_1.respond_to?(:force_encoding) assert_equal "ASCII-8BIT", txt_1.encoding.to_s assert_equal "ASCII-8BIT", txt_2.encoding.to_s @@ -95,21 +73,13 @@ class PdfTest < ActiveSupport::TestCase end def test_rdm_pdf_iconv_invalid_utf8_should_be_replaced_ja - set_language_if_valid 'ja' - assert_equal 'CP932', l(:general_pdf_encoding) str1 = "Texte encod\xe9 en ISO-8859-1" str2 = "\xe9a\xe9b\xe9c\xe9d\xe9e test" str1.force_encoding("UTF-8") if str1.respond_to?(:force_encoding) str2.force_encoding("ASCII-8BIT") if str2.respond_to?(:force_encoding) - if RUBY_VERSION < '1.9' - if RUBY_PLATFORM == 'java' - ic = Iconv.new("SJIS", 'UTF-8') - else - ic = Iconv.new(l(:general_pdf_encoding), 'UTF-8') - end - end - txt_1 = Redmine::Export::PDF::RDMPdfEncoding::rdm_pdf_iconv(ic, str1) - txt_2 = Redmine::Export::PDF::RDMPdfEncoding::rdm_pdf_iconv(ic, str2) + encoding = ( RUBY_PLATFORM == 'java' ? "SJIS" : "CP932" ) + txt_1 = Redmine::Export::PDF::RDMPdfEncoding::rdm_from_utf8(str1, encoding) + txt_2 = Redmine::Export::PDF::RDMPdfEncoding::rdm_from_utf8(str2, encoding) if txt_1.respond_to?(:force_encoding) assert_equal "ASCII-8BIT", txt_1.encoding.to_s assert_equal "ASCII-8BIT", txt_2.encoding.to_s |