]> source.dussan.org Git - redmine.git/commitdiff
scm: add test of invalid utf8 sequences in committer at unit changeset test.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 15 Apr 2011 14:21:11 +0000 (14:21 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 15 Apr 2011 14:21:11 +0000 (14:21 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5470 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/changeset_test.rb

index 8e98b0574b587f9d8d3a36b1b5e7c361335e8c8c..f50a664fc99208d0f99cd79a0779fd942612ebfc 100644 (file)
@@ -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