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
8
9Copyright (c) 2001-2004 World Wide Web Consortium,
10(Massachusetts Institute of Technology, Institut National de
11Recherche en Informatique et en Automatique, Keio University).  All
12Rights Reserved.  This program is distributed under the W3C's Software
13Intellectual Property License.  This program is distributed in the
14hope that it will be useful, but WITHOUT ANY WARRANTY; without even
15the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16PURPOSE.
17
18See W3C License http://www.w3.org/Consortium/Legal/ for more details.
19
20
21*/
22
23package org.w3c.domts.level2.core;
24
25import org.w3c.dom.*;
26
27
28import org.w3c.domts.DOMTestCase;
29import org.w3c.domts.DOMTestDocumentBuilderFactory;
30
31
32
33/**
34 *  The importNode method imports a node from another document to this document.
35 *  The returned node has no parent; (parentNode is null). The source node is not
36 *  altered or removed from the original document but a new copy of the source node
37 *  is created.
38 *
39 *  Using the method importNode with deep=true/false, import a entity nodes ent2 and ent6
40 *  from this document to a new document object.  Verify if the nodes have been
41 *  imported correctly by checking the nodeNames of the imported nodes and public and system ids.
42* @author IBM
43* @author Neil Delima
44* @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core">http://www.w3.org/TR/DOM-Level-2-Core/core</a>
45* @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#Core-Document-importNode">http://www.w3.org/TR/DOM-Level-2-Core/core#Core-Document-importNode</a>
46*/
47public final class documentimportnode19 extends DOMTestCase {
48
49   /**
50    * Constructor.
51    * @param factory document factory, may not be null
52    * @throws org.w3c.domts.DOMTestIncompatibleException Thrown if test is not compatible with parser configuration
53    */
54   public documentimportnode19(final DOMTestDocumentBuilderFactory factory)  throws org.w3c.domts.DOMTestIncompatibleException {
55
56      org.w3c.domts.DocumentBuilderSetting[] settings =
57          new org.w3c.domts.DocumentBuilderSetting[] {
58org.w3c.domts.DocumentBuilderSetting.namespaceAware
59        };
60        DOMTestDocumentBuilderFactory testFactory = factory.newInstance(settings);
61        setFactory(testFactory);
62
63    //
64    //   check if loaded documents are supported for content type
65    //
66    String contentType = getContentType();
67    preload(contentType, "staffNS", true);
68    }
69
70   /**
71    * Runs the test case.
72    * @throws Throwable Any uncaught exception causes test to fail
73    */
74   public void runTest() throws Throwable {
75      Document doc;
76      DocumentType docTypeNull = null;
77
78      Document docImp;
79      DOMImplementation domImpl;
80      DocumentType docType;
81      NamedNodeMap nodeMap;
82      Entity entity2;
83      Entity entity6;
84      Entity entityImp2;
85      Entity entityImp6;
86      String nodeName;
87      String systemId;
88      String notationName;
89      String nodeNameImp;
90      String systemIdImp;
91      String notationNameImp;
92      doc = (Document) load("staffNS", true);
93      domImpl = doc.getImplementation();
94      docType = doc.getDoctype();
95      docImp = domImpl.createDocument("http://www.w3.org/DOM/Test", "a:b", docTypeNull);
96      nodeMap = docType.getEntities();
97      assertNotNull("entitiesNotNull", nodeMap);
98      entity2 = (Entity) nodeMap.getNamedItem("ent2");
99      entity6 = (Entity) nodeMap.getNamedItem("ent6");
100      entityImp2 = (Entity) docImp.importNode(entity2, false);
101      entityImp6 = (Entity) docImp.importNode(entity6, true);
102      nodeName = entity2.getNodeName();
103      nodeNameImp = entityImp2.getNodeName();
104      assertEquals("documentimportnode19_Ent2NodeName", nodeName, nodeNameImp);
105      nodeName = entity6.getNodeName();
106      nodeNameImp = entityImp6.getNodeName();
107      assertEquals("documentimportnode19_Ent6NodeName", nodeName, nodeNameImp);
108      systemId = entity2.getSystemId();
109      systemIdImp = entityImp2.getSystemId();
110      assertEquals("documentimportnode19_Ent2SystemId", systemId, systemIdImp);
111      systemId = entity6.getSystemId();
112      systemIdImp = entityImp6.getSystemId();
113      assertEquals("documentimportnode19_Ent6SystemId", systemId, systemIdImp);
114      notationName = entity2.getNotationName();
115      notationNameImp = entityImp2.getNotationName();
116      assertEquals("documentimportnode19_Ent2NotationName", notationName, notationNameImp);
117      notationName = entity6.getNotationName();
118      notationNameImp = entityImp6.getNotationName();
119      assertEquals("documentimportnode19_Ent6NotationName", notationName, notationNameImp);
120      }
121   /**
122    *  Gets URI that identifies the test.
123    *  @return uri identifier of test
124    */
125   public String getTargetURI() {
126      return "http://www.w3.org/2001/DOM-Test-Suite/level2/core/documentimportnode19";
127   }
128   /**
129    * Runs this test from the command line.
130    * @param args command line arguments
131    */
132   public static void main(final String[] args) {
133        DOMTestCase.doMain(documentimportnode19.class, args);
134   }
135}
136
137