openldap/tests/run.in

176 lines
3.6 KiB
Plaintext
Raw Normal View History

#!/bin/sh
2003-12-01 08:19:13 +08:00
# $OpenLDAP$
2003-11-29 04:00:23 +08:00
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
2004-01-02 03:15:16 +08:00
## Copyright 1998-2004 The OpenLDAP Foundation.
2003-11-29 04:00:23 +08:00
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
## modification, are permitted only as authorized by the OpenLDAP
## Public License.
##
## A copy of this license is available in the file LICENSE in the
## top-level directory of the distribution or, alternatively, at
## <http://www.OpenLDAP.org/license.html>.
USAGE="$0 [-b <backend>] [-c] [-k] [-p] [-u] [-w] <script>"
# configure generated
SRCDIR="@srcdir@"
TOPSRCDIR="@top_srcdir@"
LN_S="@LN_S@"
export SRCDIR TOPSRCDIR LN_S
# backends
2003-12-04 05:52:07 +08:00
AC_bdb=@BUILD_BDB@
AC_hdb=@BUILD_HDB@
AC_ldap=ldap@BUILD_LDAP@
AC_ldbm=@BUILD_LDBM@
AC_monitor=@BUILD_MONITOR@
2004-07-12 08:19:15 +08:00
AC_relay=relay@BUILD_RELAY@
AC_sql=sql@BUILD_SQL@
# overlays
AC_glue=glue@BUILD_GLUE@
2003-12-06 19:46:26 +08:00
AC_pcache=pcache@BUILD_PROXYCACHE@
AC_ppolicy=ppolicy@BUILD_PPOLICY@
AC_refint=refint@BUILD_REFINT@
AC_unique=unique@BUILD_UNIQUE@
2004-07-12 08:19:15 +08:00
AC_rwm=rwm@BUILD_RWM@
AC_syncprov=syncprov@BUILD_SYNCPROV@
# misc
2004-06-19 18:05:07 +08:00
AC_WITH_SASL=@WITH_SASL@
AC_WITH_TLS=@WITH_TLS@
AC_WITH_MODULES_ENABLED=@WITH_MODULES_ENABLED@
export AC_bdb AC_hdb AC_ldap AC_ldbm AC_monitor AC_relay AC_sql
export AC_glue AC_pcache AC_ppolicy AC_refint AC_unique AC_rwm AC_syncprov
export AC_WITH_SASL AC_WITH_TLS AC_WITH_MODULES_ENABLED
if test ! -x ../servers/slapd/slapd ; then
echo "Could not locate slapd(8)"
exit 1
fi
2003-12-04 05:52:07 +08:00
if test $AC_bdb != no ; then
BACKEND=bdb
2003-12-04 05:52:07 +08:00
elif test $AC_ldbm != no ; then
BACKEND=ldbm
2003-12-04 05:52:07 +08:00
elif test $AC_hdb != no ; then
BACKEND=hdb
else
echo "Not configured with a suitable database backend"
exit 1
fi
CLEAN=no
WAIT=0
KILLSERVERS=yes
2003-10-24 11:35:20 +08:00
PRESERVE=${PRESERVE-no}
USERDATA=no
while test $# -gt 0 ; do
case "$1" in
-b | -backend)
BACKEND="$2"
shift; shift ;;
-c | -clean)
CLEAN=yes
shift; shift ;;
-k | -kill)
KILLSERVERS=no
shift ;;
-p | -preserve)
PRESERVE=yes
shift ;;
-u | -userdata)
USERDATA=yes
shift ;;
-w | -wait)
2003-10-21 11:18:15 +08:00
WAIT=1
shift ;;
-)
shift
break ;;
-*)
echo "$USAGE"; exit 1
;;
*)
break ;;
esac
done
2003-12-04 05:52:07 +08:00
BACKENDTYPE=`eval 'echo $AC_'$BACKEND`
export BACKEND BACKENDTYPE WAIT KILLSERVERS PRESERVE USERDATA
if test $# = 0 ; then
echo "$USAGE"; exit 1
fi
SCRIPTDIR="${SRCDIR}/scripts"
SCRIPTNAME="$1"
shift
if test -x "${SCRIPTDIR}/${SCRIPTNAME}" ; then
SCRIPT="${SCRIPTDIR}/${SCRIPTNAME}"
elif test -x "`echo ${SCRIPTDIR}/test*-${SCRIPTNAME}`"; then
SCRIPT="`echo ${SCRIPTDIR}/test*-${SCRIPTNAME}`"
elif test -x "`echo ${SCRIPTDIR}/${SCRIPTNAME}-*`"; then
SCRIPT="`echo ${SCRIPTDIR}/${SCRIPTNAME}-*`"
else
echo "run: ${SCRIPTNAME} not found (or not executable)"
exit 1;
fi
if test ! -r testdata/test.ldif ; then
${LN_S} ${SRCDIR}/data testdata
fi
if test ! -r schema/core.schema ; then
${LN_S} ${TOPSRCDIR}/servers/slapd/schema schema
fi
if test -d testrun ; then
if test $PRESERVE = no ; then
echo "Cleaning up test run directory leftover from previous run."
/bin/rm -rf testrun
2003-10-24 11:35:20 +08:00
elif test $PRESERVE = yes ; then
echo "Cleaning up only database directories leftover from previous run."
/bin/rm -rf testrun/db.*
fi
fi
if test $USERDATA = yes ; then
if test ! -d userdata ; then
echo "User data directory (userdata) does not exist."
exit 1
fi
mkdir -p testrun
cp -R userdata/* testrun
fi
# disable LDAP initialization
LDAPNOINIT=true; export LDAPNOINIT
2003-10-20 13:19:51 +08:00
echo "Running ${SCRIPT}..."
$SCRIPT $*
RC=$?
if test $CLEAN = yes ; then
echo "Cleaning up test run directory from this run."
/bin/rm -rf testrun
echo "Cleaning up symlinks."
2004-05-31 13:45:11 +08:00
/bin/rm -f testdata schema
fi
exit $RC