Home | History | Annotate | Download | only in core
      1 
      2 /*
      3 This Java source file was generated by test-to-java.xsl
      4 and is a derived work from the source document.
      5 The source document contained the following notice:
      6 
      7 
      8 
      9 Copyright (c) 2001 World Wide Web Consortium,
     10 (Massachusetts Institute of Technology, Institut National de
     11 Recherche en Informatique et en Automatique, Keio University).  All
     12 Rights Reserved.  This program is distributed under the W3C's Software
     13 Intellectual Property License.  This program is distributed in the
     14 hope that it will be useful, but WITHOUT ANY WARRANTY; without even
     15 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
     16 PURPOSE.
     17 
     18 See W3C License http://www.w3.org/Consortium/Legal/ for more details.
     19 
     20 
     21 */
     22 
     23 package org.w3c.domts.level2.core;
     24 
     25 import org.w3c.dom.*;
     26 
     27 
     28 import org.w3c.domts.DOMTestCase;
     29 import org.w3c.domts.DOMTestDocumentBuilderFactory;
     30 
     31 
     32 
     33 /**
     34  *  The method setPrefix sets the namespace prefix of this node.  Note that setting this attribute,
     35  *  when permitted, changes the nodeName attribute, which holds the qualified name, as well as the
     36  *  tagName and name attributes of the Element and Attr interfaces, when applicable.
     37  *  Create a new attribute node and add it to an element node with an existing attribute having
     38  *  the same localName as this attribute but different namespaceURI.  Change the prefix of the
     39  *  newly created attribute using setPrefix.  Check if the new attribute nodeName has changed
     40  *  and the existing attribute is the same.
     41 * @author IBM
     42 * @author Neil Delima
     43 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-NodeNSPrefix">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-NodeNSPrefix</a>
     44 */
     45 public final class nodesetprefix02 extends DOMTestCase {
     46 
     47    /**
     48     * Constructor.
     49     * @param factory document factory, may not be null
     50     * @throws org.w3c.domts.DOMTestIncompatibleException Thrown if test is not compatible with parser configuration
     51     */
     52    public nodesetprefix02(final DOMTestDocumentBuilderFactory factory)  throws org.w3c.domts.DOMTestIncompatibleException {
     53 
     54       org.w3c.domts.DocumentBuilderSetting[] settings =
     55           new org.w3c.domts.DocumentBuilderSetting[] {
     56 org.w3c.domts.DocumentBuilderSetting.namespaceAware
     57         };
     58         DOMTestDocumentBuilderFactory testFactory = factory.newInstance(settings);
     59         setFactory(testFactory);
     60 
     61     //
     62     //   check if loaded documents are supported for content type
     63     //
     64     String contentType = getContentType();
     65     preload(contentType, "staffNS", true);
     66     }
     67 
     68    /**
     69     * Runs the test case.
     70     * @throws Throwable Any uncaught exception causes test to fail
     71     */
     72    public void runTest() throws Throwable {
     73       Document doc;
     74       Element element;
     75       Attr attribute;
     76       Attr newAttribute;
     77       Node setNode;
     78       NodeList elementList;
     79       String attrName;
     80       String newAttrName;
     81       doc = (Document) load("staffNS", true);
     82       elementList = doc.getElementsByTagName("address");
     83       element = (Element) elementList.item(1);
     84       newAttribute = doc.createAttributeNS("http://www.w3.org/DOM/Test", "test:address");
     85       setNode = element.setAttributeNodeNS(newAttribute);
     86       newAttribute.setPrefix("dom");
     87       attribute = element.getAttributeNodeNS("http://www.usa.com", "domestic");
     88       attrName = attribute.getNodeName();
     89       newAttrName = newAttribute.getNodeName();
     90       assertEquals("nodesetprefix02_attrName", "dmstc:domestic", attrName);
     91       assertEquals("nodesetprefix02_newAttrName", "dom:address", newAttrName);
     92       }
     93    /**
     94     *  Gets URI that identifies the test.
     95     *  @return uri identifier of test
     96     */
     97    public String getTargetURI() {
     98       return "http://www.w3.org/2001/DOM-Test-Suite/level2/core/nodesetprefix02";
     99    }
    100    /**
    101     * Runs this test from the command line.
    102     * @param args command line arguments
    103     */
    104    public static void main(final String[] args) {
    105         DOMTestCase.doMain(nodesetprefix02.class, args);
    106    }
    107 }
    108 
    109