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 
  24 package javax.xml.transform.ptests;
  25 
  26 import java.io.FileOutputStream;
  27 import java.io.IOException;
  28 import java.nio.file.Files;
  29 import java.nio.file.Path;
  30 import java.nio.file.Paths;
  31 import javax.xml.transform.Result;
  32 import javax.xml.transform.TransformerConfigurationException;
  33 import javax.xml.transform.TransformerFactory;
  34 import static javax.xml.transform.ptests.TransformerTestConst.CLASS_DIR;
  35 import static javax.xml.transform.ptests.TransformerTestConst.GOLDEN_DIR;
  36 import static javax.xml.transform.ptests.TransformerTestConst.XML_DIR;
  37 import javax.xml.transform.sax.SAXTransformerFactory;
  38 import javax.xml.transform.sax.TransformerHandler;
  39 import javax.xml.transform.stream.StreamResult;
  40 import javax.xml.transform.stream.StreamSource;
  41 import static jaxp.library.JAXPTestUtilities.compareWithGold;
  42 import static jaxp.library.JAXPTestUtilities.failCleanup;
  43 import static jaxp.library.JAXPTestUtilities.failUnexpected;
  44 import static org.testng.Assert.assertTrue;
  45 import org.testng.annotations.Test;
  46 import org.xml.sax.SAXException;
  47 import org.xml.sax.XMLReader;
  48 import org.xml.sax.helpers.XMLReaderFactory;
  49 
  50 /**
  51  * Test newTransformerhandler() method which takes StreamSource as argument can
  52  * be set to XMLReader.
  53  */
  54 public class SAXTFactoryTest001 {
  55     /**
  56      * SAXTFactory.newTransformerhandler() method which takes SAXSource as
  57      * argument can be set to XMLReader. SAXSource has input XML file as its
  58      * input source. XMLReader has a transformer handler which write out the
  59      * result to output file. Test verifies output file is same as golden file.
  60      */
  61     @Test
  62     public void testcase01() {
  63         String outputFile = CLASS_DIR + "saxtf001.out";
  64         String goldFile = GOLDEN_DIR + "saxtf001GF.out";
  65         String xsltFile = XML_DIR + "cities.xsl";
  66         String xmlFile = XML_DIR + "cities.xml";
  67 
  68         try (FileOutputStream fos = new FileOutputStream(outputFile)) {
  69             XMLReader reader = XMLReaderFactory.createXMLReader();
  70             SAXTransformerFactory saxTFactory
  71                     = (SAXTransformerFactory) TransformerFactory.newInstance();
  72             TransformerHandler handler = saxTFactory.newTransformerHandler(
  73                     new StreamSource(xsltFile));
  74             Result result = new StreamResult(fos);
  75             handler.setResult(result);
  76             reader.setContentHandler(handler);
  77             reader.parse(xmlFile);
  78             assertTrue(compareWithGold(goldFile, outputFile));
  79         } catch (SAXException | TransformerConfigurationException | IOException ex) {
  80             failUnexpected(ex);
  81         } finally {
  82             try {
  83                 Path outputPath = Paths.get(outputFile);
  84                 if(Files.exists(outputPath))
  85                     Files.delete(outputPath);
  86             } catch (IOException ex) {
  87                 failCleanup(ex, outputFile);
  88             }
  89         }
  90     }
  91 }