--- /dev/null 2014-08-20 22:06:50.000000000 -0700 +++ new/test/javax/xml/jaxp/functional/javax/xml/transform/ptests/SAXSourceTest01.java 2014-08-20 22:06:50.000000000 -0700 @@ -0,0 +1,104 @@ +/* + * Copyright (c) 2014, 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 javax.xml.transform.ptests; + +import java.io.File; +import java.io.FileInputStream; +import java.io.FileNotFoundException; +import java.io.IOException; +import javax.xml.parsers.DocumentBuilderFactory; +import javax.xml.parsers.ParserConfigurationException; +import javax.xml.transform.dom.DOMSource; +import static javax.xml.transform.ptests.TransformerTestConst.XML_DIR; +import javax.xml.transform.sax.SAXSource; +import javax.xml.transform.stream.StreamSource; +import static jaxp.library.JAXPTestUtilities.failUnexpected; +import static org.testng.Assert.assertEquals; +import static org.testng.Assert.assertNotNull; +import static org.testng.Assert.assertNull; +import org.testng.annotations.Test; +import org.xml.sax.InputSource; +import org.xml.sax.SAXException; + + +/** + * Unit test for SAXSource sourceToInputSource API. + */ +public class SAXSourceTest01 { + /** + * Test file name + */ + private final String TEST_FILE = XML_DIR + "cities.xsl"; + + /** + * Test obtaining a SAX InputSource object from a Source object. + */ + @Test + public void source2inputsource01() { + try { + StreamSource streamSource = new StreamSource ( + new FileInputStream (TEST_FILE)); + assertNotNull(SAXSource.sourceToInputSource(streamSource)); + } catch (FileNotFoundException ex) { + failUnexpected(ex); + } + } + + /** + * This test case tries to get InputSource from DOMSource using + * sourceToInputSource method. It is not possible and hence null is + * expected. This is a negative test case + */ + @Test + public void source2inputsource02() { + try { + DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); + dbf.setNamespaceAware(true); + dbf.newDocumentBuilder().parse(new File(TEST_FILE)); + assertNull(SAXSource.sourceToInputSource(new DOMSource(null))); + } catch (ParserConfigurationException | SAXException | IOException ex) { + failUnexpected(ex); + } + + } + + /** + * This test case tries to get InputSource from SAXSource using + * sourceToInputSource method. This will also check if the systemId + * remained the same. This is a positive test case. + */ + @Test + public void source2inputsource03() { + String SYSTEM_ID = "file:///" + XML_DIR; + try { + SAXSource saxSource = + new SAXSource(new InputSource(new FileInputStream(TEST_FILE))); + saxSource.setSystemId(SYSTEM_ID); + assertEquals(SAXSource.sourceToInputSource(saxSource).getSystemId(), + SYSTEM_ID); + } catch (FileNotFoundException ex) { + failUnexpected(ex); + } + } +}