1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
|
#!/bin/bash
# $Id: //open/dev/farrago/junitSingle#22 $
# Farrago is an extensible data management system.
# Copyright (C) 2005-2009 The Eigenbase Project
# Copyright (C) 2005-2009 SQLstream, Inc.
# Copyright (C) 2005-2009 LucidEra, Inc.
# Portions Copyright (C) 2003-2009 John V. Sichi
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later Eigenbase-approved version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA
function usage
{
echo "junitSingle [options] TEST [TARGET]"
echo
echo "Run a single Junit test case,"
echo "where TEST is:"
echo " - the fully-qualified name of a test class"
echo " e.g. com.sqlstream.aspen.test.jdbc.Main"
echo " Unqualified test classes are assumed to live in package"
echo " net.sf.farrago.test, or ${EIGEN_TEST_DEFAULT_PACKAGE} if it"
echo " is set."
echo " - or the relative path to a SQL test"
echo " e.g. unitsql/jdbc/metadata.sql"
echo " - or the pseudo-test 'UNITSQL' to run all SQL unit tests"
echo " defined by 'fileset.unitsql' in build.xml"
echo " - or the pseudo-test 'MTSQL' to run all concurrent SQL tests"
echo " defined by 'fileset.concurrentsql' in build.xml"
echo
echo "and TARGET is a target in build.xml (default 'junit')."
echo " Use "junit.client" target to run test through client driver,"
echo " e.g. ./junitSingle unitsql/jdbc/metadata.sql junit.client"
echo
echo "Options:"
echo " -n no-op "
echo " -e echo command before executing it"
echo " -g debug test with jswat"
echo " -v pass -v flag to ant"
echo " --repeat Run the test repeatedly until it fails"
echo " --[no]build Whether to compile first. Default is to not compile."
echo " --help Print this help"
}
# Parse flags
once=true
build=false
help=false
nope=false
echoCmd=false
swat=false
ANT=ant
while [ $# -gt 0 ]; do
case "$1" in
-n) nope=true; shift ;;
-e) echoCmd=true; shift ;;
-g) swat=true; shift ;;
-v) ANT="ant -v"; shift ;;
-repeat|--repeat) once=false; shift ;;
--build) build=true; shift ;;
--nobuild) build=false; shift ;;
--help) help=true; shift ;;
*) break
esac
done
if $help; then
usage
exit 0
fi
if [ ! "$1" ]; then
echo "Error: specify a .sql or .java filename or a test class name";
usage
exit 1
fi
test=$1
utarget=$2
if [ ! "$EIGEN_TEST_DEFAULT_PACKAGE" ]; then
EIGEN_TEST_DEFAULT_PACKAGE=net.sf.farrago.test
fi
function chooseTarget
{
if [ "$utarget" ]; then
target="$utarget"
else
if $swat; then
target=jswat.junit
else
target=junit
fi
if $build; then
target="all $target"
else
:
fi
fi
}
function chooseCommand
{
chooseTarget
if [ -e "$test" -a ${test:0-5} == ".java" ]; then
# Interpret the argument as the name of a java source file.
# Convert it to the name of a java class.
# For example, "src/com/acme/foo/Bar.java" becomes "com.acme.foo.Bar".
junit_class=$(awk '
/^package / {
p = substr($2,0,length($2)-1);
}
/^public.* class / {
for (i = 1; i <= NF; i++) {
if ($i == "class") {
c = $(i+1);
print p "." c;
exit;
}
}
}' "$test")
command="$ANT -Djunit.class=$junit_class -Dfileset.unitsql='' $target"
elif [ -e "$test" ]; then
# Interpret the argument as the name of a script to run
# Assume unitsql tests
junit_class=net.sf.farrago.test.FarragoSqlTest
fileset=fileset.unitsql
nullfilesets="-Dfileset.regressionsql='' -Dfileset.concurrentsql='' -Dfileset.unitlurql=''"
# if we're running regressionsql tests, use the right class and ant target
if [ ${test/*regressionsql*/x} == "x" ]; then
if [ "$target" == "jswat.junit" ]; then
# REVIEW: it needs a jswat.junit.regressionsql target that sets
# the necessary system properties for regressionsql tests.
echo "build.xml does not support jswat on regressionsql"
exit 1;
fi
target=regressionWithoutBuild
junit_class=net.sf.farrago.test.regression.FarragoSqlRegressionTest
fileset=fileset.regressionsql
nullfilesets="-Dfileset.unitsql='' -Dfileset.concurrentsql='' -Dfileset.unitlurql=''"
elif [ ${test:0-6} == ".mtsql" ]; then
if [ "$target" == "jswat.junit" ]; then
# REVIEW: it needs a jswat.junit.regressionsql target that sets
# the necessary system properties for regressionsql tests.
echo "build.xml does not support jswat on regressionsql"
exit 1;
fi
target=regressionWithoutBuild
junit_class=net.sf.farrago.test.concurrent.FarragoTestConcurrentTest
fileset=fileset.concurrentsql
nullfilesets="-Dfileset.unitsql='' -Dfileset.regressionsql='' -Dfileset.unitlurql=''"
elif [ ${test:0-6} == ".lurql" ]; then
junit_class=net.sf.farrago.test.LurqlQueryTest
fileset=fileset.unitlurql
nullfilesets="-Dfileset.unitsql='' -Dfileset.regressionsql='' -Dfileset.concurrentsql=''"
fi
command="$ANT -Djunit.class=$junit_class $nullfilesets -D$fileset=$test $target"
else
# Interpret the argument as the name of a test case
if [ -z `echo $test | grep '\.'` ]; then
test=$EIGEN_TEST_DEFAULT_PACKAGE.$test
fi
nullfilesets="-Dfileset.unitsql='' -Dfileset.regressionsql='' -Dfileset.concurrentsql='' -Dfileset.unitlurql=''"
command="$ANT -Djunit.class=$test $nullfilesets $target"
fi
}
chooseCommand
if $echoCmd; then
echo $command
fi
if $nope; then
exit 0;
fi
if $once; then
$command;
else
count=1
echo ::: Execution $count started at `date`
while $command; do
# no sense building more than once
if $build; then
build=false
chooseCommand
fi
let count++;
echo ::: Execution $count started at `date`
done
echo Failed on execution $count
exit 1;
fi
# End junitSingle
|