hc_elementgetelementsbytagnamespecialvalue.java revision adc854b798c1cfe3bfd4c27d68d5cee38ca617da
1
2/*
3This Java source file was generated by test-to-java.xsl
4and is a derived work from the source document.
5The source document contained the following notice:
6
7
8Copyright (c) 2001-2004 World Wide Web Consortium,
9(Massachusetts Institute of Technology, Institut National de
10Recherche en Informatique et en Automatique, Keio University). All
11Rights Reserved. This program is distributed under the W3C's Software
12Intellectual Property License. This program is distributed in the
13hope that it will be useful, but WITHOUT ANY WARRANTY; without even
14the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15PURPOSE.
16See W3C License http://www.w3.org/Consortium/Legal/ for more details.
17
18*/
19
20package org.w3c.domts.level1.core;
21
22import org.w3c.dom.*;
23
24
25import org.w3c.domts.DOMTestCase;
26import org.w3c.domts.DOMTestDocumentBuilderFactory;
27
28
29
30/**
31 * The "getElementsByTagName(name)" method may use the
32 * special value "*" to match all tags in the element
33 * tree.
34 * Create a NodeList of all the descendant elements
35 * of the last employee by using the special value "*".
36 * The method should return all the descendant children(6)
37 * in the order the children were encountered.
38* @author Curt Arnold
39* @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-1938918D">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-1938918D</a>
40*/
41public final class hc_elementgetelementsbytagnamespecialvalue extends DOMTestCase {
42
43   /**
44    * Constructor.
45    * @param factory document factory, may not be null
46    * @throws org.w3c.domts.DOMTestIncompatibleException Thrown if test is not compatible with parser configuration
47    */
48   public hc_elementgetelementsbytagnamespecialvalue(final DOMTestDocumentBuilderFactory factory)  throws org.w3c.domts.DOMTestIncompatibleException {
49      super(factory);
50
51    //
52    //   check if loaded documents are supported for content type
53    //
54    String contentType = getContentType();
55    preload(contentType, "hc_staff", false);
56    }
57
58   /**
59    * Runs the test case.
60    * @throws Throwable Any uncaught exception causes test to fail
61    */
62   public void runTest() throws Throwable {
63      Document doc;
64      NodeList elementList;
65      Element lastEmployee;
66      NodeList lastempList;
67      Node child;
68      String childName;
69      java.util.List result = new java.util.ArrayList();
70
71      java.util.List expectedResult = new java.util.ArrayList();
72      expectedResult.add("em");
73      expectedResult.add("strong");
74      expectedResult.add("code");
75      expectedResult.add("sup");
76      expectedResult.add("var");
77      expectedResult.add("acronym");
78
79      doc = (Document) load("hc_staff", false);
80      elementList = doc.getElementsByTagName("p");
81      lastEmployee = (Element) elementList.item(4);
82      lastempList = lastEmployee.getElementsByTagName("*");
83      for (int indexN10067 = 0; indexN10067 < lastempList.getLength(); indexN10067++) {
84          child = (Node) lastempList.item(indexN10067);
85    childName = child.getNodeName();
86      result.add(childName);
87        }
88      assertEqualsAutoCase("element", "tagNames", expectedResult, result);
89        }
90   /**
91    *  Gets URI that identifies the test.
92    *  @return uri identifier of test
93    */
94   public String getTargetURI() {
95      return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/hc_elementgetelementsbytagnamespecialvalue";
96   }
97   /**
98    * Runs this test from the command line.
99    * @param args command line arguments
100    */
101   public static void main(final String[] args) {
102        DOMTestCase.doMain(hc_elementgetelementsbytagnamespecialvalue.class, args);
103   }
104}
105
106