From 1ad9075734a7fd9d58920c714953ec851efcae6b Mon Sep 17 00:00:00 2001 From: usa Date: Fri, 22 Feb 2013 09:35:46 +0000 Subject: * lib/rexml/document.rb (REXML::Document.entity_expansion_text_limit): new attribute to read/write entity expansion text limit. the default limit is 10Kb. * lib/rexml/text.rb (REXML::Text.unnormalize): check above attribute. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39384 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/rexml/test_entity.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'test/rexml') diff --git a/test/rexml/test_entity.rb b/test/rexml/test_entity.rb index e6d6f29007..5900fac7a8 100644 --- a/test/rexml/test_entity.rb +++ b/test/rexml/test_entity.rb @@ -104,6 +104,24 @@ class EntityTester < Test::Unit::TestCase assert_equal source, out end + def test_entity_string_limit + template = ' ]> $' + len = 5120 # 5k per entity + template.sub!(/\^/, "B" * len) + + # 10k is OK + entities = '&a;' * 2 # 5k entity * 2 = 10k + xmldoc = REXML::Document.new(template.sub(/\$/, entities)) + assert_equal(len * 2, xmldoc.root.text.bytesize) + + # above 10k explodes + entities = '&a;' * 3 # 5k entity * 2 = 15k + xmldoc = REXML::Document.new(template.sub(/\$/, entities)) + assert_raises(RuntimeError) do + xmldoc.root.text + end + end + def test_raw source = ' -- cgit v1.2.3