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 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 a DocumentFragment object then
32 *     all its content is added to the child list of this node.
33 *
34 *     Create and populate a new DocumentFragment object and
35 *     append it to the second employee.   After the
36 *     "appendChild(newChild)" method is invoked retrieve the
37 *     new nodes at the end of the list, they should be the
38 *     two Element nodes from the DocumentFragment.
39* @author Curt Arnold
40* @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-184E7107">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-184E7107</a>
41* @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>
42* @see <a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=247">http://www.w3.org/Bugs/Public/show_bug.cgi?id=247</a>
43*/
44public final class hc_nodeappendchilddocfragment 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_nodeappendchilddocfragment(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      DocumentFragment newdocFragment;
71      Node newChild1;
72      Node newChild2;
73      Node child;
74      String childName;
75      java.util.List result = new java.util.ArrayList();
76
77      Node appendedChild;
78      int nodeType;
79      java.util.List expected = new java.util.ArrayList();
80      expected.add("em");
81      expected.add("strong");
82      expected.add("code");
83      expected.add("sup");
84      expected.add("var");
85      expected.add("acronym");
86      expected.add("br");
87      expected.add("b");
88
89      doc = (Document) load("hc_staff", true);
90      elementList = doc.getElementsByTagName("p");
91      employeeNode = elementList.item(1);
92      childList = employeeNode.getChildNodes();
93      newdocFragment = doc.createDocumentFragment();
94      newChild1 = doc.createElement("br");
95      newChild2 = doc.createElement("b");
96      appendedChild = newdocFragment.appendChild(newChild1);
97      appendedChild = newdocFragment.appendChild(newChild2);
98      appendedChild = employeeNode.appendChild(newdocFragment);
99      for (int indexN100A2 = 0; indexN100A2 < childList.getLength(); indexN100A2++) {
100          child = (Node) childList.item(indexN100A2);
101    nodeType = (int) child.getNodeType();
102
103      if (equals(1, nodeType)) {
104          childName = child.getNodeName();
105      result.add(childName);
106      }
107      }
108      assertEqualsAutoCase("element", "nodeNames", expected, result);
109        }
110   /**
111    *  Gets URI that identifies the test.
112    *  @return uri identifier of test
113    */
114   public String getTargetURI() {
115      return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/hc_nodeappendchilddocfragment";
116   }
117   /**
118    * Runs this test from the command line.
119    * @param args command line arguments
120    */
121   public static void main(final String[] args) {
122        DOMTestCase.doMain(hc_nodeappendchilddocfragment.class, args);
123   }
124}
125
126