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));
  70 
  71             StringWriter strResult = new StringWriter();
  72             Result result = new StreamResult(strResult);
  73 
  74             // Apply the xsl file to the source file and write the result to the
  75             // output file
  76             xformer.transform(source, result);
  77             String resultString = strResult.toString();
  78             System.out.println(resultString);
  79             if (resultString.indexOf("aaa-ref/") > 0)
  80                 Assert.fail("missing attributes");
  81         } catch (FileNotFoundException e) {
  82             e.printStackTrace();
  83         } catch (TransformerConfigurationException e) {
  84             // An error occurred in the XSL file
  85             e.printStackTrace();
  86         } catch (TransformerException e) {
  87             e.printStackTrace();
  88             // An error occurred while applying the XSL file
  89             // Get location of error in input file
  90             SourceLocator locator = e.getLocator();
  91             int col = locator.getColumnNumber();
  92             int line = locator.getLineNumber();
  93             String publicId = locator.getPublicId();
  94             String systemId = locator.getSystemId();
  95         }
  96     }
  97 }