openldap/tests/run.in

204 lines
4.4 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/>.
##
2007-01-03 04:00:42 +08:00
## Copyright 1998-2007 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@"
EGREP_CMD="@EGREP@"
export SRCDIR TOPSRCDIR LN_S EGREP_CMD
# backends
2003-12-04 05:52:07 +08:00
AC_bdb=@BUILD_BDB@
AC_hdb=@BUILD_HDB@
AC_ldap=ldap@BUILD_LDAP@
AC_meta=meta@BUILD_META@
AC_monitor=@BUILD_MONITOR@
2004-07-12 08:19:15 +08:00
AC_relay=relay@BUILD_RELAY@
AC_sql=sql@BUILD_SQL@
# overlays
2005-10-15 14:14:52 +08:00
AC_accesslog=accesslog@BUILD_ACCESSLOG@
2006-01-07 01:46:52 +08:00
AC_dds=dds@BUILD_DDS@
2005-11-24 09:21:10 +08:00
AC_dynlist=dynlist@BUILD_DYNLIST@
2003-12-06 19:46:26 +08:00
AC_pcache=pcache@BUILD_PROXYCACHE@
AC_ppolicy=ppolicy@BUILD_PPOLICY@
AC_refint=refint@BUILD_REFINT@
AC_retcode=retcode@BUILD_RETCODE@
2005-03-10 12:35:57 +08:00
AC_translucent=translucent@BUILD_TRANSLUCENT@
AC_unique=unique@BUILD_UNIQUE@
2004-07-12 08:19:15 +08:00
AC_rwm=rwm@BUILD_RWM@
AC_syncprov=syncprov@BUILD_SYNCPROV@
AC_valsort=valsort@BUILD_VALSORT@
# 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@
2005-08-28 00:27:12 +08:00
AC_ACI_ENABLED=aci@WITH_ACI_ENABLED@
AC_THREADS=threads@BUILD_THREAD@
AC_LIBS_DYNAMIC=lib@BUILD_LIBS_DYNAMIC@
# sanitize
if test "${AC_ldap}" = "ldapmod" && test "${AC_LIBS_DYNAMIC}" = "static" ; then
AC_ldap="ldapno"
fi
if test "${AC_meta}" = "metamod" && test "${AC_LIBS_DYNAMIC}" = "static" ; then
AC_meta="metano"
fi
2006-04-12 02:48:26 +08:00
export AC_bdb AC_hdb AC_ldap AC_meta AC_monitor AC_relay AC_sql \
AC_accesslog AC_dynlist AC_pcache AC_ppolicy AC_refint AC_retcode \
AC_rwm AC_unique AC_syncprov AC_translucent AC_valsort \
2006-01-07 01:46:52 +08:00
AC_dds \
AC_WITH_SASL AC_WITH_TLS AC_WITH_MODULES_ENABLED AC_ACI_ENABLED \
AC_THREADS AC_LIBS_DYNAMIC
if test ! -x ../servers/slapd/slapd ; then
echo "Could not locate slapd(8)"
exit 1
fi
BACKEND=
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
2005-09-29 07:38:15 +08:00
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
if test -z "$BACKEND" ; then
2006-04-12 02:48:26 +08:00
for b in bdb hdb ; do
if eval "test \"\$AC_$b\" != no" ; then
BACKEND=$b
break
fi
done
if test -z "$BACKEND" ; then
echo "No suitable default database backend configured" >&2
exit 1
fi
fi
2003-12-04 05:52:07 +08:00
BACKENDTYPE=`eval 'echo $AC_'$BACKEND`
2005-05-30 22:02:16 +08:00
if test "x$BACKENDTYPE" = "x" ; then
BACKENDTYPE="unknown"
fi
2003-12-04 05:52:07 +08:00
export BACKEND BACKENDTYPE WAIT KILLSERVERS PRESERVE USERDATA
if test $# = 0 ; then
echo "$USAGE"; exit 1
fi
# need defines.sh for the definitions of the directories
. $SRCDIR/scripts/defines.sh
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
2005-09-29 07:38:15 +08:00
if test ! -r ${DATADIR}/test.ldif ; then
${LN_S} ${SRCDIR}/data ${DATADIR}
fi
2005-09-29 07:38:15 +08:00
if test ! -r ${SCHEMADIR}/core.schema ; then
${LN_S} ${TOPSRCDIR}/servers/slapd/schema ${SCHEMADIR}
fi
2005-09-29 07:38:15 +08:00
if test -d ${TESTDIR} ; then
if test $PRESERVE = no ; then
echo "Cleaning up test run directory leftover from previous run."
2005-09-29 07:38:15 +08:00
/bin/rm -rf ${TESTDIR}
2003-10-24 11:35:20 +08:00
elif test $PRESERVE = yes ; then
echo "Cleaning up only database directories leftover from previous run."
2005-09-29 07:38:15 +08:00
/bin/rm -rf ${TESTDIR}/db.*
fi
fi
mkdir -p ${TESTDIR}
if test $USERDATA = yes ; then
if test ! -d userdata ; then
echo "User data directory (userdata) does not exist."
exit 1
fi
2005-09-29 07:38:15 +08:00
cp -R userdata/* ${TESTDIR}
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."
2005-09-29 07:38:15 +08:00
/bin/rm -rf ${TESTDIR}
echo "Cleaning up symlinks."
2005-09-29 07:38:15 +08:00
/bin/rm -f ${DATADIR} ${SCHEMADIR}
fi
exit $RC