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_attrgetvalue2.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  * Checks the value of an attribute that contains entity references.
32 * @author Curt Arnold
33 * @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-221662474">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-221662474</a>
34 */
35 public final class hc_attrgetvalue2 extends DOMTestCase {
36
37    /**
38     * Constructor.
39     * @param factory document factory, may not be null
40     * @throws org.w3c.domts.DOMTestIncompatibleException Thrown if test is not compatible with parser configuration
41     */
42    public hc_attrgetvalue2(final DOMTestDocumentBuilderFactory factory)  throws org.w3c.domts.DOMTestIncompatibleException {
43       super(factory);
44       if (factory.hasFeature("XML", null) != true) {
45          throw org.w3c.domts.DOMTestIncompatibleException.incompatibleFeature("XML", null);
46       }
47
48     //
49     //   check if loaded documents are supported for content type
50     //
51     String contentType = getContentType();
52     preload(contentType, "hc_staff", true);
53     }
54
55    /**
56     * Runs the test case.
57     * @throws Throwable Any uncaught exception causes test to fail
58     */
59    public void runTest() throws Throwable {
60       Document doc;
61       NodeList acronymList;
62       Node testNode;
63       NamedNodeMap attributes;
64       Attr titleAttr;
65       String value;
66       Text textNode;
67       Node retval;
68       Node firstChild;
69       EntityReference alphaRef;
70       doc = (Document) load("hc_staff", true);
71       acronymList = doc.getElementsByTagName("acronym");
72       testNode = acronymList.item(3);
73       attributes = testNode.getAttributes();
74       titleAttr = (Attr) attributes.getNamedItem("class");
75       
76       if (("text/html".equals(getContentType()))) {
77           
78       {
79          boolean success = false;
80          try {
81             alphaRef = doc.createEntityReference("alpha");
82           } catch (DOMException ex) {
83             success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
84          }
85          assertTrue("throw_NOT_SUPPORTED_ERR", success);
86       }
87 } else {
88           alphaRef = doc.createEntityReference("alpha");
89       firstChild = titleAttr.getFirstChild();
90       retval = titleAttr.insertBefore(alphaRef, firstChild);
91       value = titleAttr.getValue();
92       assertEquals("attrValue1", "\u03b1Y\u03b1", value); // android-changed: GREEK LOWER CASE ALPHA
93       }
94         
95     }
96    /**
97     *  Gets URI that identifies the test.
98     *  @return uri identifier of test
99     */
100    public String getTargetURI() {
101       return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/hc_attrgetvalue2";
102    }
103    /**
104     * Runs this test from the command line.
105     * @param args command line arguments
106     */
107    public static void main(final String[] args) {
108         DOMTestCase.doMain(hc_attrgetvalue2.class, args);
109    }
110 }
111