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
This commit is contained in:
parent
e788ae7015
commit
5f8c4e0703
@ -254,8 +254,10 @@ class ChangesetTest < ActiveSupport::TestCase
|
|||||||
def test_invalid_utf8_sequences_in_comments_should_be_replaced_latin1
|
def test_invalid_utf8_sequences_in_comments_should_be_replaced_latin1
|
||||||
proj = Project.find(3)
|
proj = Project.find(3)
|
||||||
# str = File.read("#{RAILS_ROOT}/test/fixtures/encoding/iso-8859-1.txt")
|
# str = File.read("#{RAILS_ROOT}/test/fixtures/encoding/iso-8859-1.txt")
|
||||||
str = "Texte encod\xe9 en ISO-8859-1."
|
str1 = "Texte encod\xe9 en ISO-8859-1."
|
||||||
str.force_encoding("ASCII-8BIT") if str.respond_to?(:force_encoding)
|
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!(
|
r = Repository::Bazaar.create!(
|
||||||
:project => proj,
|
:project => proj,
|
||||||
:url => '/tmp/test/bazaar',
|
:url => '/tmp/test/bazaar',
|
||||||
@ -265,9 +267,11 @@ class ChangesetTest < ActiveSupport::TestCase
|
|||||||
:committed_on => Time.now,
|
:committed_on => Time.now,
|
||||||
:revision => '123',
|
:revision => '123',
|
||||||
:scmid => '12345',
|
:scmid => '12345',
|
||||||
:comments => str)
|
:comments => str1,
|
||||||
|
:committer => str2)
|
||||||
assert( c.save )
|
assert( c.save )
|
||||||
assert_equal "Texte encod? en ISO-8859-1.", c.comments
|
assert_equal "Texte encod? en ISO-8859-1.", c.comments
|
||||||
|
assert_equal "?a?b?c?d?e", c.committer
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_invalid_utf8_sequences_in_comments_should_be_replaced_ja_jis
|
def test_invalid_utf8_sequences_in_comments_should_be_replaced_ja_jis
|
||||||
|
Loading…
x
Reference in New Issue
Block a user