Home | History | Annotate | Download | only in core
      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 "setData(data)" method for a processing instruction causes the
     32  *    DOMException NO_MODIFICATION_ALLOWED_ERR to be raised
     33  *    if the node is readonly.
     34  *
     35  *    Create an ent4 entity reference and add to document of the THIRD "gender" element.  The elements
     36  *    content is an entity reference.  Try to remove the "domestic" attribute
     37  *    from the entity reference by executing the "setData(data)" method.
     38  *    This causes a NO_MODIFICATION_ALLOWED_ERR DOMException to be thrown.
     39 * @author Curt Arnold
     40 * @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#xpointer(id('ID-258A00AF')/constant[@name='NO_MODIFICATION_ALLOWED_ERR'])">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#xpointer(id('ID-258A00AF')/constant[@name='NO_MODIFICATION_ALLOWED_ERR'])</a>
     41 * @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-837822393">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-837822393</a>
     42 * @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#xpointer(id('ID-837822393')/setraises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NO_MODIFICATION_ALLOWED_ERR'])">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#xpointer(id('ID-837822393')/setraises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NO_MODIFICATION_ALLOWED_ERR'])</a>
     43 * @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-837822393">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-837822393</a>
     44 * @see <a href="http://lists.w3.org/Archives/Public/www-dom-ts/2002Apr/0053.html">http://lists.w3.org/Archives/Public/www-dom-ts/2002Apr/0053.html</a>
     45 * @see <a href="http://www.w3.org/2001/DOM-Test-Suite/level1/core/processinginstructionsetdatanomodificationallowederr.xml">http://www.w3.org/2001/DOM-Test-Suite/level1/core/processinginstructionsetdatanomodificationallowederr.xml</a>
     46 */
     47 public final class processinginstructionsetdatanomodificationallowederrEE extends DOMTestCase {
     48 
     49    /**
     50     * Constructor.
     51     * @param factory document factory, may not be null
     52     * @throws org.w3c.domts.DOMTestIncompatibleException Thrown if test is not compatible with parser configuration
     53     */
     54    public processinginstructionsetdatanomodificationallowederrEE(final DOMTestDocumentBuilderFactory factory)  throws org.w3c.domts.DOMTestIncompatibleException {
     55       super(factory);
     56 
     57     //
     58     //   check if loaded documents are supported for content type
     59     //
     60     String contentType = getContentType();
     61     preload(contentType, "staff", true);
     62     }
     63 
     64    /**
     65     * Runs the test case.
     66     * @throws Throwable Any uncaught exception causes test to fail
     67     */
     68    public void runTest() throws Throwable {
     69       Document doc;
     70       NodeList genderList;
     71       Node gender;
     72       Node entRef;
     73       ProcessingInstruction piNode;
     74       Node appendedChild;
     75       doc = (Document) load("staff", true);
     76       genderList = doc.getElementsByTagName("gender");
     77       gender = genderList.item(2);
     78       entRef = doc.createEntityReference("ent4");
     79       appendedChild = gender.appendChild(entRef);
     80       entRef = gender.getLastChild();
     81       assertNotNull("entRefNotNull", entRef);
     82       piNode = (ProcessingInstruction) entRef.getLastChild();
     83       assertNotNull("piNodeNotNull", piNode);
     84 
     85       {
     86          boolean success = false;
     87          try {
     88             piNode.setData("newData");
     89           } catch (DOMException ex) {
     90             success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
     91          }
     92          assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR", success);
     93       }
     94 }
     95    /**
     96     *  Gets URI that identifies the test.
     97     *  @return uri identifier of test
     98     */
     99    public String getTargetURI() {
    100       return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/processinginstructionsetdatanomodificationallowederrEE";
    101    }
    102    /**
    103     * Runs this test from the command line.
    104     * @param args command line arguments
    105     */
    106    public static void main(final String[] args) {
    107         DOMTestCase.doMain(processinginstructionsetdatanomodificationallowederrEE.class, args);
    108    }
    109 }
    110 
    111