summaryrefslogtreecommitdiff
path: root/test/testcases/tests/level3/xpath/XPathResult_snapshotItem_ORDERED_NODE_SNAPSHOT_TYPE_order.xml
blob: 63bdb6946fe050914163a2c522361e60fe4926a3 (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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<?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="XPathResult_snapshotItem_ORDERED_NODE_SNAPSHOT_TYPE_order">
  <metadata>
    <title>XPathResult_snapshotItem_ORDERED_NODE_SNAPSHOT_TYPE_order</title>
    <creator>Bob Clary</creator>
    <description>
    Create an XPathResult ORDERED_NODE_SNAPSHOT_TYPE XPathResultType for 
    expression /staff/employee/employeeId/text() checking that:
    XPathResult.snapshotItem(0..3) are in document order.
    </description>
    <date qualifier="created">2003-12-02</date>
    <subject resource="&spec;#XPathResult-snapshot-length"/>
    <subject resource="&spec;#XPathResult-snapshotItem"/>
    <subject resource="&spec;#XPathResult"/>
    <subject resource="&spec;#XPathResultType"/>
    <subject resource="&spec;#XPathEvaluator-createNSResolver"/>
  </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;/staff/employee/employeeId/text()&quot;"/>
  <var name="xpathType"  type="short"     value="ORDERED_NODE_SNAPSHOT_TYPE" />

  <!-- Test Variables -->

  <var name="snapshotItem" type="Node"/>
  <var name="snapshotLength" type="int"/>
  <var name="index"       type="int"/>
  <var name="text"        type="DOMString" />
  
  <!-- 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"
            />

  <assign var="index"
          value="0"
          />

  <while>
    <less actual="index" 
          expected="4"
	        />

    <snapshotItem obj="outresult"
                  var="snapshotItem"
                  index="index"
                  />

    <data         obj="snapshotItem"
                  interface="CharacterData"
                  var="text"
                  />

    <if><equals actual="index" expected="0" />

      <assertEquals id="first"
                    actual="text"
                    expected="&quot;EMP0001&quot;"
                    ignoreCase="false"
                    />
     </if>
                
    <if><equals actual="index" expected="1" />

      <assertEquals id="second"
                    actual="text"
                    expected="&quot;EMP0002&quot;"
                    ignoreCase="false"
                    />
     </if>
                
    <if><equals actual="index" expected="2" />

      <assertEquals id="third"
                    actual="text"
                    expected="&quot;EMP0003&quot;"
                    ignoreCase="false"
                    />
     </if>
                
    <if><equals actual="index" expected="3" />

      <assertEquals id="fourth"
                    actual="text"
                    expected="&quot;EMP0004&quot;"
                    ignoreCase="false"
                    />
     </if>
                
    <increment var="index"
               value="1"
               />

  </while>

</test>