blob: 5fd99782614e29dd04daa162c406b3a0d3206e33 [file] [log] [blame]
#!/bin/sh
#
#=========================================================================
# Copyright 2000-2004 The Apache Software Foundation.
#
# Licensed 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.
#=========================================================================
#
# Name: viewResults.sh
# Author: Shane Curcuru
echo viewResults.sh beginning...
if [ "$JAVA_HOME" = "" ] ; then
echo You must set JAVA_HOME, sorry!
exit 1
fi
if [ "$1" = "-h" ] ; then
echo viewResults.sh - transforms a result.xml into results.html
echo Usage: viewResults results/MyTest.xml [MyResults.html [options]]
echo Example: viewResults results-api/APITest.xml APITestResults.html -loggingLevel 99
echo Notes/prerequisites:
echo - java.exe must be in JAVAHOME/bin or in the path;
exit 1
fi
# Default to xercesImpl.jar
PARSER_JAR=xercesImpl.jar
# Check if we should use crimson.jar instead
if [ "$1" = "-crimson" ] ; then
PARSER_JAR=crimson.jar
shift
JAVA_OPTS="-Djavax.xml.parsers.DocumentBuilderFactory=org.apache.crimson.jaxp.DocumentBuilderFactoryImpl -D=org.apache.crimson.jaxp.SAXParserFactoryImpl $JAVA_OPTS"
fi
# Set classpath for our use based on JARDIR
# prepend JARDIR-referenced jars to classpath
TEST_CP="$JARDIR/$PARSER_JAR:$JARDIR/xalan.jar:$JARDIR/serializer.jar:$CLASSPATH"
RIN=$1
shift
ROUT=$1
shift
if [ "$ROUT" = "" ] ; then
ROUT=results.html
fi
XSLFILE=$RESULTSCANNER
if [ "$XSLFILE" = "" ] ; then
XSLFILE=viewResults.xsl
fi
echo Transforming Results: $RIN into $ROUT
echo "$JAVA_HOME"/bin/java $JAVA_OPTS -classpath "$TEST_CP" org.apache.xalan.xslt.Process -in "$RIN" -xsl "$XSLFILE" -out "$ROUT" $@
"$JAVA_HOME"/bin/java $JAVA_OPTS -classpath "$TEST_CP" org.apache.xalan.xslt.Process -in "$RIN" -xsl "$XSLFILE" -out "$ROUT" $@
echo viewResults.sh complete!