summaryrefslogtreecommitdiff
path: root/test/rexml/parser/test_tree.rb
blob: 62b161d180cea1a81acf1c236b9e2c16d30a54f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
require "test/unit"
require "rexml/document"
require "rexml/parsers/treeparser"

class TestTreeParser < Test::Unit::TestCase
  class TestInvalid < self
    def test_parse_exception
      xml = "<root></not-root>"
      exception = assert_raise(REXML::ParseException) do
        parse(xml)
      end
      assert_equal(<<-MESSAGE, exception.to_s)
Missing end tag for 'root' (got "not-root")
Line: 1
Position: 17
Last 80 unconsumed characters:
      MESSAGE
    end

    private
    def parse(xml)
      document = REXML::Document.new
      parser = REXML::Parsers::TreeParser.new(xml, document)
      parser.parse
    end
  end
end