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=false, import the default Attribute attribute,
40 *  "defaultAttr" of the second element node whose namespaceURI="http://www.nist.gov" and
41 *  localName="defaultAttr", into the same 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 documentimportnode03 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 documentimportnode03(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      Element element;
80      Attr attr;
81      NodeList childList;
82      Node importedAttr;
83      String nodeName;
84      int nodeType;
85      String nodeValue;
86      doc = (Document) load("staffNS", true);
87      childList = doc.getElementsByTagNameNS("http://www.nist.gov", "employee");
88      element = (Element) childList.item(1);
89      attr = element.getAttributeNode("defaultAttr");
90      importedAttr = doc.importNode(attr, false);
91      nodeName = importedAttr.getNodeName();
92      nodeValue = importedAttr.getNodeValue();
93      nodeType = (int) importedAttr.getNodeType();
94      assertEquals("documentimportnode03_nodeName", "defaultAttr", nodeName);
95      assertEquals("documentimportnode03_nodeType", 2, nodeType);
96      assertEquals("documentimportnode03_nodeValue", "defaultVal", nodeValue);
97      }
98   /**
99    *  Gets URI that identifies the test.
100    *  @return uri identifier of test
101    */
102   public String getTargetURI() {
103      return "http://www.w3.org/2001/DOM-Test-Suite/level2/core/documentimportnode03";
104   }
105   /**
106    * Runs this test from the command line.
107    * @param args command line arguments
108    */
109   public static void main(final String[] args) {
110        DOMTestCase.doMain(documentimportnode03.class, args);
111   }
112}
113
114