/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* * $Id$ */ /* * * StylesheetTestletLocalPaths.java * */ package org.apache.qetest.xsl; import java.io.File; import java.io.PrintWriter; import java.io.StringWriter; import java.util.Hashtable; import org.apache.qetest.CheckService; import org.apache.qetest.Datalet; import org.apache.qetest.Logger; import org.apache.qetest.TestletImpl; import org.apache.qetest.xslwrapper.TransformWrapper; import org.apache.qetest.xslwrapper.TransformWrapperFactory; /** * Testlet for conformance testing of xsl stylesheet files. * * HACK: Forces use of local pathnames. * * This class provides the testing algorithim used for verifying * Xalan's conformance to the XSLT spec. It works in conjunction * with StylesheetTestletLocalPathsDriver, which supplies the logic for * choosing the testfiles to iterate over, and with * TransformWrapper, which provides an XSL processor- and * method-independent way to process files (i.e. different * flavors of TransformWrapper may be different products, as well * as different processing models, like SAX, DOM or Streams). * * @author Shane_Curcuru@lotus.com * @version $Id$ */ public class StylesheetTestletLocalPaths extends TestletImpl { // Initialize our classname for TestletImpl's main() method static { thisClassName = "org.apache.qetest.xsl.StylesheetTestletLocalPaths"; } // Initialize our defaultDatalet { defaultDatalet = (Datalet)new StylesheetDatalet(); } /** * Accesor method for a brief description of this test. * * @return String describing what this StylesheetTestletLocalPaths does. */ public String getDescription() { return "StylesheetTestletLocalPaths"; } /** * Run this StylesheetTestletLocalPaths: execute it's test and return. * * @param Datalet to use as data point for the test. */ public void execute(Datalet d) { StylesheetDatalet datalet = null; try { datalet = (StylesheetDatalet)d; } catch (ClassCastException e) { logger.checkErr("Datalet provided is not a StylesheetDatalet; cannot continue with " + d); return; } logger.logMsg(Logger.STATUSMSG, "About to test: " + (null == datalet.inputName ? datalet.xmlName : datalet.inputName)); //@todo validate our Datalet - ensure it has valid // and/or existing files available. // Cleanup outName only if asked to - delete the file on disk // Optimization: this takes extra time and often is not // needed, so only do this if the option is set if ("true".equalsIgnoreCase(datalet.options.getProperty("deleteOutFile"))) { try { boolean btmp = (new File(datalet.outputName)).delete(); logger.logMsg(Logger.TRACEMSG, "Deleting OutFile of::" + datalet.outputName + " status: " + btmp); } catch (SecurityException se) { logger.logMsg(Logger.WARNINGMSG, "Deleting OutFile of::" + datalet.outputName + " threw: " + se.toString()); // But continue anyways... } } // Create a new TransformWrapper of appropriate flavor // null arg is unused liaison for TransformWrapper //@todo allow user to pass in pre-created // TransformWrapper so we don't have lots of objects // created and destroyed for every file TransformWrapper transformWrapper = null; try { transformWrapper = TransformWrapperFactory.newWrapper(datalet.flavor); transformWrapper.newProcessor(null); } catch (Throwable t) { logThrowable(t, getDescription() + " newWrapper/newProcessor threw"); logger.checkErr(getDescription() + " newWrapper/newProcessor threw: " + t.toString()); return; } // Test our supplied input file, and compare with gold try { // Store local copies of XSL, XML references for // potential change to URLs String inputName = datalet.inputName; String xmlName = datalet.xmlName; // * HACK: Forces use of local pathnames. //@todo Should we log a custom logElement here instead? logger.logMsg(Logger.TRACEMSG, "executing with: inputName=" + inputName + " xmlName=" + xmlName + " outputName=" + datalet.outputName + " goldName=" + datalet.goldName + " flavor=" + datalet.flavor); // Simply have the wrapper do all the transforming // or processing for us - we handle either normal .xsl // stylesheet tests or just .xml embedded tests long retVal = 0L; if (null == datalet.inputName) { // presume it's an embedded test long [] times = transformWrapper.transformEmbedded(xmlName, datalet.outputName); retVal = times[TransformWrapper.IDX_OVERALL]; } else { // presume it's a normal stylesheet test long[] times = transformWrapper.transform(xmlName, inputName, datalet.outputName); retVal = times[TransformWrapper.IDX_OVERALL]; } // If we get here, attempt to validate the contents of // the last outputFile created CheckService fileChecker = (CheckService)datalet.options.get("fileCheckerImpl"); // Supply default value if (null == fileChecker) fileChecker = new XHTFileCheckService(); if (Logger.PASS_RESULT != fileChecker.check(logger, new File(datalet.outputName), new File(datalet.goldName), getDescription() + " " + datalet.getDescription()) ) { // Log a custom element with all the file refs first // Closely related to viewResults.xsl select='fileref" //@todo check that these links are valid when base // paths are either relative or absolute! Hashtable attrs = new Hashtable(); attrs.put("idref", (new File(datalet.inputName)).getName()); attrs.put("inputName", datalet.inputName); attrs.put("xmlName", datalet.xmlName); attrs.put("outputName", datalet.outputName); attrs.put("goldName", datalet.goldName); logger.logElement(Logger.STATUSMSG, "fileref", attrs, "Conformance test file references"); // Then log the failure reason logger.logArbitrary(Logger.STATUSMSG, (new File(datalet.inputName)).getName() + " failure reason: " + fileChecker.getExtendedInfo()); } } // Note that this class can only validate positive test // cases - we don't handle ExpectedExceptions catch (Throwable t) { // Put the logThrowable first, so it appears before // the Fail record, and gets color-coded logThrowable(t, getDescription() + " " + datalet.getDescription()); logger.checkFail(getDescription() + " " + datalet.getDescription() + " threw: " + t.toString()); return; } } /** * Logs out throwable.toString() and stack trace to our Logger. * //@todo Copied from Reporter; should probably be moved into Logger. * @param throwable thrown throwable/exception to log out. * @param msg description of the throwable. */ protected void logThrowable(Throwable throwable, String msg) { StringWriter sWriter = new StringWriter(); sWriter.write(msg + "\n"); PrintWriter pWriter = new PrintWriter(sWriter); throwable.printStackTrace(pWriter); logger.logArbitrary(Logger.STATUSMSG, sWriter.toString()); } } // end of class StylesheetTestletLocalPaths