OSDN Git Service

original
[gb-231r1-is01/Gingerbread_2.3.3_r1_IS01.git] / libcore / dom / src / test / java / org / w3c / domts / level1 / core / hc_namednodemapsetnameditemwithnewvalue.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-2003 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  *     If the "setNamedItem(arg)" method does not replace an 
32  *    existing node with the same name then it returns null. 
33  *    
34  *    Retrieve the third employee and create a NamedNodeMap 
35  *    object from the attributes of the last child.
36  *    Once the list is created the "setNamedItem(arg)" method
37  *    is invoked with arg=newAttr, where newAttr is a
38  *    newly created Attr Node and whose node name
39  *    already exists in the map.  The "setNamedItem(arg)"
40  *    method should add the new node and return null.
41  *    This test uses the "createAttribute(name)" method from
42  *    the document interface.
43 * @author Curt Arnold
44 * @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-1025163788">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-1025163788</a>
45 * @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>
46 * @see <a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=243">http://www.w3.org/Bugs/Public/show_bug.cgi?id=243</a>
47 */
48 public final class hc_namednodemapsetnameditemwithnewvalue 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 hc_namednodemapsetnameditemwithnewvalue(final DOMTestDocumentBuilderFactory factory)  throws org.w3c.domts.DOMTestIncompatibleException {
56       super(factory);
57
58     //
59     //   check if loaded documents are supported for content type
60     //
61     String contentType = getContentType();
62     preload(contentType, "hc_staff", true);
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       NodeList elementList;
72       Attr newAttribute;
73       Node testAddress;
74       NamedNodeMap attributes;
75       Node newNode;
76       doc = (Document) load("hc_staff", true);
77       elementList = doc.getElementsByTagName("acronym");
78       testAddress = elementList.item(2);
79       newAttribute = doc.createAttribute("lang");
80       attributes = testAddress.getAttributes();
81       newNode = attributes.setNamedItem(newAttribute);
82       assertNull("prevValueNull", newNode);
83       }
84    /**
85     *  Gets URI that identifies the test.
86     *  @return uri identifier of test
87     */
88    public String getTargetURI() {
89       return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/hc_namednodemapsetnameditemwithnewvalue";
90    }
91    /**
92     * Runs this test from the command line.
93     * @param args command line arguments
94     */
95    public static void main(final String[] args) {
96         DOMTestCase.doMain(hc_namednodemapsetnameditemwithnewvalue.class, args);
97    }
98 }
99