< prev index next >

test/javax/xml/jaxp/functional/javax/xml/transform/ptests/SAXTFactoryTest013.java

Print this page




   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.FileInputStream;
  26 import java.io.IOException;
  27 import java.nio.file.Files;
  28 import java.nio.file.Path;
  29 import java.nio.file.Paths;
  30 import javax.xml.transform.TransformerConfigurationException;
  31 import javax.xml.transform.TransformerFactory;
  32 import static javax.xml.transform.ptests.TransformerTestConst.CLASS_DIR;
  33 import static javax.xml.transform.ptests.TransformerTestConst.GOLDEN_DIR;
  34 import static javax.xml.transform.ptests.TransformerTestConst.XML_DIR;
  35 import javax.xml.transform.sax.SAXTransformerFactory;
  36 import javax.xml.transform.sax.TemplatesHandler;

  37 import static jaxp.library.JAXPTestUtilities.compareWithGold;
  38 import static jaxp.library.JAXPTestUtilities.failCleanup;
  39 import static jaxp.library.JAXPTestUtilities.failUnexpected;
  40 import static org.testng.Assert.assertTrue;
  41 import org.testng.annotations.Test;
  42 import org.xml.sax.InputSource;
  43 import org.xml.sax.SAXException;
  44 import org.xml.sax.XMLFilter;
  45 import org.xml.sax.XMLReader;
  46 import org.xml.sax.helpers.XMLReaderFactory;
  47 
  48 /**
  49  * Test XMLFilter parse InputSource along with TemplatesHandler.
  50  */
  51 public class SAXTFactoryTest013 {
  52     /**
  53      * Unit test for TemplatesHandler setter/getter.







  54      */
  55     @Test
  56     public  void testcase01() {

  57         String outputFile = CLASS_DIR + "saxtf013.out";
  58         String goldFile = GOLDEN_DIR + "saxtf013GF.out";
  59         String xsltFile = XML_DIR + "cities.xsl";
  60         String xmlFile = XML_DIR + "cities.xml";
  61 
  62         try {
  63             // The transformer will use a SAX parser as it's reader.
  64             XMLReader reader = XMLReaderFactory.createXMLReader();
  65 
  66             SAXTransformerFactory saxTFactory
  67                     = (SAXTransformerFactory) TransformerFactory.newInstance();
  68             TemplatesHandler thandler = saxTFactory.newTemplatesHandler();
  69             // I have put this as it was complaining about systemid
  70             thandler.setSystemId("file:///" + CLASS_DIR);
  71 
  72             reader.setContentHandler(thandler);
  73             reader.parse(xsltFile);
  74             XMLFilter filter
  75                     = saxTFactory.newXMLFilter(thandler.getTemplates());
  76             filter.setParent(reader);
  77 
  78             filter.setContentHandler(
  79                     new MyContentHandler(outputFile));
  80             filter.parse(new InputSource(new FileInputStream(xmlFile)));
  81             assertTrue(compareWithGold(goldFile, outputFile));
  82         } catch (SAXException | IOException | TransformerConfigurationException ex) {
  83             failUnexpected(ex);
  84         } finally {
  85             try {
  86                 Path outputPath = Paths.get(outputFile);
  87                 if(Files.exists(outputPath))
  88                     Files.delete(outputPath);
  89             } catch (IOException ex) {
  90                 failCleanup(ex, outputFile);
  91             }
  92         }

  93     }
  94 }


   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.FileInputStream;
  26 import java.io.IOException;



  27 import javax.xml.transform.TransformerConfigurationException;
  28 import javax.xml.transform.TransformerFactory;
  29 import static javax.xml.transform.ptests.TransformerTestConst.CLASS_DIR;
  30 import static javax.xml.transform.ptests.TransformerTestConst.GOLDEN_DIR;
  31 import static javax.xml.transform.ptests.TransformerTestConst.XML_DIR;
  32 import javax.xml.transform.sax.SAXTransformerFactory;
  33 import javax.xml.transform.sax.TemplatesHandler;
  34 import jaxp.library.JAXPFileBaseTest;
  35 import static jaxp.library.JAXPTestUtilities.compareWithGold;


  36 import static org.testng.Assert.assertTrue;
  37 import org.testng.annotations.Test;
  38 import org.xml.sax.InputSource;
  39 import org.xml.sax.SAXException;
  40 import org.xml.sax.XMLFilter;
  41 import org.xml.sax.XMLReader;
  42 import org.xml.sax.helpers.XMLReaderFactory;
  43 
  44 /**
  45  * Test XMLFilter parse InputSource along with TemplatesHandler.
  46  */
  47 public class SAXTFactoryTest013 extends JAXPFileBaseTest {
  48     /**
  49      * Unit test for TemplatesHandler setter/getter.
  50      * 
  51      * @throws SAXException If any parse errors occur.
  52      * @throws IOException if the file exists but is a directory rather than
  53      *         a regular file, does not exist but cannot be created, or cannot 
  54      *         be opened for any other reason.
  55      * @throws TransformerConfigurationException If for some reason the
  56      *         TransformerHandler can not be created.
  57      */
  58     @Test
  59     public void testcase01() throws IOException, SAXException, 
  60             TransformerConfigurationException {
  61         String outputFile = CLASS_DIR + "saxtf013.out";
  62         String goldFile = GOLDEN_DIR + "saxtf013GF.out";
  63         String xsltFile = XML_DIR + "cities.xsl";
  64         String xmlFile = XML_DIR + "cities.xml";
  65         try(FileInputStream fis = new FileInputStream(xmlFile)) {

  66             // The transformer will use a SAX parser as it's reader.
  67             XMLReader reader = XMLReaderFactory.createXMLReader();
  68 
  69             SAXTransformerFactory saxTFactory
  70                     = (SAXTransformerFactory) TransformerFactory.newInstance();
  71             TemplatesHandler thandler = saxTFactory.newTemplatesHandler();
  72             // I have put this as it was complaining about systemid
  73             thandler.setSystemId("file:///" + CLASS_DIR);
  74 
  75             reader.setContentHandler(thandler);
  76             reader.parse(xsltFile);
  77             XMLFilter filter
  78                     = saxTFactory.newXMLFilter(thandler.getTemplates());
  79             filter.setParent(reader);
  80 
  81             filter.setContentHandler(new MyContentHandler(outputFile));
  82             filter.parse(new InputSource(fis));












  83         }
  84         assertTrue(compareWithGold(goldFile, outputFile));
  85     }
  86 }
< prev index next >