From 5f8c4e07036605512f4bca0417614e5c5f54ced4 2011-04-15 14:21:11 From: Toshi MARUYAMA Date: 2011-04-15 14:21:11 Subject: [PATCH] scm: add test of invalid utf8 sequences in committer at unit changeset test. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5470 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/unit/changeset_test.rb b/test/unit/changeset_test.rb index 8e98b05..f50a664 100644 --- a/test/unit/changeset_test.rb +++ b/test/unit/changeset_test.rb @@ -254,8 +254,10 @@ class ChangesetTest < ActiveSupport::TestCase def test_invalid_utf8_sequences_in_comments_should_be_replaced_latin1 proj = Project.find(3) # str = File.read("#{RAILS_ROOT}/test/fixtures/encoding/iso-8859-1.txt") - str = "Texte encod\xe9 en ISO-8859-1." - str.force_encoding("ASCII-8BIT") if str.respond_to?(:force_encoding) + str1 = "Texte encod\xe9 en ISO-8859-1." + str2 = "\xe9a\xe9b\xe9c\xe9d\xe9e" + str1.force_encoding("UTF-8") if str1.respond_to?(:force_encoding) + str2.force_encoding("ASCII-8BIT") if str2.respond_to?(:force_encoding) r = Repository::Bazaar.create!( :project => proj, :url => '/tmp/test/bazaar', @@ -265,9 +267,11 @@ class ChangesetTest < ActiveSupport::TestCase :committed_on => Time.now, :revision => '123', :scmid => '12345', - :comments => str) + :comments => str1, + :committer => str2) assert( c.save ) assert_equal "Texte encod? en ISO-8859-1.", c.comments + assert_equal "?a?b?c?d?e", c.committer end def test_invalid_utf8_sequences_in_comments_should_be_replaced_ja_jis