OSDN Git Service

original
[gb-231r1-is01/Gingerbread_2.3.3_r1_IS01.git] / libcore / dom / src / test / java / org / w3c / domts / level1 / core / namednodemapremovenameditem.java
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  *     The "removeNamedItem(name)" method removes a node 
32  *    specified by name. 
33  *    
34  *    Retrieve the third employee and create a NamedNodeMap 
35  *    object of the attributes of the last child.  Once the
36  *    list is created invoke the "removeNamedItem(name)"
37  *    method with name="street".  This should result
38  *    in the removal of the specified attribute and
39  *    the "getSpecified()" method should return false.
40 * @author NIST
41 * @author Mary Brady
42 * @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-D58B193">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-D58B193</a>
43 * @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-349467F9">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-349467F9</a>
44 * @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>
45 */
46 public final class namednodemapremovenameditem extends DOMTestCase {
47
48    /**
49     * Constructor.
50     * @param factory document factory, may not be null
51     * @throws org.w3c.domts.DOMTestIncompatibleException Thrown if test is not compatible with parser configuration
52     */
53    public namednodemapremovenameditem(final DOMTestDocumentBuilderFactory factory)  throws org.w3c.domts.DOMTestIncompatibleException {
54
55       org.w3c.domts.DocumentBuilderSetting[] settings = 
56           new org.w3c.domts.DocumentBuilderSetting[] {
57 org.w3c.domts.DocumentBuilderSetting.validating
58         };
59         DOMTestDocumentBuilderFactory testFactory = factory.newInstance(settings);
60         setFactory(testFactory);
61
62     //
63     //   check if loaded documents are supported for content type
64     //
65     String contentType = getContentType();
66     preload(contentType, "staff", true);
67     }
68
69    /**
70     * Runs the test case.
71     * @throws Throwable Any uncaught exception causes test to fail
72     */
73    public void runTest() throws Throwable {
74       Document doc;
75       NodeList elementList;
76       Node testAddress;
77       NamedNodeMap attributes;
78       Attr streetAttr;
79       boolean specified;
80       Node removedNode;
81       doc = (Document) load("staff", true);
82       elementList = doc.getElementsByTagName("address");
83       testAddress = elementList.item(2);
84       attributes = testAddress.getAttributes();
85       assertNotNull("attributesNotNull", attributes);
86       removedNode = attributes.removeNamedItem("street");
87       streetAttr = (Attr) attributes.getNamedItem("street");
88       assertNotNull("streetAttrNotNull", streetAttr);
89       specified = streetAttr.getSpecified();
90       assertFalse("attrNotSpecified", specified);
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/namednodemapremovenameditem";
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(namednodemapremovenameditem.class, args);
105    }
106 }
107