blob: 1eb79105ef042a052ebf6b6fa44cac25bde94d51 [file] [log] [blame]
Aurimas Liutikas88c7ff12023-08-10 12:42:26 -07001
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 * Load a document and invoke its
32 * "getImplementation()" method. This should create a
33 * DOMImplementation object whose "hasFeature(feature,
34 * version)" method is invoked with version equal to null.
35 * If the version is not specified, supporting any version
36 * feature will cause the method to return "true".
37* @author Curt Arnold
38* @author Curt Arnold
39* @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-5CED94D7">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-5CED94D7</a>
40* @see <a href="http://www.w3.org/2000/11/DOM-Level-2-errata#core-14">http://www.w3.org/2000/11/DOM-Level-2-errata#core-14</a>
41* @see <a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=245">http://www.w3.org/Bugs/Public/show_bug.cgi?id=245</a>
42*/
43public final class hc_domimplementationfeaturenull extends DOMTestCase {
44
45 /**
46 * Constructor.
47 * @param factory document factory, may not be null
48 * @throws org.w3c.domts.DOMTestIncompatibleException Thrown if test is not compatible with parser configuration
49 */
50 public hc_domimplementationfeaturenull(final DOMTestDocumentBuilderFactory factory) throws org.w3c.domts.DOMTestIncompatibleException {
51
52 org.w3c.domts.DocumentBuilderSetting[] settings =
53 new org.w3c.domts.DocumentBuilderSetting[] {
54org.w3c.domts.DocumentBuilderSetting.hasNullString
55 };
56 DOMTestDocumentBuilderFactory testFactory = factory.newInstance(settings);
57 setFactory(testFactory);
58
59 //
60 // check if loaded documents are supported for content type
61 //
62 String contentType = getContentType();
63 preload(contentType, "hc_staff", false);
64 }
65
66 /**
67 * Runs the test case.
68 * @throws Throwable Any uncaught exception causes test to fail
69 */
70 public void runTest() throws Throwable {
71 Document doc;
72 DOMImplementation domImpl;
73 boolean state;
74 doc = (Document) load("hc_staff", false);
75 domImpl = doc.getImplementation();
76
77 if (("text/html".equals(getContentType()))) {
78 state = domImpl.hasFeature("HTML", null);
79assertTrue("supports_HTML_null", state);
80 } else {
81 state = domImpl.hasFeature("XML", null);
82assertTrue("supports_XML_null", state);
83 }
84
85 }
86 /**
87 * Gets URI that identifies the test.
88 * @return uri identifier of test
89 */
90 public String getTargetURI() {
91 return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/hc_domimplementationfeaturenull";
92 }
93 /**
94 * Runs this test from the command line.
95 * @param args command line arguments
96 */
97 public static void main(final String[] args) {
98 DOMTestCase.doMain(hc_domimplementationfeaturenull.class, args);
99 }
100}
101