2010-04-14 09:11:11 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2008-09-01 09:41:38 -04:00
|
|
|
require "rexml/document"
|
|
|
|
require "test/unit"
|
|
|
|
|
|
|
|
class REXML::TestDocument < Test::Unit::TestCase
|
2009-11-28 16:40:59 -05:00
|
|
|
def test_version_attributes_to_s
|
|
|
|
doc = REXML::Document.new(<<-eoxml)
|
|
|
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
|
|
<svg id="svg2"
|
|
|
|
xmlns:sodipodi="foo"
|
|
|
|
xmlns:inkscape="bar"
|
|
|
|
sodipodi:version="0.32"
|
|
|
|
inkscape:version="0.44.1"
|
|
|
|
>
|
|
|
|
</svg>
|
|
|
|
eoxml
|
|
|
|
|
|
|
|
string = doc.to_s
|
|
|
|
assert_match('xmlns:sodipodi', string)
|
|
|
|
assert_match('xmlns:inkscape', string)
|
|
|
|
assert_match('sodipodi:version', string)
|
|
|
|
assert_match('inkscape:version', string)
|
|
|
|
end
|
|
|
|
|
2008-09-01 09:41:38 -04:00
|
|
|
def test_new
|
|
|
|
doc = REXML::Document.new(<<EOF)
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<message>Hello world!</message>
|
|
|
|
EOF
|
|
|
|
assert_equal("Hello world!", doc.root.children.first.value)
|
|
|
|
end
|
|
|
|
|
|
|
|
XML_WITH_NESTED_ENTITY = <<EOF
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE member [
|
|
|
|
<!ENTITY a "&b;&b;&b;&b;&b;&b;&b;&b;&b;&b;">
|
|
|
|
<!ENTITY b "&c;&c;&c;&c;&c;&c;&c;&c;&c;&c;">
|
|
|
|
<!ENTITY c "&d;&d;&d;&d;&d;&d;&d;&d;&d;&d;">
|
|
|
|
<!ENTITY d "&e;&e;&e;&e;&e;&e;&e;&e;&e;&e;">
|
|
|
|
<!ENTITY e "&f;&f;&f;&f;&f;&f;&f;&f;&f;&f;">
|
|
|
|
<!ENTITY f "&g;&g;&g;&g;&g;&g;&g;&g;&g;&g;">
|
|
|
|
<!ENTITY g "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx">
|
|
|
|
]>
|
|
|
|
<member>
|
|
|
|
&a;
|
|
|
|
</member>
|
2008-09-12 21:40:36 -04:00
|
|
|
EOF
|
|
|
|
|
|
|
|
XML_WITH_4_ENTITY_EXPANSION = <<EOF
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE member [
|
|
|
|
<!ENTITY a "a">
|
|
|
|
<!ENTITY a2 "&a; &a;">
|
|
|
|
]>
|
|
|
|
<member>
|
|
|
|
&a;
|
|
|
|
&a2;
|
2008-11-06 12:03:40 -05:00
|
|
|
<
|
2008-09-12 21:40:36 -04:00
|
|
|
</member>
|
2008-09-01 09:41:38 -04:00
|
|
|
EOF
|
|
|
|
|
|
|
|
def test_entity_expansion_limit
|
|
|
|
doc = REXML::Document.new(XML_WITH_NESTED_ENTITY)
|
|
|
|
assert_raise(RuntimeError) do
|
|
|
|
doc.root.children.first.value
|
|
|
|
end
|
|
|
|
REXML::Document.entity_expansion_limit = 100
|
|
|
|
assert_equal(100, REXML::Document.entity_expansion_limit)
|
|
|
|
doc = REXML::Document.new(XML_WITH_NESTED_ENTITY)
|
|
|
|
assert_raise(RuntimeError) do
|
|
|
|
doc.root.children.first.value
|
|
|
|
end
|
|
|
|
assert_equal(101, doc.entity_expansion_count)
|
2008-09-12 21:40:36 -04:00
|
|
|
|
|
|
|
REXML::Document.entity_expansion_limit = 4
|
|
|
|
doc = REXML::Document.new(XML_WITH_4_ENTITY_EXPANSION)
|
2008-11-06 12:03:40 -05:00
|
|
|
assert_equal("\na\na a\n<\n", doc.root.children.first.value)
|
2008-09-12 21:40:36 -04:00
|
|
|
REXML::Document.entity_expansion_limit = 3
|
|
|
|
doc = REXML::Document.new(XML_WITH_4_ENTITY_EXPANSION)
|
|
|
|
assert_raise(RuntimeError) do
|
|
|
|
doc.root.children.first.value
|
|
|
|
end
|
|
|
|
ensure
|
|
|
|
REXML::Document.entity_expansion_limit = 10000
|
2008-09-01 09:41:38 -04:00
|
|
|
end
|
2009-12-28 20:36:26 -05:00
|
|
|
|
2010-04-14 09:11:11 -04:00
|
|
|
def test_tag_in_cdata_with_not_ascii_only_but_ascii8bit_encoding_source
|
|
|
|
tag = "<b>...</b>"
|
|
|
|
message = "こんにちは、世界!" # Hello world! in Japanese
|
|
|
|
xml = <<EOX
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<message><![CDATA[#{tag}#{message}]]></message>
|
|
|
|
EOX
|
|
|
|
xml.force_encoding(Encoding::ASCII_8BIT)
|
|
|
|
doc = REXML::Document.new(xml)
|
|
|
|
assert_equal("#{tag}#{message}", doc.root.children.first.value)
|
|
|
|
end
|
|
|
|
|
2009-12-28 20:36:26 -05:00
|
|
|
def test_xml_declaration_standalone
|
|
|
|
bug2539 = '[ruby-core:27345]'
|
|
|
|
doc = REXML::Document.new('<?xml version="1.0" standalone="no" ?>')
|
|
|
|
assert_equal('no', doc.stand_alone?, bug2539)
|
|
|
|
doc = REXML::Document.new('<?xml version="1.0" standalone= "no" ?>')
|
|
|
|
assert_equal('no', doc.stand_alone?, bug2539)
|
|
|
|
doc = REXML::Document.new('<?xml version="1.0" standalone= "no" ?>')
|
|
|
|
assert_equal('no', doc.stand_alone?, bug2539)
|
|
|
|
end
|
2012-10-28 01:59:59 -04:00
|
|
|
|
|
|
|
class WriteTest < Test::Unit::TestCase
|
|
|
|
def setup
|
|
|
|
@document = REXML::Document.new(<<-EOX)
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<message>Hello world!</message>
|
|
|
|
EOX
|
|
|
|
end
|
|
|
|
|
|
|
|
class ArgumentsTest < self
|
|
|
|
def test_output
|
|
|
|
output = ""
|
|
|
|
@document.write(output)
|
|
|
|
assert_equal(<<-EOX, output)
|
|
|
|
<?xml version='1.0' encoding='UTF-8'?>
|
|
|
|
<message>Hello world!</message>
|
|
|
|
EOX
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_indent
|
|
|
|
output = ""
|
|
|
|
indent = 2
|
|
|
|
@document.write(output, indent)
|
|
|
|
assert_equal(<<-EOX.chomp, output)
|
|
|
|
<?xml version='1.0' encoding='UTF-8'?>
|
|
|
|
<message>
|
|
|
|
Hello world!
|
|
|
|
</message>
|
|
|
|
EOX
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_transitive
|
|
|
|
output = ""
|
|
|
|
indent = 2
|
|
|
|
transitive = true
|
|
|
|
@document.write(output, indent, transitive)
|
|
|
|
assert_equal(<<-EOX, output)
|
|
|
|
<?xml version='1.0' encoding='UTF-8'?>
|
|
|
|
<message
|
|
|
|
>Hello world!</message
|
|
|
|
>
|
|
|
|
EOX
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_ie_hack
|
|
|
|
output = ""
|
|
|
|
indent = -1
|
|
|
|
transitive = false
|
|
|
|
ie_hack = true
|
|
|
|
document = REXML::Document.new("<empty/>")
|
|
|
|
document.write(output, indent, transitive, ie_hack)
|
|
|
|
assert_equal("<empty />", output)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class OptionsTest < self
|
|
|
|
def test_output
|
|
|
|
output = ""
|
|
|
|
@document.write(:output => output)
|
|
|
|
assert_equal(<<-EOX, output)
|
|
|
|
<?xml version='1.0' encoding='UTF-8'?>
|
|
|
|
<message>Hello world!</message>
|
|
|
|
EOX
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_indent
|
|
|
|
output = ""
|
|
|
|
@document.write(:output => output, :indent => 2)
|
|
|
|
assert_equal(<<-EOX.chomp, output)
|
|
|
|
<?xml version='1.0' encoding='UTF-8'?>
|
|
|
|
<message>
|
|
|
|
Hello world!
|
|
|
|
</message>
|
|
|
|
EOX
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_transitive
|
|
|
|
output = ""
|
|
|
|
@document.write(:output => output, :indent => 2, :transitive => true)
|
|
|
|
assert_equal(<<-EOX, output)
|
|
|
|
<?xml version='1.0' encoding='UTF-8'?>
|
|
|
|
<message
|
|
|
|
>Hello world!</message
|
|
|
|
>
|
|
|
|
EOX
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_ie_hack
|
|
|
|
output = ""
|
|
|
|
document = REXML::Document.new("<empty/>")
|
|
|
|
document.write(:output => output, :ie_hack => true)
|
|
|
|
assert_equal("<empty />", output)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2008-09-01 09:41:38 -04:00
|
|
|
end
|