1
2/*
3This Java source file was generated by test-to-java.xsl
4and is a derived work from the source document.
5The source document contained the following notice:
6
7
8Copyright (c) 2001-2004 World Wide Web Consortium,
9(Massachusetts Institute of Technology, Institut National de
10Recherche en Informatique et en Automatique, Keio University). All
11Rights Reserved. This program is distributed under the W3C's Software
12Intellectual Property License. This program is distributed in the
13hope that it will be useful, but WITHOUT ANY WARRANTY; without even
14the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15PURPOSE.
16See W3C License http://www.w3.org/Consortium/Legal/ for more details.
17
18*/
19
20package org.w3c.domts.level1.core;
21
22import org.w3c.dom.*;
23
24
25import org.w3c.domts.DOMTestCase;
26import 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 NIST
44* @author Mary Brady
45* @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>
46* @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>
47*/
48public final class 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 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, "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("staff", true);
77      elementList = doc.getElementsByTagName("address");
78      testAddress = elementList.item(2);
79      newAttribute = doc.createAttribute("district");
80      attributes = testAddress.getAttributes();
81      newNode = attributes.setNamedItem(newAttribute);
82      assertNull("returnedNodeNull", 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/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(namednodemapsetnameditemwithnewvalue.class, args);
97   }
98}
99
100