Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/javax/xml/jaxp/testng/parse/XMLEntityScannerLoad.java
38859 views
/*1* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*/2223package parse;2425import java.io.ByteArrayInputStream;26import java.io.IOException;27import javax.xml.parsers.DocumentBuilderFactory;28import javax.xml.parsers.ParserConfigurationException;2930import static org.testng.Assert.assertEquals;31import org.testng.annotations.DataProvider;32import org.testng.annotations.Test;33import org.w3c.dom.Document;34import org.xml.sax.SAXException;3536/**37* JDK-8059327: XML parser returns corrupt attribute value38* https://bugs.openjdk.java.net/browse/JDK-805932739*40* Also:41* JDK-8061550: XMLEntityScanner can corrupt corrupt content during parsing42* https://bugs.openjdk.java.net/browse/JDK-806155043*44* @Summary: verify that the character cache in XMLEntityScanner is reset properly45*/4647public class XMLEntityScannerLoad {4849@Test(dataProvider = "xmls")50public void test(String xml) throws SAXException, IOException, ParserConfigurationException {51Document d = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(new ChunkInputStream(xml));52String value = d.getDocumentElement().getAttribute("a1");53assertEquals(value, "w");54}5556static class ChunkInputStream extends ByteArrayInputStream {57ChunkInputStream(String xml) {58super(xml.getBytes());59}6061@Override62public synchronized int read(byte[] b, int off, int len) {63return super.read(b, off, 7);64}65}6667@DataProvider(name = "xmls")68private Object[][] xmls() {69return new Object[][] {70{"<?xml version=\"1.0\"?><element a1=\"w\" a2=\"""\"/>"},71{"<?xml version=\"1.1\"?><element a1=\"w\" a2=\"""\"/>"}72};73}74}757677