< prev index next >

test/javax/xml/jaxp/unittest/transform/CR6957215Test.java

Print this page


   1 /*
   2  * Copyright (c) 2014, 2015, 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 transform;
  25 
  26 import java.io.FileInputStream;
  27 import java.io.FileNotFoundException;
  28 import java.io.StringWriter;
  29 
  30 import javax.xml.transform.Result;
  31 import javax.xml.transform.Source;
  32 import javax.xml.transform.SourceLocator;
  33 import javax.xml.transform.Templates;
  34 import javax.xml.transform.Transformer;
  35 import javax.xml.transform.TransformerConfigurationException;
  36 import javax.xml.transform.TransformerException;
  37 import javax.xml.transform.TransformerFactory;
  38 import javax.xml.transform.stream.StreamResult;
  39 import javax.xml.transform.stream.StreamSource;
  40 
  41 import org.testng.Assert;

  42 import org.testng.annotations.Test;
  43 
  44 /*
  45  * @bug 6957215
  46  * @summary Test XSLT generates the element content using xsl:attribute instructions.
  47  */

  48 public class CR6957215Test {
  49 
  50     @Test
  51     public final void testTransform() {
  52         xsl(getClass().getResource("CR6957215.xml").getFile(), getClass().getResource("CR6957215.xsl").getFile());
  53     }
  54 
  55     public static void xsl(String inFilename, String xslFilename) {
  56         try {
  57             // Create transformer factory
  58             TransformerFactory factory = TransformerFactory.newInstance();
  59 
  60             // Use the factory to create a template containing the xsl file
  61             Templates template = factory.newTemplates(new StreamSource(new FileInputStream(xslFilename)));
  62 
  63             // Use the template to create a transformer
  64             Transformer xformer = template.newTransformer();
  65 
  66             // Prepare the input and output files
  67             Source source = new StreamSource(new FileInputStream(inFilename));


   1 /*
   2  * Copyright (c) 2014, 2016, 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 transform;
  25 
  26 import java.io.FileInputStream;
  27 import java.io.FileNotFoundException;
  28 import java.io.StringWriter;
  29 
  30 import javax.xml.transform.Result;
  31 import javax.xml.transform.Source;
  32 import javax.xml.transform.SourceLocator;
  33 import javax.xml.transform.Templates;
  34 import javax.xml.transform.Transformer;
  35 import javax.xml.transform.TransformerConfigurationException;
  36 import javax.xml.transform.TransformerException;
  37 import javax.xml.transform.TransformerFactory;
  38 import javax.xml.transform.stream.StreamResult;
  39 import javax.xml.transform.stream.StreamSource;
  40 
  41 import org.testng.Assert;
  42 import org.testng.annotations.Listeners;
  43 import org.testng.annotations.Test;
  44 
  45 /*
  46  * @bug 6957215
  47  * @summary Test XSLT generates the element content using xsl:attribute instructions.
  48  */
  49 @Listeners({jaxp.library.FilePolicy.class})
  50 public class CR6957215Test {
  51 
  52     @Test
  53     public final void testTransform() {
  54         xsl(getClass().getResource("CR6957215.xml").getFile(), getClass().getResource("CR6957215.xsl").getFile());
  55     }
  56 
  57     public static void xsl(String inFilename, String xslFilename) {
  58         try {
  59             // Create transformer factory
  60             TransformerFactory factory = TransformerFactory.newInstance();
  61 
  62             // Use the factory to create a template containing the xsl file
  63             Templates template = factory.newTemplates(new StreamSource(new FileInputStream(xslFilename)));
  64 
  65             // Use the template to create a transformer
  66             Transformer xformer = template.newTransformer();
  67 
  68             // Prepare the input and output files
  69             Source source = new StreamSource(new FileInputStream(inFilename));


< prev index next >