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 Copyright (c) 2001 World Wide Web Consortium,
      9 (Massachusetts Institute of Technology, Institut National de
     10 Recherche en Informatique et en Automatique, Keio University).  All
     11 Rights Reserved.  This program is distributed under the W3C's Software
     12 Intellectual Property License.  This program is distributed in the
     13 hope that it will be useful, but WITHOUT ANY WARRANTY; without even
     14 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
     15 PURPOSE.
     16 
     17 See W3C License http://www.w3.org/Consortium/Legal/ for more details.
     18 
     19 */
     20 
     21 package org.w3c.domts.level2.core;
     22 
     23 import org.w3c.dom.*;
     24 
     25 
     26 import org.w3c.domts.DOMTestCase;
     27 import org.w3c.domts.DOMTestDocumentBuilderFactory;
     28 
     29 
     30 
     31 /**
     32  *       The method getAttributeNodeNS retrieves an Attr node by local name and namespace URI.
     33  *       Create a new element node and add 2 new attribute nodes to it that have the same
     34  *       local name but different namespaceURIs and prefixes.
     35  *       Retrieve an attribute using namespace and localname and check its value, name and
     36  *       namespaceURI.
     37  *
     38 * @author IBM
     39 * @author Neil Delima
     40 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-ElGetAtNodeNS">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-ElGetAtNodeNS</a>
     41 */
     42 public final class elementgetattributenodens01 extends DOMTestCase {
     43 
     44    /**
     45     * Constructor.
     46     * @param factory document factory, may not be null
     47     * @throws org.w3c.domts.DOMTestIncompatibleException Thrown if test is not compatible with parser configuration
     48     */
     49    public elementgetattributenodens01(final DOMTestDocumentBuilderFactory factory)  throws org.w3c.domts.DOMTestIncompatibleException {
     50 
     51       org.w3c.domts.DocumentBuilderSetting[] settings =
     52           new org.w3c.domts.DocumentBuilderSetting[] {
     53 org.w3c.domts.DocumentBuilderSetting.namespaceAware
     54         };
     55         DOMTestDocumentBuilderFactory testFactory = factory.newInstance(settings);
     56         setFactory(testFactory);
     57 
     58     //
     59     //   check if loaded documents are supported for content type
     60     //
     61     String contentType = getContentType();
     62     preload(contentType, "staffNS", false);
     63     }
     64 
     65    /**
     66     * Runs the test case.
     67     * @throws Throwable Any uncaught exception causes test to fail
     68     */
     69    public void runTest() throws Throwable {
     70       Document doc;
     71       Element element;
     72       Attr attribute1;
     73       Attr attribute2;
     74       Attr newAttribute1;
     75       Attr newAttribute2;
     76       Attr attribute;
     77       String attrValue;
     78       String attrName;
     79       String attNodeName;
     80       String attrLocalName;
     81       String attrNS;
     82       doc = (Document) load("staffNS", false);
     83       element = doc.createElementNS("namespaceURI", "root");
     84       attribute1 = doc.createAttributeNS("http://www.w3.org/DOM/Level2", "l2:att");
     85       newAttribute1 = element.setAttributeNodeNS(attribute1);
     86       attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Level1", "att");
     87       newAttribute2 = element.setAttributeNodeNS(attribute2);
     88       attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Level2", "att");
     89       attrValue = attribute.getNodeValue();
     90       attrName = attribute.getName();
     91       attNodeName = attribute.getNodeName();
     92       attrLocalName = attribute.getLocalName();
     93       attrNS = attribute.getNamespaceURI();
     94       assertEquals("elementgetattributenodens01_attrValue", "", attrValue);
     95       assertEquals("elementgetattributenodens01_attrName", "l2:att", attrName);
     96       assertEquals("elementgetattributenodens01_attrNodeName", "l2:att", attNodeName);
     97       assertEquals("elementgetattributenodens01_attrLocalName", "att", attrLocalName);
     98       assertEquals("elementgetattributenodens01_attrNs", "http://www.w3.org/DOM/Level2", attrNS);
     99       }
    100    /**
    101     *  Gets URI that identifies the test.
    102     *  @return uri identifier of test
    103     */
    104    public String getTargetURI() {
    105       return "http://www.w3.org/2001/DOM-Test-Suite/level2/core/elementgetattributenodens01";
    106    }
    107    /**
    108     * Runs this test from the command line.
    109     * @param args command line arguments
    110     */
    111    public static void main(final String[] args) {
    112         DOMTestCase.doMain(elementgetattributenodens01.class, args);
    113    }
    114 }
    115 
    116