|
| 1 | +/* |
| 2 | + * Copyright (c) 2025, 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 | +package stream.XMLStreamReaderTest; |
| 24 | + |
| 25 | +import javax.xml.stream.XMLInputFactory; |
| 26 | +import javax.xml.stream.XMLStreamException; |
| 27 | +import javax.xml.stream.XMLStreamReader; |
| 28 | +import java.io.StringReader; |
| 29 | +import org.junit.jupiter.api.Test; |
| 30 | +import static org.junit.jupiter.api.Assertions.assertThrows; |
| 31 | + |
| 32 | +/* |
| 33 | + * @test |
| 34 | + * @bug 8327378 |
| 35 | + * @summary Verifies exception handling |
| 36 | + * @library /javax/xml/jaxp/libs /javax/xml/jaxp/unittest |
| 37 | + * @run junit stream.XMLStreamReaderTest.ExceptionTest |
| 38 | + */ |
| 39 | +public class ExceptionTest { |
| 40 | + |
| 41 | + /** |
| 42 | + * Verifies that the XMLStreamReader throws XMLStreamException instead of EOFException. |
| 43 | + * The specification for the XMLStreamReader's next method: |
| 44 | + * Throws: XMLStreamException - if there is an error processing the underlying XML source |
| 45 | + * @throws Exception if the test fails |
| 46 | + */ |
| 47 | + @Test |
| 48 | + public void testExpectedException() throws Exception { |
| 49 | + XMLInputFactory xmlInputFactory = XMLInputFactory.newDefaultFactory(); |
| 50 | + XMLStreamReader xmlStreamReader = xmlInputFactory.createXMLStreamReader( |
| 51 | + new StringReader("<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?><!DOCTYPE foo [ <!ELEMENT foo ANY ><!ENTITY")); |
| 52 | + |
| 53 | + assertThrows(XMLStreamException.class, () -> { |
| 54 | + while (xmlStreamReader.hasNext()) { |
| 55 | + int event = xmlStreamReader.next(); |
| 56 | + } |
| 57 | + }); |
| 58 | + } |
| 59 | +} |
0 commit comments