1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-24 01:11:12 +00:00

pdf: add test to export issue pdf with UTF-8 U+FFFD (#17826)

git-svn-id: http://svn.redmine.org/redmine/trunk@13368 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2014-09-11 13:46:38 +00:00
parent 1612da75d1
commit 3cba1e0012

View File

@ -1405,6 +1405,22 @@ class IssuesControllerTest < ActionController::TestCase
assert_not_nil assigns(:issue)
end
def test_export_to_pdf_with_utf8_u_ffdd
# U+FFFD
s = "\xef\xbf\xbd"
s.force_encoding('UTF-8') if s.respond_to?(:force_encoding)
issue = Issue.generate!(:subject => s)
["en", "zh", "zh-TW", "ja", "ko"].each do |lang|
with_settings :default_language => lang do
get :show, :id => issue.id, :format => 'pdf'
assert_response :success
assert_equal 'application/pdf', @response.content_type
assert @response.body.starts_with?('%PDF')
assert_not_nil assigns(:issue)
end
end
end
def test_show_export_to_pdf_with_ancestors
issue = Issue.generate!(:project_id => 1, :author_id => 2, :tracker_id => 1, :subject => 'child', :parent_issue_id => 1)