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, import the default Attribute attribute,
40 *  "defaultAttr" of the second element node whose namespaceURI="http://www.nist.gov" and
41 *  localName="defaultAttr", into a new document.
42 *  Check the parentNode, nodeName, nodeType and nodeValue of the imported node to
43 *  verify if it has been imported correctly.
44* @author IBM
45* @author Neil Delima
46* @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core">http://www.w3.org/TR/DOM-Level-2-Core/core</a>
47* @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>
48*/
49public final class documentimportnode04 extends DOMTestCase {
50
51   /**
52    * Constructor.
53    * @param factory document factory, may not be null
54    * @throws org.w3c.domts.DOMTestIncompatibleException Thrown if test is not compatible with parser configuration
55    */
56   public documentimportnode04(final DOMTestDocumentBuilderFactory factory)  throws org.w3c.domts.DOMTestIncompatibleException {
57
58      org.w3c.domts.DocumentBuilderSetting[] settings =
59          new org.w3c.domts.DocumentBuilderSetting[] {
60org.w3c.domts.DocumentBuilderSetting.namespaceAware,
61org.w3c.domts.DocumentBuilderSetting.validating
62        };
63        DOMTestDocumentBuilderFactory testFactory = factory.newInstance(settings);
64        setFactory(testFactory);
65
66    //
67    //   check if loaded documents are supported for content type
68    //
69    String contentType = getContentType();
70    preload(contentType, "staffNS", true);
71    }
72
73   /**
74    * Runs the test case.
75    * @throws Throwable Any uncaught exception causes test to fail
76    */
77   public void runTest() throws Throwable {
78      Document doc;
79      Document newDoc;
80      DocumentType docType = null;
81
82      DOMImplementation domImpl;
83      Element element;
84      Attr attr;
85      NodeList childList;
86      Node importedAttr;
87      String nodeName;
88      int nodeType;
89      String nodeValue;
90      doc = (Document) load("staffNS", true);
91      domImpl = doc.getImplementation();
92      newDoc = domImpl.createDocument("http://www.w3.org/DOM/Test", "l2:root", docType);
93      childList = doc.getElementsByTagNameNS("http://www.nist.gov", "employee");
94      element = (Element) childList.item(1);
95      attr = element.getAttributeNode("defaultAttr");
96      importedAttr = newDoc.importNode(attr, true);
97      nodeName = importedAttr.getNodeName();
98      nodeValue = importedAttr.getNodeValue();
99      nodeType = (int) importedAttr.getNodeType();
100      assertEquals("documentimportnode04_nodeName", "defaultAttr", nodeName);
101      assertEquals("documentimportnode04_nodeType", 2, nodeType);
102      assertEquals("documentimportnode04_nodeValue", "defaultVal", nodeValue);
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/level2/core/documentimportnode04";
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(documentimportnode04.class, args);
117   }
118}
119
120