summaryrefslogtreecommitdiff
path: root/test/testcases/tests/level3/xpath/Attribute_Nodes.xml
blob: 0e45a0934e9638bf26df9fd88a8cbd35af9b656b (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet href="test-to-html.xsl" type="text/xml"?>
<!--
 Copyright (c) 2003 World Wide Web Consortium,

 (Massachusetts Institute of Technology, European Research Consortium for
 Informatics and Mathematics, Keio University). All Rights Reserved. This
 work is distributed under the W3C(r) Software License [1] in the hope that
 it will be useful, but WITHOUT ANY WARRANTY; without even the implied
 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

 [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
-->

<!DOCTYPE test SYSTEM "dom3.dtd" [
  <!ENTITY % entities SYSTEM "dom3xpathents.ent">
  %entities;
]>
<test xmlns="&level3;" name="Attribute_Nodes">
  <metadata>
    <title>Attribute_Nodes</title>
    <creator>Bob Clary</creator>
    <description>
      S1.2.2 Attribute Nodes - 
      Create ANY_TYPE XPathResult matching  //@*,
      check that each matching Node is an Attribute Node,
      that parentNodes of returned Attributes are null,
      and that ownerElements are in fact Elements.
    </description>
    <date qualifier="created">2003-12-02</date>
    <subject resource="&spec;#Mapping"/>
    <subject resource="&spec;#XPathEvaluator"/>
    <subject resource="&spec;#XPathEvaluator-createNSResolver"/>
    <subject resource="&spec;#XPathEvaluator-evaluate"/>
    <subject resource="&spec;#XPathNSResolver"/>
    <subject resource="&spec;#XPathResult"/>
    <subject resource="&spec;#XPathResult-iterateNext"/>
  </metadata>

  <!-- Standard Variables -->

  <var name="ANY_TYPE"                     type="short" value="0"/>
  <var name="NUMBER_TYPE"                  type="short" value="1"/>
  <var name="STRING_TYPE"                  type="short" value="2"/>
  <var name="BOOLEAN_TYPE"                 type="short" value="3"/>
  <var name="UNORDERED_NODE_ITERATOR_TYPE" type="short" value="4"/>
  <var name="ORDERED_NODE_ITERATOR_TYPE"   type="short" value="5"/>
  <var name="UNORDERED_NODE_SNAPSHOT_TYPE" type="short" value="6"/>
  <var name="ORDERED_NODE_SNAPSHOT_TYPE"   type="short" value="7"/>
  <var name="ANY_UNORDERED_NODE_TYPE"      type="short" value="8"/>
  <var name="FIRST_ORDERED_NODE_TYPE"      type="short" value="9"/>

  <var name="doc"                 type="Document" />
  <var name="resolver"            type="XPathNSResolver" />
  <var name="evaluator"           type="XPathEvaluator" />
  <var name="contextNode"         type="Node" />
  <var name="inresult"            type="XPathResult" isNull="true"/>
  <var name="outresult"           type="XPathResult" isNull="true"/>

  <!-- Inputs -->

  <var name="expression" type="DOMString" value="&quot;//@*&quot;" />
  <var name="xpathType"  type="short"     value="ANY_TYPE" />

  <!-- Test Variables -->

  <var name="outNode"       type="Node"/>
  <var name="nodeType"      type="int"/>
  <var name="parent"        type="Node"/>
  <var name="owner"         type="Node"/>
  <var name="ownerType"     type="int"/>

  <!-- Load Test Document -->

  <load var="doc" href="staff" willBeModified="false"/>

  <!-- Get XPathResult -->

  <createXPathEvaluator var="evaluator" document="doc"/>
  <createNSResolver obj="evaluator" var="resolver" nodeResolver="doc"/>

  <assign var="contextNode" value="doc"/>

  <evaluate obj="evaluator"
            var="outresult"
            expression="expression"
            contextNode="contextNode"
            resolver="resolver"
            type="xpathType"
            result="inresult"
            interface="XPathEvaluator" />

  <!-- Test Body -->

  <iterateNext var="outNode" obj="outresult"/> 
  <while>
    <notNull obj="outNode"/>

    <nodeType var="nodeType" obj="outNode" />
    <assertEquals id="S1.2.2-Attribute-Nodes-nodeType" 
                  actual="nodeType" 
                  expected="2" 
                  ignoreCase="false"/>

    <parentNode var="parent" obj="outNode" interface="Node"/>
    <assertNull id="S1.2.2-Attribute-Nodes-parentNode" actual="parent"/>

    <ownerElement var="owner" obj="outNode" interface="Attr"/>
    <nodeType var="ownerType" obj="owner"/>
    <assertEquals id="S1.2.2-Attribute-Nodes-owner-nodeType" 
                  actual="ownerType" 
                  expected="1" 
                  ignoreCase="false"/>

    <iterateNext var="outNode" obj="outresult"/> 
  </while>

</test>