Home | History | Annotate | Download | only in core
      1 
      2 /*
      3 This Java source file was generated by test-to-java.xsl
      4 and is a derived work from the source document.
      5 The source document contained the following notice:
      6 
      7 
      8 Copyright (c) 2001-2004 World Wide Web Consortium,
      9 (Massachusetts Institute of Technology, Institut National de
     10 Recherche en Informatique et en Automatique, Keio University). All
     11 Rights Reserved. This program is distributed under the W3C's Software
     12 Intellectual Property License. This program is distributed in the
     13 hope that it will be useful, but WITHOUT ANY WARRANTY; without even
     14 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
     15 PURPOSE.
     16 See W3C License http://www.w3.org/Consortium/Legal/ for more details.
     17 
     18 */
     19 
     20 package org.w3c.domts.level1.core;
     21 
     22 import org.w3c.dom.*;
     23 
     24 
     25 import org.w3c.domts.DOMTestCase;
     26 import 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 ("employeeId") 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 NIST
     41 * @author Mary Brady
     42 * @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>
     43 */
     44 public final class 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 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, "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       int length;
     74       String childName;
     75       Node insertedNode;
     76       java.util.List expectedWhitespace = new java.util.ArrayList();
     77       expectedWhitespace.add("#text");
     78       expectedWhitespace.add("#text");
     79       expectedWhitespace.add("name");
     80       expectedWhitespace.add("#text");
     81       expectedWhitespace.add("position");
     82       expectedWhitespace.add("#text");
     83       expectedWhitespace.add("salary");
     84       expectedWhitespace.add("#text");
     85       expectedWhitespace.add("gender");
     86       expectedWhitespace.add("#text");
     87       expectedWhitespace.add("employeeId");
     88       expectedWhitespace.add("address");
     89       expectedWhitespace.add("#text");
     90 
     91       java.util.List expectedNoWhitespace = new java.util.ArrayList();
     92       expectedNoWhitespace.add("name");
     93       expectedNoWhitespace.add("position");
     94       expectedNoWhitespace.add("salary");
     95       expectedNoWhitespace.add("gender");
     96       expectedNoWhitespace.add("employeeId");
     97       expectedNoWhitespace.add("address");
     98 
     99       java.util.List expected = new java.util.ArrayList();
    100 
    101       java.util.List result = new java.util.ArrayList();
    102 
    103       doc = (Document) load("staff", true);
    104       elementList = doc.getElementsByTagName("employee");
    105       employeeNode = elementList.item(1);
    106       childList = employeeNode.getChildNodes();
    107       length = (int) childList.getLength();
    108 
    109       if (equals(6, length)) {
    110           expected =  expectedNoWhitespace;
    111       refChild = childList.item(5);
    112       newChild = childList.item(0);
    113       } else {
    114           expected =  expectedWhitespace;
    115       refChild = childList.item(11);
    116       newChild = childList.item(1);
    117       }
    118 
    119     insertedNode = employeeNode.insertBefore(newChild, refChild);
    120       for (int indexN100DD = 0; indexN100DD < childList.getLength(); indexN100DD++) {
    121           child = (Node) childList.item(indexN100DD);
    122     childName = child.getNodeName();
    123       result.add(childName);
    124         }
    125       assertEquals("childNames", expected, result);
    126       }
    127    /**
    128     *  Gets URI that identifies the test.
    129     *  @return uri identifier of test
    130     */
    131    public String getTargetURI() {
    132       return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/nodeinsertbeforenewchildexists";
    133    }
    134    /**
    135     * Runs this test from the command line.
    136     * @param args command line arguments
    137     */
    138    public static void main(final String[] args) {
    139         DOMTestCase.doMain(nodeinsertbeforenewchildexists.class, args);
    140    }
    141 }
    142 
    143