/* * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package transform; import java.io.StringReader; import java.io.StringWriter; import java.util.Properties; import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.transform.OutputKeys; import javax.xml.transform.Templates; import javax.xml.transform.Transformer; import javax.xml.transform.TransformerFactory; import javax.xml.transform.stream.StreamResult; import javax.xml.transform.stream.StreamSource; import org.testng.Assert; import org.testng.annotations.DataProvider; import org.testng.annotations.Test; import org.w3c.dom.Document; import org.xml.sax.InputSource; /* * @test * @bug 8219705 8223291 * @library /javax/xml/jaxp/libs /javax/xml/jaxp/unittest * @run testng transform.OutputPropertiesTest * @summary Verifies the output properties are set correctly */ public class OutputPropertiesTest { /* DataProvider: for testing indentation Data: xml, expected result */ @DataProvider(name = "Indentation") public Object[][] getData() { String mix = "\n" + " abc\n" + " mix\n" + " xyz\n" + " "; return new Object[][]{ {"abcxyz", "abcdataxyz"}, {"abcxyz", "abc & xyz"}, {"", "data"}, {"abcmixxyz", mix} }; } /** * bug 8223291 * Verifies that no extra indentation is added for CDATA. * @param xml the xml content to be tested * @param expected the expected result * @throws Exception */ @Test(dataProvider = "Indentation") public void testIndentation(String xml, String expected) throws Exception { StreamSource source = new StreamSource(new StringReader("" + xml + "")); StreamResult result = new StreamResult(new StringWriter()); Transformer tform = TransformerFactory.newInstance().newTransformer(); tform.setOutputProperty(OutputKeys.INDENT, "yes"); tform.transform(source, result); String xml1 = result.getWriter().toString(); Document document = DocumentBuilderFactory.newInstance() .newDocumentBuilder() .parse(new InputSource(new StringReader(xml1))); String resultData = document.getElementsByTagName("bar") .item(0) .getTextContent(); Assert.assertEquals(resultData, expected); } @Test public void testOutputProperties() throws Exception { String xslData = "" + "\n" + " \n" + " \n" + " Hello World! \n" + " \n" + ""; System.out.println(xslData); Templates templates = TransformerFactory.newInstance() .newTemplates(new StreamSource(new StringReader(xslData))); Properties properties = templates.getOutputProperties(); String[] prNames = new String[]{"method", "version", "indent", "media-type"}; String[] prValues = new String[]{"html", "4.0", "yes", "text/html"}; for (int i = 0; i < prNames.length; i++) { String value = properties.getProperty(prNames[i]); String msg = "The value of the property '" + prNames[i] + "' should be '" + prValues[i] + "' when the method is '" + prValues[0] + "'. \n"; Assert.assertEquals(value, prValues[i], msg); System.out.println( prNames[i] + ": actual: " + value + ", expected: " + prValues[i]); } } }