summaryrefslogtreecommitdiff
path: root/test/testcases/tests/level3/xpath/XPathNSResolver_lookupNamespaceURI_nist_dmstc.xml
blob: 74673819c556dae32b89aa74a12074beeaac8e1d (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
<?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="XPathNSResolver_lookupNamespaceURI_nist_dmstc">
  <metadata>
    <title>XPathNSResolver_lookupNamespaceURI_nist_dmstc</title>
    <creator>Bob Clary</creator>
    <description>
      Interate over all employee elements with xmlns:dmstc attribute
      in the test document, creating nsresolvers checking that 
      for all children the prefix 'nist' resolves to 
      http://www.nist.gov and that prefix 'dmstc' resolves to the same 
      value as employee.getAttribute('xmlns:dmstc').
    </description>
    <date qualifier="created">2003-12-09</date>
    <subject resource="&spec;#XPathEvaluator"/>
    <subject resource="&spec;#XPathEvaluator-createNSResolver"/>
    <subject resource="&spec;#XPathNSResolver"/>
    <subject resource="&spec;#XPathNSResolver-lookupNamespaceURI"/>
  </metadata>

  <!-- Standard Variables -->

  <var name="doc"                 type="Document" />
  <var name="resolver"            type="XPathNSResolver" />
  <var name="evaluator"           type="XPathEvaluator" />

  <!-- Test Variables -->

  <var name="lookupNamespaceURI" type="DOMString"/>
  <var name="namespaceURI" type="DOMString"/>
  <var name="child"        type="Element"/>
  <var name="children"     type="NodeList"/>
  <var name="employee"      type="Element"/>
  <var name="employees"     type="NodeList"/>

  <!-- Load Test Document -->

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

  <getElementsByTagNameNS obj="doc"
                          interface="Document"
                          var="employees"
                          namespaceURI="&quot;*&quot;"
                          localName="&quot;employee&quot;"
                          />

  <createXPathEvaluator var='evaluator' 
                        document='doc'/>


  <for-each member="employee" 
            collection="employees">


    <getAttribute obj="employee"
                  interface="Element"
                  name="&quot;xmlns:dmstc&quot;"
                  var="namespaceURI"
                  />

    <getElementsByTagNameNS obj="employee"
                            interface="Element"
                            var="children"
                            namespaceURI="&quot;*&quot;"
                            localName="&quot;*&quot;"
                            />

    <for-each member="child"
              collection="children">

      <createNSResolver obj="evaluator" 
                        var="resolver" 
                        nodeResolver="child"
                        />

      <lookupNamespaceURI obj="resolver"
                          interface="XPathNSResolver"
                          var="lookupNamespaceURI"
                          prefix="&quot;dmstc&quot;"
                          />

      <assertEquals id="dmstcequal" 
                    actual="lookupNamespaceURI"
                    expected="namespaceURI"
                    ignoreCase="false"
                    />

      <lookupNamespaceURI obj="resolver"
                          interface="XPathNSResolver"
                          var="lookupNamespaceURI"
                          prefix="&quot;nist&quot;"
                          />

      <assertEquals id="nistequal" 
                    actual="lookupNamespaceURI"
                    expected="&quot;http://www.nist.gov&quot;"
                    ignoreCase="false"
                    />
    </for-each>

  </for-each>

</test>