/* * 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$ */ /* * * ThreadedStylesheetDatalet.java * */ package org.apache.qetest.xsl; import java.util.Hashtable; import java.util.Properties; import org.apache.qetest.Datalet; import org.apache.qetest.xslwrapper.TransformWrapper; /** * Datalet for conformance testing of xsl stylesheet files. * Used specifically in multi-threaded tests. Allows a user * to specify both a normal set of inputs (inputName, xmlName, * etc.) as well as a second set - usually a Transformer * object (which is threadsafe) and an xmlName2 to use with it. * * //@todo see if we should subclass StylesheetDatalet or not? * @author Shane_Curcuru@lotus.com * @version $Id$ */ public class ThreadedStylesheetDatalet implements Datalet { //// Items associated with the normal test /** URL of the stylesheet; default:.../identity.xsl. */ public String inputName = "tests/api/trax/identity.xsl"; /** URL of the xml document; default:.../identity.xml. */ public String xmlName = "tests/api/trax/identity.xml"; /** URL to put output into; default:ThreadedStylesheetDatalet.out. */ public String outputName = "ThreadedStylesheetDatalet.out"; /** URL of the a gold file or data; default:.../identity.out. */ public String goldName = "tests/api-gold/trax/identity.out"; /** * Templates object to use for second transform; default: NONE * The Templates object is wrapped inside a TransformWrapper * since that allows us to use a shared TransformWrapper that * encapsulates a flavor and performance measurements as well. * Note: this must be set by the user, otherwise it will * be ignored. The inputName parameter is still provided so * users can supply optional systemId of the stylesheet. */ public TransformWrapper transformWrapper = null; /** Number of times to loop for each thread; default: 10. */ public int iterations = 10; /** * If we should force any local path\filenames to URLs. * Note: This is not really the best place for this, but * since it works with Xerces and Crimson and Xalan, it's * good enough for now. * Not currently settable by user; default:true */ public boolean useURL = true; /** * Generic placeholder for any additional options. * I'm still undecided if I like this idea or not. * This allows ThreadedStylesheetDatalets to support additional kinds * of tests, like performance tests, without having to change * this data model. These options can serve as a catch-all * for any new properties or options or what-not that new * tests need, without having to change how the most basic * member variables here work. * Note that while this needs to be a Properties object to * take advantage of the parent/default behavior in * getProperty(), this doesn't necessarily mean they can only * store Strings. */ public Properties options = new Properties(); /** Description of what this Datalet tests. */ protected String description = "ThreadedStylesheetDatalet: String inputName, String xmlName, String outputName, String goldName, String flavor; plus second Templates object"; /** * No argument constructor is a no-op. */ public ThreadedStylesheetDatalet() { /* no-op */ } /** * Initialize this datalet from a string, perhaps from * a command line. * We will parse the command line with whitespace and fill * in our member variables in order: *
inputName, xmlName, outputName, goldName, flavor
, * if there are too few tokens, remaining variables will default. */ public ThreadedStylesheetDatalet(String args) { load(args); } /** * Accesor method for a brief description of this Datalet. * * @return String describing the specific set of data * this Datalet contains (can often be used as the description * of any check() calls made from the Testlet). */ public String getDescription() { return description; } /** * Accesor method for a brief description of this Datalet. * * @param s description to use for this Datalet. */ public void setDescription(String s) { description = s; } /** * Load fields of this Datalet from a Hashtable. * Caller must provide data for all of our fields. * Note: this call also fills in info about the second * Templates, etc. object as well. * //@todo design decision: only have load(Hashtable) * or load(Properties), not both. * * @param Hashtable to load */ public void load(Hashtable h) { if (null == h) return; //@todo should this have a return val or exception? inputName = (String)h.get("inputName"); xmlName = (String)h.get("xmlName"); outputName = (String)h.get("outputName"); goldName = (String)h.get("goldName"); transformWrapper = (TransformWrapper)h.get("transformWrapper"); } /** * Load fields of this Datalet from a Properties. * Caller must provide data for all of our fields. * Note: this call also fills in info about the second * Templates, etc. object as well. * //@todo design decision: only have load(Hashtable) * or load(Properties), not both. * * @param Hashtable to load */ public void load(Properties p) { if (null == p) return; //@todo should this have a return val or exception? inputName = (String)p.getProperty("inputName"); xmlName = (String)p.getProperty("xmlName"); outputName = (String)p.getProperty("outputName"); goldName = (String)p.getProperty("goldName"); // Also set our internal options to default to this Properties options = new Properties(p); // Also set our second set of templates transformWrapper = (TransformWrapper)p.get("transformWrapper"); } /** * Load fields of this Datalet from a String. * NOT IMPLEMENTED! No easy way to load the Templates from string. * * @param s String to load */ public void load(String s) { throw new RuntimeException("ThreadedStylesheetDatalet.load(String) not implemented!"); } /** * Load fields of this Datalet from a String[]. * NOT IMPLEMENTED! No easy way to load the Templates from string. * * @param s String array to load */ public void load(String[] s) { throw new RuntimeException("ThreadedStylesheetDatalet.load(String[]) not implemented!"); } } // end of class ThreadedStylesheetDatalet