aboutsummaryrefslogtreecommitdiffstats
path: root/test/rexml/parser/test_stream.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/rexml/parser/test_stream.rb')
-rw-r--r--test/rexml/parser/test_stream.rb32
1 files changed, 32 insertions, 0 deletions
diff --git a/test/rexml/parser/test_stream.rb b/test/rexml/parser/test_stream.rb
new file mode 100644
index 0000000000..c315833e4b
--- /dev/null
+++ b/test/rexml/parser/test_stream.rb
@@ -0,0 +1,32 @@
+require "test/unit"
+require "rexml/document"
+require "rexml/streamlistener"
+
+module REXMLTests
+ class TestStreamParser < Test::Unit::TestCase
+ class NullListener
+ include REXML::StreamListener
+ end
+
+ class TestInvalid < self
+ def test_no_end_tag
+ xml = "<root><sub>"
+ exception = assert_raise(REXML::ParseException) do
+ parse(xml)
+ end
+ assert_equal(<<-MESSAGE, exception.to_s)
+Missing end tag for '/root/sub'
+Line: 1
+Position: #{xml.bytesize}
+Last 80 unconsumed characters:
+ MESSAGE
+ end
+
+ private
+ def parse(xml, listener=nil)
+ listener ||= NullListener.new
+ REXML::Document.parse_stream(xml, listener)
+ end
+ end
+ end
+end