blob: 859d8e6582d161a211bb007ccfb618d376ef458b [file] [log] [blame]
The Android Open Source Project0eec4642012-04-01 00:00:00 -07001
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 * Collect the element names from Node.childNodes and check against expectations.
32* @author NIST
33* @author Mary Brady
34* @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-1451460987">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-1451460987</a>
35*/
36public final class nodechildnodes extends DOMTestCase {
37
38 /**
39 * Constructor.
40 * @param factory document factory, may not be null
41 * @throws org.w3c.domts.DOMTestIncompatibleException Thrown if test is not compatible with parser configuration
42 */
43 public nodechildnodes(final DOMTestDocumentBuilderFactory factory) throws org.w3c.domts.DOMTestIncompatibleException {
44 super(factory);
45
46 //
47 // check if loaded documents are supported for content type
48 //
49 String contentType = getContentType();
50 preload(contentType, "staff", false);
51 }
52
53 /**
54 * Runs the test case.
55 * @throws Throwable Any uncaught exception causes test to fail
56 */
57 public void runTest() throws Throwable {
58 Document doc;
59 NodeList elementList;
60 Node employeeNode;
61 NodeList childNodes;
62 Node childNode;
63 int childType;
64 String childName;
65 java.util.List elementNames = new java.util.ArrayList();
66
67 java.util.List expectedElementNames = new java.util.ArrayList();
68 expectedElementNames.add("employeeId");
69 expectedElementNames.add("name");
70 expectedElementNames.add("position");
71 expectedElementNames.add("salary");
72 expectedElementNames.add("gender");
73 expectedElementNames.add("address");
74
75 doc = (Document) load("staff", false);
76 elementList = doc.getElementsByTagName("employee");
77 employeeNode = elementList.item(1);
78 childNodes = employeeNode.getChildNodes();
79 for (int indexN1006C = 0; indexN1006C < childNodes.getLength(); indexN1006C++) {
80 childNode = (Node) childNodes.item(indexN1006C);
81 childType = (int) childNode.getNodeType();
82
83 if (equals(1, childType)) {
84 childName = childNode.getNodeName();
85 elementNames.add(childName);
86 }
87 }
88 assertEquals("elementNames", expectedElementNames, elementNames);
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/nodechildnodes";
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(nodechildnodes.class, args);
103 }
104}
105