3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 ## Copyright 1998-2005 The OpenLDAP Foundation.
6 ## All rights reserved.
8 ## Redistribution and use in source and binary forms, with or without
9 ## modification, are permitted only as authorized by the OpenLDAP
12 ## A copy of this license is available in the file LICENSE in the
13 ## top-level directory of the distribution or, alternatively, at
14 ## <http://www.OpenLDAP.org/license.html>.
16 USAGE="$0 [-b <backend>] [-c] [-k] [-p] [-u] [-w] <script>"
20 TOPSRCDIR="@top_srcdir@"
23 export SRCDIR TOPSRCDIR LN_S
28 AC_ldap=ldap@BUILD_LDAP@
30 AC_meta=meta@BUILD_META@
31 AC_monitor=@BUILD_MONITOR@
32 AC_relay=relay@BUILD_RELAY@
36 AC_glue=glue@BUILD_GLUE@
37 AC_pcache=pcache@BUILD_PROXYCACHE@
38 AC_ppolicy=ppolicy@BUILD_PPOLICY@
39 AC_refint=refint@BUILD_REFINT@
40 AC_retcode=retcode@BUILD_RETCODE@
41 AC_translucent=translucent@BUILD_TRANSLUCENT@
42 AC_unique=unique@BUILD_UNIQUE@
44 AC_syncprov=syncprov@BUILD_SYNCPROV@
45 AC_valsort=valsort@BUILD_VALSORT@
48 AC_WITH_SASL=@WITH_SASL@
49 AC_WITH_TLS=@WITH_TLS@
50 AC_WITH_MODULES_ENABLED=@WITH_MODULES_ENABLED@
51 AC_ACI_ENABLED=aci@SLAPD_ACI_ENABLED@
53 export AC_bdb AC_hdb AC_ldap AC_ldbm AC_meta AC_monitor AC_relay AC_sql
54 export AC_glue AC_pcache AC_ppolicy AC_refint AC_retcode AC_rwm AC_unique AC_syncprov
55 export AC_translucent AC_WITH_SASL AC_WITH_TLS AC_WITH_MODULES_ENABLED AC_ACI_ENABLED
58 if test ! -x ../servers/slapd/slapd ; then
59 echo "Could not locate slapd(8)"
63 if test $AC_bdb != no ; then
65 elif test $AC_ldbm != no ; then
67 elif test $AC_hdb != no ; then
70 echo "Not configured with a suitable database backend"
77 PRESERVE=${PRESERVE-no}
80 while test $# -gt 0 ; do
111 echo "$USAGE"; exit 1
119 BACKENDTYPE=`eval 'echo $AC_'$BACKEND`
120 if test "x$BACKENDTYPE" = "x" ; then
121 BACKENDTYPE="unknown"
123 export BACKEND BACKENDTYPE WAIT KILLSERVERS PRESERVE USERDATA
125 if test $# = 0 ; then
126 echo "$USAGE"; exit 1
129 SCRIPTDIR="${SRCDIR}/scripts"
133 if test -x "${SCRIPTDIR}/${SCRIPTNAME}" ; then
134 SCRIPT="${SCRIPTDIR}/${SCRIPTNAME}"
135 elif test -x "`echo ${SCRIPTDIR}/test*-${SCRIPTNAME}`"; then
136 SCRIPT="`echo ${SCRIPTDIR}/test*-${SCRIPTNAME}`"
137 elif test -x "`echo ${SCRIPTDIR}/${SCRIPTNAME}-*`"; then
138 SCRIPT="`echo ${SCRIPTDIR}/${SCRIPTNAME}-*`"
140 echo "run: ${SCRIPTNAME} not found (or not executable)"
144 if test ! -r testdata/test.ldif ; then
145 ${LN_S} ${SRCDIR}/data testdata
147 if test ! -r schema/core.schema ; then
148 ${LN_S} ${TOPSRCDIR}/servers/slapd/schema schema
151 if test -d testrun ; then
152 if test $PRESERVE = no ; then
153 echo "Cleaning up test run directory leftover from previous run."
155 elif test $PRESERVE = yes ; then
156 echo "Cleaning up only database directories leftover from previous run."
157 /bin/rm -rf testrun/db.*
161 if test $USERDATA = yes ; then
162 if test ! -d userdata ; then
163 echo "User data directory (userdata) does not exist."
167 cp -R userdata/* testrun
170 # disable LDAP initialization
171 LDAPNOINIT=true; export LDAPNOINIT
173 echo "Running ${SCRIPT}..."
177 if test $CLEAN = yes ; then
178 echo "Cleaning up test run directory from this run."
180 echo "Cleaning up symlinks."
181 /bin/rm -f testdata schema