1 /*
   2  * Copyright (c) 2014, 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 javax.xml.transform.ptests;
  24 
  25 import java.io.File;
  26 import java.io.FileOutputStream;
  27 import java.io.IOException;
  28 import javax.xml.parsers.DocumentBuilder;
  29 import javax.xml.parsers.DocumentBuilderFactory;
  30 import javax.xml.parsers.ParserConfigurationException;
  31 import javax.xml.transform.Result;
  32 import javax.xml.transform.TransformerConfigurationException;
  33 import javax.xml.transform.TransformerFactory;
  34 import javax.xml.transform.dom.DOMSource;
  35 import static javax.xml.transform.ptests.TransformerTestConst.CLASS_DIR;
  36 import static javax.xml.transform.ptests.TransformerTestConst.GOLDEN_DIR;
  37 import static javax.xml.transform.ptests.TransformerTestConst.XML_DIR;
  38 import javax.xml.transform.sax.SAXTransformerFactory;
  39 import javax.xml.transform.sax.TransformerHandler;
  40 import javax.xml.transform.stream.StreamResult;
  41 import jaxp.library.JAXPFileBaseTest;
  42 import jaxp.library.JAXPFileBaseTest;
  43 import static jaxp.library.JAXPTestUtilities.compareWithGold;
  44 import static org.testng.Assert.assertTrue;
  45 import org.testng.annotations.Test;
  46 import org.w3c.dom.Document;
  47 import org.w3c.dom.Node;
  48 import org.xml.sax.SAXException;
  49 import org.xml.sax.XMLReader;
  50 import org.xml.sax.helpers.XMLReaderFactory;
  51 
  52 /**
  53  * Test SAXSource API when relative URI is used in xsl file and SystemId was set
  54  */
  55 public class SAXTFactoryTest005 extends JAXPFileBaseTest {
  56     /**
  57      * Unit test for XMLReader parsing when relative URI is used in xsl file and
  58      * SystemId was set.
  59      * 
  60      * @throws SAXException If any parse errors occur.
  61      * @throws IOException if the file exists but is a directory rather than
  62      *         a regular file, does not exist but cannot be created, or cannot 
  63      *         be opened for any other reason.
  64      * @throws TransformerConfigurationException If for some reason the
  65      *         TransformerHandler can not be created.
  66      * @throws ParserConfigurationException if a DocumentBuilder cannot be 
  67      *         created which satisfies the configuration requested.
  68      */
  69     @Test
  70     public void testcase01() throws IOException, SAXException, 
  71             TransformerConfigurationException, ParserConfigurationException {
  72         String outputFile = CLASS_DIR + "saxtf005.out";
  73         String goldFile = GOLDEN_DIR + "saxtf005GF.out";
  74         String xsltFile = XML_DIR + "citiesinclude.xsl";
  75         String xmlFile = XML_DIR + "cities.xml";
  76 
  77         try (FileOutputStream fos = new FileOutputStream(outputFile)) {
  78             XMLReader reader = XMLReaderFactory.createXMLReader();
  79             SAXTransformerFactory saxTFactory
  80                     = (SAXTransformerFactory)TransformerFactory.newInstance();
  81             DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
  82             dbf.setNamespaceAware(true);
  83             DocumentBuilder docBuilder = dbf.newDocumentBuilder();
  84             Document document = docBuilder.parse(new File(xsltFile));
  85             Node node = (Node)document;
  86             DOMSource domSource= new DOMSource(node);
  87 
  88             domSource.setSystemId("file:///" + XML_DIR);
  89 
  90             TransformerHandler handler =
  91                         saxTFactory.newTransformerHandler(domSource);
  92             Result result = new StreamResult(fos);
  93 
  94             handler.setResult(result);
  95             reader.setContentHandler(handler);
  96             reader.parse(xmlFile);
  97         }
  98         assertTrue(compareWithGold(goldFile, outputFile));
  99     }
 100 }