3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 ## Copyright 1998-2012 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] [-l #] [-p] [-s {ro|rp}] [-u] [-w] <script>"
20 TOPSRCDIR="@top_srcdir@"
24 export SRCDIR TOPSRCDIR LN_S EGREP_CMD
26 # backends known to ./run -b <backend> (used to deduce $BACKENDTYPE)
34 AC_ldap=ldap@BUILD_LDAP@
35 AC_meta=meta@BUILD_META@
36 AC_monitor=@BUILD_MONITOR@
37 AC_relay=relay@BUILD_RELAY@
41 AC_accesslog=accesslog@BUILD_ACCESSLOG@
43 AC_dynlist=dynlist@BUILD_DYNLIST@
44 AC_memberof=memberof@BUILD_MEMBEROF@
45 AC_pcache=pcache@BUILD_PROXYCACHE@
46 AC_ppolicy=ppolicy@BUILD_PPOLICY@
47 AC_refint=refint@BUILD_REFINT@
48 AC_retcode=retcode@BUILD_RETCODE@
49 AC_translucent=translucent@BUILD_TRANSLUCENT@
50 AC_unique=unique@BUILD_UNIQUE@
52 AC_syncprov=syncprov@BUILD_SYNCPROV@
53 AC_valsort=valsort@BUILD_VALSORT@
56 AC_WITH_SASL=@WITH_SASL@
57 AC_WITH_TLS=@WITH_TLS@
58 AC_WITH_MODULES_ENABLED=@WITH_MODULES_ENABLED@
59 AC_ACI_ENABLED=aci@WITH_ACI_ENABLED@
60 AC_THREADS=threads@BUILD_THREAD@
61 AC_LIBS_DYNAMIC=lib@BUILD_LIBS_DYNAMIC@
64 if test "${AC_ldap}" = "ldapmod" && test "${AC_LIBS_DYNAMIC}" = "static" ; then
67 if test "${AC_meta}" = "metamod" && test "${AC_LIBS_DYNAMIC}" = "static" ; then
71 export AC_bdb AC_hdb AC_ldap AC_mdb AC_meta AC_monitor AC_null AC_relay AC_sql \
72 AC_accesslog AC_dds AC_dynlist AC_memberof AC_pcache AC_ppolicy \
73 AC_refint AC_retcode AC_rwm AC_unique AC_syncprov AC_translucent \
75 AC_WITH_SASL AC_WITH_TLS AC_WITH_MODULES_ENABLED AC_ACI_ENABLED \
76 AC_THREADS AC_LIBS_DYNAMIC
78 if test ! -x ../servers/slapd/slapd ; then
79 echo "Could not locate slapd(8)"
87 PRESERVE=${PRESERVE-no}
88 SYNCMODE=${SYNCMODE-rp}
93 while test $# -gt 0 ; do
107 NUM="`echo $2 | sed 's/[0-9]//g'`"
108 if [ -z "$NUM" ]; then
111 echo "Loop variable not an int: $2"
112 echo "$USAGE"; exit 1
127 echo "unknown sync mode $2"
128 echo "$USAGE"; exit 1
146 echo "$USAGE"; exit 1
154 if test -z "$BACKEND" ; then
155 for b in bdb hdb mdb ; do
156 if eval "test \"\$AC_$b\" != no" ; then
161 if test -z "$BACKEND" ; then
162 echo "No suitable default database backend configured" >&2
167 BACKENDTYPE=`eval 'echo $AC_'$BACKEND`
168 if test "x$BACKENDTYPE" = "x" ; then
169 BACKENDTYPE="unknown"
172 # Backend features. indexdb: indexing and unchecked limit.
173 # maindb: main storage backend. Currently index,limits,mode,paged results.
174 INDEXDB=noindexdb MAINDB=nomaindb
176 bdb|hdb|mdb) INDEXDB=indexdb MAINDB=maindb ;;
177 ndb) INDEXDB=indexdb ;;
180 export BACKEND BACKENDTYPE INDEXDB MAINDB \
181 WAIT KILLSERVERS PRESERVE SYNCMODE USERDATA
183 if test $# = 0 ; then
184 echo "$USAGE"; exit 1
187 # need defines.sh for the definitions of the directories
188 . $SRCDIR/scripts/defines.sh
190 SCRIPTDIR="${SRCDIR}/scripts"
194 if test -x "${SCRIPTDIR}/${SCRIPTNAME}" ; then
195 SCRIPT="${SCRIPTDIR}/${SCRIPTNAME}"
196 elif test -x "`echo ${SCRIPTDIR}/test*-${SCRIPTNAME}`"; then
197 SCRIPT="`echo ${SCRIPTDIR}/test*-${SCRIPTNAME}`"
198 elif test -x "`echo ${SCRIPTDIR}/${SCRIPTNAME}-*`"; then
199 SCRIPT="`echo ${SCRIPTDIR}/${SCRIPTNAME}-*`"
201 echo "run: ${SCRIPTNAME} not found (or not executable)"
205 if test ! -r ${DATADIR}/test.ldif ; then
206 ${LN_S} ${SRCDIR}/data ${DATADIR}
208 if test ! -r ${SCHEMADIR}/core.schema ; then
209 ${LN_S} ${TOPSRCDIR}/servers/slapd/schema ${SCHEMADIR}
212 if test -d ${TESTDIR} ; then
213 if test $PRESERVE = no ; then
214 echo "Cleaning up test run directory leftover from previous run."
215 /bin/rm -rf ${TESTDIR}
216 elif test $PRESERVE = yes ; then
217 echo "Cleaning up only database directories leftover from previous run."
218 /bin/rm -rf ${TESTDIR}/db.*
221 if test $BACKEND = ndb ; then
222 mysql --user root <<EOF
223 drop database if exists db_1;
224 drop database if exists db_2;
225 drop database if exists db_3;
226 drop database if exists db_4;
227 drop database if exists db_5;
228 drop database if exists db_6;
233 if test $USERDATA = yes ; then
234 if test ! -d userdata ; then
235 echo "User data directory (userdata) does not exist."
238 cp -R userdata/* ${TESTDIR}
241 # disable LDAP initialization
242 LDAPNOINIT=true; export LDAPNOINIT
244 echo "Running ${SCRIPT} for ${BACKEND}..."
245 while [ $COUNTER -le $LOOP ]; do
246 if [ $LOOP -gt 1 ]; then
247 echo "Running $COUNTER of $LOOP iterations"
252 if test $CLEAN = yes ; then
253 echo "Cleaning up test run directory from this run."
254 /bin/rm -rf ${TESTDIR}
255 echo "Cleaning up symlinks."
256 /bin/rm -f ${DATADIR} ${SCHEMADIR}
259 if [ $RC -ne 0 ]; then
260 if [ $LOOP -gt 1 ]; then
261 echo "Failed after $COUNTER of $LOOP iterations"
265 COUNTER=`expr $COUNTER + 1`
266 if [ $COUNTER -le $LOOP ]; then
267 echo "Cleaning up test run directory from this run."
268 /bin/rm -rf ${TESTDIR}