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