|
| 1 | +/* |
| 2 | + * Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved. |
| 3 | + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | + * |
| 5 | + * This code is free software; you can redistribute it and/or modify it |
| 6 | + * under the terms of the GNU General Public License version 2 only, as |
| 7 | + * published by the Free Software Foundation. |
| 8 | + * |
| 9 | + * This code is distributed in the hope that it will be useful, but WITHOUT |
| 10 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | + * version 2 for more details (a copy is included in the LICENSE file that |
| 13 | + * accompanied this code). |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License version |
| 16 | + * 2 along with this work; if not, write to the Free Software Foundation, |
| 17 | + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | + * |
| 19 | + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 20 | + * or visit www.oracle.com if you need additional information or have any |
| 21 | + * questions. |
| 22 | + */ |
| 23 | + |
| 24 | +package common.dtd; |
| 25 | + |
| 26 | +import javax.xml.parsers.DocumentBuilderFactory; |
| 27 | +import javax.xml.parsers.SAXParser; |
| 28 | +import javax.xml.parsers.SAXParserFactory; |
| 29 | +import javax.xml.stream.XMLInputFactory; |
| 30 | +import org.testng.Assert; |
| 31 | +import org.testng.annotations.DataProvider; |
| 32 | +import org.testng.annotations.Test; |
| 33 | +import org.xml.sax.XMLReader; |
| 34 | + |
| 35 | +/* |
| 36 | + * @test |
| 37 | + * @bug 8322214 |
| 38 | + * @library /javax/xml/jaxp/libs /javax/xml/jaxp/unittest |
| 39 | + * @run testng common.dtd.DTDPropertiesTest |
| 40 | + * @summary Verifies the getProperty function on DTD properties works the same |
| 41 | + * as before the property 'jdk.xml.dtd.support' was introduced. |
| 42 | + */ |
| 43 | +public class DTDPropertiesTest { |
| 44 | + // Xerces Property |
| 45 | + public static final String DISALLOW_DTD = "http://apache.org/xml/features/disallow-doctype-decl"; |
| 46 | + |
| 47 | + /* |
| 48 | + * DataProvider for verifying Xerces' disallow-DTD feature |
| 49 | + * Fields: property name, setting (null indicates not specified), expected |
| 50 | + */ |
| 51 | + @DataProvider(name = "XercesProperty") |
| 52 | + public Object[][] getXercesProperty() throws Exception { |
| 53 | + return new Object[][] { |
| 54 | + { DISALLOW_DTD, null, false}, |
| 55 | + { DISALLOW_DTD, true, true}, |
| 56 | + { DISALLOW_DTD, false, false}, |
| 57 | + }; |
| 58 | + } |
| 59 | + |
| 60 | + /* |
| 61 | + * DataProvider for verifying StAX's supportDTD feature |
| 62 | + * Fields: property name, setting (null indicates not specified), expected |
| 63 | + */ |
| 64 | + @DataProvider(name = "StAXProperty") |
| 65 | + public Object[][] getStAXProperty() throws Exception { |
| 66 | + return new Object[][] { |
| 67 | + { XMLInputFactory.SUPPORT_DTD, null, true}, |
| 68 | + { XMLInputFactory.SUPPORT_DTD, true, true}, |
| 69 | + { XMLInputFactory.SUPPORT_DTD, false, false}, |
| 70 | + }; |
| 71 | + } |
| 72 | + |
| 73 | + /** |
| 74 | + * Verifies the disallow DTD feature with SAX. |
| 75 | + * |
| 76 | + * @param name the name of the property |
| 77 | + * @param setting the setting of the property, null means not specified |
| 78 | + * @param expected the expected value |
| 79 | + * @throws Exception if the test fails |
| 80 | + */ |
| 81 | + @Test(dataProvider = "XercesProperty") |
| 82 | + public void testSAX(String name, Boolean setting, Boolean expected) throws Exception { |
| 83 | + SAXParserFactory spf = SAXParserFactory.newDefaultInstance(); |
| 84 | + if (setting != null) { |
| 85 | + spf.setFeature(name, setting); |
| 86 | + } |
| 87 | + Assert.assertEquals((Boolean)spf.getFeature(name), expected); |
| 88 | + System.out.println(spf.getFeature(name)); |
| 89 | + |
| 90 | + |
| 91 | + SAXParser saxParser = spf.newSAXParser(); |
| 92 | + XMLReader reader = saxParser.getXMLReader(); |
| 93 | + Assert.assertEquals((Boolean)reader.getFeature(name), expected); |
| 94 | + System.out.println(reader.getFeature(name)); |
| 95 | + } |
| 96 | + |
| 97 | + /** |
| 98 | + * Verifies the disallow DTD feature with DOM. |
| 99 | + * |
| 100 | + * @param name the name of the property |
| 101 | + * @param setting the setting of the property, null means not specified |
| 102 | + * @param expected the expected value |
| 103 | + * @throws Exception if the test fails |
| 104 | + */ |
| 105 | + @Test(dataProvider = "XercesProperty") |
| 106 | + public void testDOM(String name, Boolean setting, Boolean expected) throws Exception { |
| 107 | + DocumentBuilderFactory dbf = DocumentBuilderFactory.newDefaultInstance(); |
| 108 | + if (setting != null) { |
| 109 | + dbf.setFeature(name, setting); |
| 110 | + } |
| 111 | + Assert.assertEquals((Boolean)dbf.getFeature(name), expected); |
| 112 | + System.out.println(dbf.getFeature(name)); |
| 113 | + } |
| 114 | + |
| 115 | + /** |
| 116 | + * Verifies the StAX's supportDTD feature. |
| 117 | + * |
| 118 | + * @param name the name of the property |
| 119 | + * @param setting the setting of the property, null means not specified |
| 120 | + * @param expected the expected value |
| 121 | + * @throws Exception if the test fails |
| 122 | + */ |
| 123 | + @Test(dataProvider = "StAXProperty") |
| 124 | + public void testStAX(String name, Boolean setting, Boolean expected) throws Exception { |
| 125 | + XMLInputFactory xif = XMLInputFactory.newInstance(); |
| 126 | + if (setting != null) { |
| 127 | + xif.setProperty(name, setting); |
| 128 | + } |
| 129 | + Assert.assertEquals((Boolean)xif.getProperty(name), expected); |
| 130 | + System.out.println((Boolean)xif.getProperty(name)); |
| 131 | + } |
| 132 | +} |
3 commit comments
openjdk-notifier[bot] commentedon Jan 4, 2024
Review
Issues
JoeWang-Java commentedon Jan 4, 2024
/backport jdk22
openjdk[bot] commentedon Jan 4, 2024
@JoeWang-Java the backport was successfully created on the branch backport-JoeWang-Java-755722ce in my personal fork of openjdk/jdk22. To create a pull request with this backport targeting openjdk/jdk22:master, just click the following link:
➡️ Create pull request
The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:
If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk22: