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 See W3C License http://www.w3.org/Consortium/Legal/ for more details. 17 18 */ 19 20 package org.w3c.domts.level1.core; 21 22 import org.w3c.dom.*; 23 24 25 import org.w3c.domts.DOMTestCase; 26 import org.w3c.domts.DOMTestDocumentBuilderFactory; 27 28 29 30 /** 31 * The "setAttributeNode(newAttr)" method adds a new 32 * attribute to the Element. 33 * 34 * Retrieve first address element and add 35 * a new attribute node to it by invoking its 36 * "setAttributeNode(newAttr)" method. This test makes use 37 * of the "createAttribute(name)" method from the Document 38 * interface. 39 * @author NIST 40 * @author Mary Brady 41 * @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-887236154">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-887236154</a> 42 */ 43 public final class elementcreatenewattribute extends DOMTestCase { 44 45 /** 46 * Constructor. 47 * @param factory document factory, may not be null 48 * @throws org.w3c.domts.DOMTestIncompatibleException Thrown if test is not compatible with parser configuration 49 */ 50 public elementcreatenewattribute(final DOMTestDocumentBuilderFactory factory) throws org.w3c.domts.DOMTestIncompatibleException { 51 super(factory); 52 53 // 54 // check if loaded documents are supported for content type 55 // 56 String contentType = getContentType(); 57 preload(contentType, "staff", true); 58 } 59 60 /** 61 * Runs the test case. 62 * @throws Throwable Any uncaught exception causes test to fail 63 */ 64 public void runTest() throws Throwable { 65 Document doc; 66 NodeList elementList; 67 Element testAddress; 68 Attr newAttribute; 69 Attr oldAttr; 70 Attr districtAttr; 71 String attrVal; 72 doc = (Document) load("staff", true); 73 elementList = doc.getElementsByTagName("address"); 74 testAddress = (Element) elementList.item(0); 75 newAttribute = doc.createAttribute("district"); 76 oldAttr = testAddress.setAttributeNode(newAttribute); 77 assertNull("old_attr_doesnt_exist", oldAttr); 78 districtAttr = testAddress.getAttributeNode("district"); 79 assertNotNull("new_district_accessible", districtAttr); 80 attrVal = testAddress.getAttribute("district"); 81 assertEquals("attr_value", "", attrVal); 82 } 83 /** 84 * Gets URI that identifies the test. 85 * @return uri identifier of test 86 */ 87 public String getTargetURI() { 88 return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/elementcreatenewattribute"; 89 } 90 /** 91 * Runs this test from the command line. 92 * @param args command line arguments 93 */ 94 public static void main(final String[] args) { 95 DOMTestCase.doMain(elementcreatenewattribute.class, args); 96 } 97 } 98 99