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-2004 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 * To respecify the attribute to its default value from 32 * the DTD, the attribute must be deleted. This will then 33 * make a new attribute available with the "getSpecified()" 34 * method value set to false. 35 * Retrieve the attribute named "street" from the last 36 * child of of the THIRD employee and delete it. This 37 * should then create a new attribute with its default 38 * value and also cause the "getSpecified()" method to 39 * return false. 40 * This test uses the "removeAttribute(name)" method 41 * from the Element interface and the "getNamedItem(name)" 42 * method from the NamedNodeMap interface. 43 * @author NIST 44 * @author Mary Brady 45 * @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-6D6AC0F9">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-6D6AC0F9</a> 46 * @see <a href="http://lists.w3.org/Archives/Public/www-dom-ts/2002Mar/0002.html">http://lists.w3.org/Archives/Public/www-dom-ts/2002Mar/0002.html</a> 47 */ 48 public final class attrspecifiedvalueremove extends DOMTestCase { 49 50 /** 51 * Constructor. 52 * @param factory document factory, may not be null 53 * @throws org.w3c.domts.DOMTestIncompatibleException Thrown if test is not compatible with parser configuration 54 */ 55 public attrspecifiedvalueremove(final DOMTestDocumentBuilderFactory factory) throws org.w3c.domts.DOMTestIncompatibleException { 56 57 org.w3c.domts.DocumentBuilderSetting[] settings = 58 new org.w3c.domts.DocumentBuilderSetting[] { 59 org.w3c.domts.DocumentBuilderSetting.validating 60 }; 61 DOMTestDocumentBuilderFactory testFactory = factory.newInstance(settings); 62 setFactory(testFactory); 63 64 // 65 // check if loaded documents are supported for content type 66 // 67 String contentType = getContentType(); 68 preload(contentType, "staff", true); 69 } 70 71 /** 72 * Runs the test case. 73 * @throws Throwable Any uncaught exception causes test to fail 74 */ 75 public void runTest() throws Throwable { 76 Document doc; 77 NodeList addressList; 78 Node testNode; 79 NamedNodeMap attributes; 80 Attr streetAttr; 81 boolean state; 82 doc = (Document) load("staff", true); 83 addressList = doc.getElementsByTagName("address"); 84 testNode = addressList.item(2); 85 ((Element) /*Node */testNode).removeAttribute("street"); 86 attributes = testNode.getAttributes(); 87 streetAttr = (Attr) attributes.getNamedItem("street"); 88 assertNotNull("streetAttrNotNull", streetAttr); 89 state = streetAttr.getSpecified(); 90 assertFalse("attrSpecifiedValueRemoveAssert", state); 91 } 92 /** 93 * Gets URI that identifies the test. 94 * @return uri identifier of test 95 */ 96 public String getTargetURI() { 97 return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/attrspecifiedvalueremove"; 98 } 99 /** 100 * Runs this test from the command line. 101 * @param args command line arguments 102 */ 103 public static void main(final String[] args) { 104 DOMTestCase.doMain(attrspecifiedvalueremove.class, args); 105 } 106 } 107 108