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 6940416
  46  * @summary Test transforming correctly.
  47  */
  48 public class Bug6940416 {
  49 
  50     @Test
  51     public void test() {
  52         String xslFilename = getClass().getResource("ViewEditor1.xsl").getFile();
  53         String inFilename = getClass().getResource("in.xml").getFile();
  54         // String outFilename =
  55         // getClass().getResource("out-6u17.xml").getFile();
  56         // the xml result
  57         StringWriter xmlResultString = new StringWriter();
  58         try {
  59             // Create transformer factory
  60             TransformerFactory factory = TransformerFactory.newInstance();
  61             factory.setAttribute("debug", true);
  62             // Use the factory to create a template containing the xsl file
  63             Templates template = factory.newTemplates(new StreamSource(new FileInputStream(xslFilename)));
  64             // Use the template to create a transformer
  65             Transformer xformer = template.newTransformer();
  66             // Prepare the input and output files
  67             Source source = new StreamSource(new FileInputStream(inFilename));
  68             // Result result = new StreamResult(new
  69             // FileOutputStream(outFilename));
  70             Result result = new StreamResult(xmlResultString);
  71             // Apply the xsl file to the source file and write the result to the
  72             // output file
  73             xformer.transform(source, result);
  74 
  75             // 6u17 results contain the following:
  76             /**
  77              * var g_strInitialTabID = "VIEWEDITOR_TAB_FIELDS";
  78              *
  79              * var g_strCurrentDataEditorTabID = "DATA_OBJECTS"; var
  80              * g_strCurrentPropertyEditorTabID = "VIEWEDITOR_TAB_GENERAL";
  81              *
  82              * while 6u18: var g_strInitialTabID = "";
  83              *
  84              * var g_strCurrentDataEditorTabID = ""; var
  85              * g_strCurrentPropertyEditorTabID = "VIEWEDITOR_TAB_GENERAL";
  86              */
  87             System.out.println(xmlResultString.toString());
  88             if (xmlResultString.toString().indexOf("VIEWEDITOR_TAB_FIELDS") == -1) {
  89                 Assert.fail("regression from 6u17");
  90             }
  91         } catch (FileNotFoundException e) {
  92             e.printStackTrace();
  93             Assert.fail(e.toString());
  94         } catch (TransformerConfigurationException e) {
  95             // An error occurred in the XSL file
  96             e.printStackTrace();
  97             Assert.fail(e.toString());
  98         } catch (TransformerException e) {
  99             e.printStackTrace();
 100             // An error occurred while applying the XSL file
 101             // Get location of error in input file
 102             SourceLocator locator = e.getLocator();
 103             int col = locator.getColumnNumber();
 104             int line = locator.getLineNumber();
 105             String publicId = locator.getPublicId();
 106             String systemId = locator.getSystemId();
 107             Assert.fail("error while applying the XSL file." + "systemId : " + systemId + ". publicId : " + publicId + ". col : " + col + ". line : " + line);
 108         }
 109     }
 110 
 111 }