* test/rexml/test_document.rb
(REXMLTests::TestDocument::EntityExpansionLimitTest): Indent. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48440 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f2588e1c8e
commit
9fb2d21d7d
@ -33,7 +33,7 @@ EOF
|
|||||||
end
|
end
|
||||||
|
|
||||||
class EntityExpansionLimitTest < Test::Unit::TestCase
|
class EntityExpansionLimitTest < Test::Unit::TestCase
|
||||||
XML_WITH_NESTED_ENTITY = <<EOF
|
XML_WITH_NESTED_ENTITY = <<EOF
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!DOCTYPE member [
|
<!DOCTYPE member [
|
||||||
<!ENTITY a "&b;&b;&b;&b;&b;&b;&b;&b;&b;&b;">
|
<!ENTITY a "&b;&b;&b;&b;&b;&b;&b;&b;&b;&b;">
|
||||||
@ -49,7 +49,7 @@ EOF
|
|||||||
</member>
|
</member>
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
XML_WITH_NESTED_EMPTY_ENTITY = <<EOF
|
XML_WITH_NESTED_EMPTY_ENTITY = <<EOF
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!DOCTYPE member [
|
<!DOCTYPE member [
|
||||||
<!ENTITY a "&b;&b;&b;&b;&b;&b;&b;&b;&b;&b;">
|
<!ENTITY a "&b;&b;&b;&b;&b;&b;&b;&b;&b;&b;">
|
||||||
@ -65,7 +65,7 @@ EOF
|
|||||||
</member>
|
</member>
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
XML_WITH_NESTED_PARAMETER_ENTITY = <<EOF
|
XML_WITH_NESTED_PARAMETER_ENTITY = <<EOF
|
||||||
<!DOCTYPE root [
|
<!DOCTYPE root [
|
||||||
<!ENTITY % a "BOOM.BOOM.BOOM.BOOM.BOOM.BOOM.BOOM.BOOM.BOOM.">
|
<!ENTITY % a "BOOM.BOOM.BOOM.BOOM.BOOM.BOOM.BOOM.BOOM.BOOM.">
|
||||||
<!ENTITY % b "%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;">
|
<!ENTITY % b "%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;">
|
||||||
@ -79,7 +79,7 @@ EOF
|
|||||||
<cd></cd>
|
<cd></cd>
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
XML_WITH_NESTED_EMPTY_PARAMETER_ENTITY = <<EOF
|
XML_WITH_NESTED_EMPTY_PARAMETER_ENTITY = <<EOF
|
||||||
<!DOCTYPE root [
|
<!DOCTYPE root [
|
||||||
<!ENTITY % a "">
|
<!ENTITY % a "">
|
||||||
<!ENTITY % b "%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;">
|
<!ENTITY % b "%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;%a;">
|
||||||
@ -93,7 +93,7 @@ EOF
|
|||||||
<cd></cd>
|
<cd></cd>
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
XML_WITH_4_ENTITY_EXPANSION = <<EOF
|
XML_WITH_4_ENTITY_EXPANSION = <<EOF
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!DOCTYPE member [
|
<!DOCTYPE member [
|
||||||
<!ENTITY a "a">
|
<!ENTITY a "a">
|
||||||
@ -106,64 +106,64 @@ EOF
|
|||||||
</member>
|
</member>
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
def test_entity_expansion_limit
|
def test_entity_expansion_limit
|
||||||
doc = REXML::Document.new(XML_WITH_NESTED_ENTITY)
|
doc = REXML::Document.new(XML_WITH_NESTED_ENTITY)
|
||||||
assert_raise(RuntimeError) do
|
assert_raise(RuntimeError) do
|
||||||
doc.root.children.first.value
|
doc.root.children.first.value
|
||||||
end
|
end
|
||||||
REXML::Security.entity_expansion_limit = 100
|
REXML::Security.entity_expansion_limit = 100
|
||||||
assert_equal(100, REXML::Security.entity_expansion_limit)
|
assert_equal(100, REXML::Security.entity_expansion_limit)
|
||||||
doc = REXML::Document.new(XML_WITH_NESTED_ENTITY)
|
doc = REXML::Document.new(XML_WITH_NESTED_ENTITY)
|
||||||
assert_raise(RuntimeError) do
|
assert_raise(RuntimeError) do
|
||||||
doc.root.children.first.value
|
doc.root.children.first.value
|
||||||
end
|
end
|
||||||
assert_equal(101, doc.entity_expansion_count)
|
assert_equal(101, doc.entity_expansion_count)
|
||||||
|
|
||||||
doc = REXML::Document.new(XML_WITH_NESTED_EMPTY_ENTITY)
|
doc = REXML::Document.new(XML_WITH_NESTED_EMPTY_ENTITY)
|
||||||
assert_raise(RuntimeError) do
|
assert_raise(RuntimeError) do
|
||||||
doc.root.children.first.value
|
doc.root.children.first.value
|
||||||
end
|
end
|
||||||
REXML::Security.entity_expansion_limit = 100
|
REXML::Security.entity_expansion_limit = 100
|
||||||
assert_equal(100, REXML::Security.entity_expansion_limit)
|
assert_equal(100, REXML::Security.entity_expansion_limit)
|
||||||
doc = REXML::Document.new(XML_WITH_NESTED_EMPTY_ENTITY)
|
doc = REXML::Document.new(XML_WITH_NESTED_EMPTY_ENTITY)
|
||||||
assert_raise(RuntimeError) do
|
assert_raise(RuntimeError) do
|
||||||
doc.root.children.first.value
|
doc.root.children.first.value
|
||||||
end
|
end
|
||||||
assert_equal(101, doc.entity_expansion_count)
|
assert_equal(101, doc.entity_expansion_count)
|
||||||
|
|
||||||
REXML::Security.entity_expansion_limit = 4
|
REXML::Security.entity_expansion_limit = 4
|
||||||
doc = REXML::Document.new(XML_WITH_4_ENTITY_EXPANSION)
|
doc = REXML::Document.new(XML_WITH_4_ENTITY_EXPANSION)
|
||||||
assert_equal("\na\na a\n<\n", doc.root.children.first.value)
|
assert_equal("\na\na a\n<\n", doc.root.children.first.value)
|
||||||
REXML::Security.entity_expansion_limit = 3
|
REXML::Security.entity_expansion_limit = 3
|
||||||
doc = REXML::Document.new(XML_WITH_4_ENTITY_EXPANSION)
|
doc = REXML::Document.new(XML_WITH_4_ENTITY_EXPANSION)
|
||||||
assert_raise(RuntimeError) do
|
assert_raise(RuntimeError) do
|
||||||
doc.root.children.first.value
|
doc.root.children.first.value
|
||||||
end
|
end
|
||||||
ensure
|
ensure
|
||||||
REXML::Security.entity_expansion_limit = 10000
|
REXML::Security.entity_expansion_limit = 10000
|
||||||
end
|
|
||||||
|
|
||||||
def test_entity_expansion_limit_for_parameter_entity
|
|
||||||
assert_raise(REXML::ParseException) do
|
|
||||||
REXML::Document.new(XML_WITH_NESTED_PARAMETER_ENTITY)
|
|
||||||
end
|
|
||||||
REXML::Security.entity_expansion_limit = 100
|
|
||||||
assert_equal(100, REXML::Security.entity_expansion_limit)
|
|
||||||
assert_raise(REXML::ParseException) do
|
|
||||||
REXML::Document.new(XML_WITH_NESTED_PARAMETER_ENTITY)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
assert_raise(REXML::ParseException) do
|
def test_entity_expansion_limit_for_parameter_entity
|
||||||
REXML::Document.new(XML_WITH_NESTED_EMPTY_PARAMETER_ENTITY)
|
assert_raise(REXML::ParseException) do
|
||||||
|
REXML::Document.new(XML_WITH_NESTED_PARAMETER_ENTITY)
|
||||||
|
end
|
||||||
|
REXML::Security.entity_expansion_limit = 100
|
||||||
|
assert_equal(100, REXML::Security.entity_expansion_limit)
|
||||||
|
assert_raise(REXML::ParseException) do
|
||||||
|
REXML::Document.new(XML_WITH_NESTED_PARAMETER_ENTITY)
|
||||||
|
end
|
||||||
|
|
||||||
|
assert_raise(REXML::ParseException) do
|
||||||
|
REXML::Document.new(XML_WITH_NESTED_EMPTY_PARAMETER_ENTITY)
|
||||||
|
end
|
||||||
|
REXML::Security.entity_expansion_limit = 100
|
||||||
|
assert_equal(100, REXML::Security.entity_expansion_limit)
|
||||||
|
assert_raise(REXML::ParseException) do
|
||||||
|
REXML::Document.new(XML_WITH_NESTED_EMPTY_PARAMETER_ENTITY)
|
||||||
|
end
|
||||||
|
ensure
|
||||||
|
REXML::Security.entity_expansion_limit = 10000
|
||||||
end
|
end
|
||||||
REXML::Security.entity_expansion_limit = 100
|
|
||||||
assert_equal(100, REXML::Security.entity_expansion_limit)
|
|
||||||
assert_raise(REXML::ParseException) do
|
|
||||||
REXML::Document.new(XML_WITH_NESTED_EMPTY_PARAMETER_ENTITY)
|
|
||||||
end
|
|
||||||
ensure
|
|
||||||
REXML::Security.entity_expansion_limit = 10000
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_tag_in_cdata_with_not_ascii_only_but_ascii8bit_encoding_source
|
def test_tag_in_cdata_with_not_ascii_only_but_ascii8bit_encoding_source
|
||||||
|
Loading…
x
Reference in New Issue
Block a user