2010-09-17 09:14:14 -04:00
|
|
|
|
# coding: binary
|
2010-09-17 09:31:16 -04:00
|
|
|
|
|
|
|
|
|
require "rexml_test_utils"
|
2010-09-17 09:14:14 -04:00
|
|
|
|
|
|
|
|
|
require 'rexml/source'
|
|
|
|
|
|
|
|
|
|
class EncodingTester < Test::Unit::TestCase
|
2010-09-17 09:31:16 -04:00
|
|
|
|
include REXMLTestUtils
|
2010-09-17 09:14:14 -04:00
|
|
|
|
include REXML
|
|
|
|
|
|
|
|
|
|
def setup
|
|
|
|
|
@encoded = "<?xml version='1.0' encoding='ISO-8859-3'?>"+
|
|
|
|
|
"<a><b>\346</b></a>"
|
|
|
|
|
@not_encoded = "<a><b>ĉ</b></a>"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Given an encoded document, try to write out to that encoding
|
2010-09-17 09:46:56 -04:00
|
|
|
|
def test_encoded_in_encoded_out
|
2010-09-17 09:14:14 -04:00
|
|
|
|
doc = Document.new( @encoded )
|
|
|
|
|
doc.write( out="" )
|
|
|
|
|
out.force_encoding('binary') if out.respond_to? :force_encoding
|
|
|
|
|
assert_equal( @encoded, out )
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Given an encoded document, try to change the encoding and write it out
|
|
|
|
|
def test_encoded_in_change_out
|
|
|
|
|
doc = Document.new( @encoded )
|
|
|
|
|
doc.xml_decl.encoding = "UTF-8"
|
2010-10-30 08:10:56 -04:00
|
|
|
|
assert_equal( ::Encoding::UTF_8, doc.encoding )
|
2010-09-17 09:14:14 -04:00
|
|
|
|
REXML::Formatters::Default.new.write( doc.root, out="" )
|
|
|
|
|
out.force_encoding('binary') if out.respond_to? :force_encoding
|
|
|
|
|
assert_equal( @not_encoded, out )
|
|
|
|
|
char = XPath.first( doc, "/a/b/text()" ).to_s
|
|
|
|
|
char.force_encoding('binary') if char.respond_to? :force_encoding
|
|
|
|
|
assert_equal( "ĉ", char )
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# * Given an encoded document, try to write it to a different encoding
|
|
|
|
|
def test_encoded_in_different_out
|
|
|
|
|
doc = Document.new( @encoded )
|
|
|
|
|
REXML::Formatters::Default.new.write( doc.root, Output.new( out="", "UTF-8" ) )
|
|
|
|
|
out.force_encoding('binary') if out.respond_to? :force_encoding
|
|
|
|
|
assert_equal( @not_encoded, out )
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# * Given a non-encoded document, change the encoding
|
|
|
|
|
def test_in_change_out
|
|
|
|
|
doc = Document.new( @not_encoded )
|
|
|
|
|
doc.xml_decl.encoding = "ISO-8859-3"
|
2010-10-30 08:10:56 -04:00
|
|
|
|
assert_equal( ::Encoding::ISO_8859_3, doc.encoding )
|
2010-09-17 09:14:14 -04:00
|
|
|
|
doc.write( out="" )
|
|
|
|
|
out.force_encoding('binary') if out.respond_to? :force_encoding
|
|
|
|
|
assert_equal( @encoded, out )
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# * Given a non-encoded document, write to a different encoding
|
|
|
|
|
def test_in_different_out
|
|
|
|
|
doc = Document.new( @not_encoded )
|
|
|
|
|
doc.write( Output.new( out="", "ISO-8859-3" ) )
|
|
|
|
|
out.force_encoding('binary') if out.respond_to? :force_encoding
|
|
|
|
|
assert_equal( @encoded, out )
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# * Given an encoded document, accessing text and attribute nodes
|
|
|
|
|
# should provide UTF-8 text.
|
|
|
|
|
def test_in_different_access
|
|
|
|
|
doc = Document.new <<-EOL
|
|
|
|
|
<?xml version='1.0' encoding='ISO-8859-1'?>
|
|
|
|
|
<a a="<EFBFBD>"><EFBFBD></a>
|
|
|
|
|
EOL
|
|
|
|
|
expect = "\303\277"
|
|
|
|
|
expect.force_encoding('UTF-8') if expect.respond_to? :force_encoding
|
|
|
|
|
assert_equal( expect, doc.elements['a'].attributes['a'] )
|
|
|
|
|
assert_equal( expect, doc.elements['a'].text )
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_ticket_89
|
|
|
|
|
doc = Document.new <<-EOL
|
|
|
|
|
<?xml version="1.0" encoding="CP-1252" ?>
|
|
|
|
|
<xml><foo></foo></xml>
|
|
|
|
|
EOL
|
|
|
|
|
|
|
|
|
|
REXML::Document.new doc
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_ticket_110
|
2010-09-17 09:31:16 -04:00
|
|
|
|
utf16 = REXML::Document.new(File.new(fixture_path("ticket_110_utf16.xml")))
|
2010-10-30 08:10:56 -04:00
|
|
|
|
assert_equal( ::Encoding::UTF_16BE, utf16.encoding )
|
2010-09-17 09:14:14 -04:00
|
|
|
|
assert( utf16[0].kind_of?(REXML::XMLDecl))
|
|
|
|
|
end
|
|
|
|
|
end
|