summaryrefslogtreecommitdiff
path: root/test/rexml/parse/test_document_type_declaration.rb
blob: 7d527a5fe80ab227c42cbfe6d61891df78475c11 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
require "test/unit"
require "rexml/document"

class TestParseDocumentTypeDeclaration < Test::Unit::TestCase
  private
  def xml(internal_subset)
    <<-XML
<!DOCTYPE r SYSTEM "urn:x-rexml:test" [
#{internal_subset}
]>
<r/>
    XML
  end

  def parse(internal_subset)
    REXML::Document.new(xml(internal_subset)).doctype
  end

  class TestMixed < self
    def test_entity_element
      doctype = parse(<<-INTERNAL_SUBSET)
<!ENTITY entity-name "entity content">
<!ELEMENT element-name EMPTY>
      INTERNAL_SUBSET
      assert_equal([REXML::Entity, REXML::ElementDecl],
                   doctype.children.collect(&:class))
    end

    def test_attlist_entity
      doctype = parse(<<-INTERNAL_SUBSET)
<!ATTLIST attribute-list-name attribute-name CDATA #REQUIRED>
<!ENTITY entity-name "entity content">
      INTERNAL_SUBSET
      assert_equal([REXML::AttlistDecl, REXML::Entity],
                   doctype.children.collect(&:class))
    end

    def test_notation_attlist
      doctype = parse(<<-INTERNAL_SUBSET)
<!NOTATION notation-name SYSTEM "system-literal">
<!ATTLIST attribute-list-name attribute-name CDATA #REQUIRED>
      INTERNAL_SUBSET
      assert_equal([REXML::NotationDecl, REXML::AttlistDecl],
                   doctype.children.collect(&:class))
    end
  end
end