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-2003 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 *     If the "newChild" is already in the tree, the
32 *     "insertBefore(newChild,refChild)" method must first
33 *     remove it before the insertion takes place.
34 *
35 *     Insert a node Element ("em") that is already
36 *     present in the tree.   The existing node should be
37 *     removed first and the new one inserted.   The node is
38 *     inserted at a different position in the tree to assure
39 *     that it was indeed inserted.
40* @author Curt Arnold
41* @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-952280727">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-952280727</a>
42* @see <a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=246">http://www.w3.org/Bugs/Public/show_bug.cgi?id=246</a>
43*/
44public final class hc_nodeinsertbeforenewchildexists extends DOMTestCase {
45
46   /**
47    * Constructor.
48    * @param factory document factory, may not be null
49    * @throws org.w3c.domts.DOMTestIncompatibleException Thrown if test is not compatible with parser configuration
50    */
51   public hc_nodeinsertbeforenewchildexists(final DOMTestDocumentBuilderFactory factory)  throws org.w3c.domts.DOMTestIncompatibleException {
52      super(factory);
53
54    //
55    //   check if loaded documents are supported for content type
56    //
57    String contentType = getContentType();
58    preload(contentType, "hc_staff", true);
59    }
60
61   /**
62    * Runs the test case.
63    * @throws Throwable Any uncaught exception causes test to fail
64    */
65   public void runTest() throws Throwable {
66      Document doc;
67      NodeList elementList;
68      Node employeeNode;
69      NodeList childList;
70      Node refChild;
71      Node newChild;
72      Node child;
73      String childName;
74      Node insertedNode;
75      java.util.List expected = new java.util.ArrayList();
76      expected.add("strong");
77      expected.add("code");
78      expected.add("sup");
79      expected.add("var");
80      expected.add("em");
81      expected.add("acronym");
82
83      java.util.List result = new java.util.ArrayList();
84
85      int nodeType;
86      doc = (Document) load("hc_staff", true);
87      elementList = doc.getElementsByTagName("p");
88      employeeNode = elementList.item(1);
89      childList = ((Element) /*Node */employeeNode).getElementsByTagName("*");
90      refChild = childList.item(5);
91      newChild = childList.item(0);
92      insertedNode = employeeNode.insertBefore(newChild, refChild);
93      for (int indexN1008C = 0; indexN1008C < childList.getLength(); indexN1008C++) {
94          child = (Node) childList.item(indexN1008C);
95    nodeType = (int) child.getNodeType();
96
97      if (equals(1, nodeType)) {
98          childName = child.getNodeName();
99      result.add(childName);
100      }
101      }
102      assertEqualsAutoCase("element", "childNames", expected, result);
103        }
104   /**
105    *  Gets URI that identifies the test.
106    *  @return uri identifier of test
107    */
108   public String getTargetURI() {
109      return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/hc_nodeinsertbeforenewchildexists";
110   }
111   /**
112    * Runs this test from the command line.
113    * @param args command line arguments
114    */
115   public static void main(final String[] args) {
116        DOMTestCase.doMain(hc_nodeinsertbeforenewchildexists.class, args);
117   }
118}
119
120