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-2003 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(importedNode,deep)" method for a
35 *    Document should import the given importedNode into that Document.
36 *    The importedNode is of type Element.
37 *    If this document defines default attributes for this element name (importedNode),
38 *    those default attributes are assigned.
39 *
40 *    Create an element whose name is "emp:employee" in a different document.
41 *    Invoke method importNode(importedNode,deep) on this document which
42 *    defines default attribute for the element name "emp:employee".
43 *    Method should return an the imported element with an assigned default attribute.
44* @author NIST
45* @author Mary Brady
46* @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>
47* @see <a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=238">http://www.w3.org/Bugs/Public/show_bug.cgi?id=238</a>
48*/
49public final class importNode07 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 importNode07(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    preload(contentType, "staff", true);
72    }
73
74   /**
75    * Runs the test case.
76    * @throws Throwable Any uncaught exception causes test to fail
77    */
78   public void runTest() throws Throwable {
79      Document doc;
80      Document aNewDoc;
81      Element element;
82      Node aNode;
83      NamedNodeMap attributes;
84      String name;
85      Node attr;
86      String lname;
87      String namespaceURI = "http://www.nist.gov";
88      String qualifiedName = "emp:employee";
89      doc = (Document) load("staffNS", true);
90      aNewDoc = (Document) load("staff", true);
91      element = aNewDoc.createElementNS(namespaceURI, qualifiedName);
92      aNode = doc.importNode(element, false);
93      attributes = aNode.getAttributes();
94      assertSize("throw_Size", 1, attributes);
95      name = aNode.getNodeName();
96      assertEquals("nodeName", "emp:employee", name);
97      attr = attributes.item(0);
98      lname = attr.getLocalName();
99      assertEquals("lname", "defaultAttr", lname);
100      }
101   /**
102    *  Gets URI that identifies the test.
103    *  @return uri identifier of test
104    */
105   public String getTargetURI() {
106      return "http://www.w3.org/2001/DOM-Test-Suite/level2/core/importNode07";
107   }
108   /**
109    * Runs this test from the command line.
110    * @param args command line arguments
111    */
112   public static void main(final String[] args) {
113        DOMTestCase.doMain(importNode07.class, args);
114   }
115}
116
117