]> git.sur5r.net Git - openldap/blob - tests/run.in
Add an option to run a test in a loop using -l or -loop
[openldap] / tests / run.in
1 #!/bin/sh
2 # $OpenLDAP$
3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 ##
5 ## Copyright 1998-2009 The OpenLDAP Foundation.
6 ## All rights reserved.
7 ##
8 ## Redistribution and use in source and binary forms, with or without
9 ## modification, are permitted only as authorized by the OpenLDAP
10 ## Public License.
11 ##
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>.
15
16 USAGE="$0 [-b <backend>] [-c] [-k] [-l #] [-p] [-s {ro|rp}] [-u] [-w] <script>"
17
18 # configure generated
19 SRCDIR="@srcdir@"
20 TOPSRCDIR="@top_srcdir@"
21 LN_S="@LN_S@"
22 EGREP_CMD="@EGREP@"
23
24 export SRCDIR TOPSRCDIR LN_S EGREP_CMD
25
26 # backends
27 AC_bdb=@BUILD_BDB@
28 AC_hdb=@BUILD_HDB@
29 AC_ldap=ldap@BUILD_LDAP@
30 AC_meta=meta@BUILD_META@
31 AC_monitor=@BUILD_MONITOR@
32 AC_relay=relay@BUILD_RELAY@
33 AC_sql=sql@BUILD_SQL@
34
35 # overlays
36 AC_accesslog=accesslog@BUILD_ACCESSLOG@
37 AC_dds=dds@BUILD_DDS@
38 AC_dynlist=dynlist@BUILD_DYNLIST@
39 AC_memberof=memberof@BUILD_MEMBEROF@
40 AC_pcache=pcache@BUILD_PROXYCACHE@
41 AC_ppolicy=ppolicy@BUILD_PPOLICY@
42 AC_refint=refint@BUILD_REFINT@
43 AC_retcode=retcode@BUILD_RETCODE@
44 AC_translucent=translucent@BUILD_TRANSLUCENT@
45 AC_unique=unique@BUILD_UNIQUE@
46 AC_rwm=rwm@BUILD_RWM@
47 AC_syncprov=syncprov@BUILD_SYNCPROV@
48 AC_valsort=valsort@BUILD_VALSORT@
49
50 # misc
51 AC_WITH_SASL=@WITH_SASL@
52 AC_WITH_TLS=@WITH_TLS@
53 AC_WITH_MODULES_ENABLED=@WITH_MODULES_ENABLED@
54 AC_ACI_ENABLED=aci@WITH_ACI_ENABLED@
55 AC_THREADS=threads@BUILD_THREAD@
56 AC_LIBS_DYNAMIC=lib@BUILD_LIBS_DYNAMIC@
57
58 # sanitize
59 if test "${AC_ldap}" = "ldapmod" && test "${AC_LIBS_DYNAMIC}" = "static" ; then
60         AC_ldap="ldapno"
61 fi
62 if test "${AC_meta}" = "metamod" && test "${AC_LIBS_DYNAMIC}" = "static" ; then
63         AC_meta="metano"
64 fi
65
66 export AC_bdb AC_hdb AC_ldap AC_meta AC_monitor AC_relay AC_sql \
67         AC_accesslog AC_dds AC_dynlist AC_memberof AC_pcache AC_ppolicy \
68         AC_refint AC_retcode AC_rwm AC_unique AC_syncprov AC_translucent \
69         AC_valsort \
70         AC_WITH_SASL AC_WITH_TLS AC_WITH_MODULES_ENABLED AC_ACI_ENABLED \
71         AC_THREADS AC_LIBS_DYNAMIC
72
73 if test ! -x ../servers/slapd/slapd ; then
74         echo "Could not locate slapd(8)"
75         exit 1
76 fi
77
78 BACKEND=
79 CLEAN=no
80 WAIT=0
81 KILLSERVERS=yes
82 PRESERVE=${PRESERVE-no}
83 SYNCMODE=${SYNCMODE-rp}
84 USERDATA=no
85 LOOP=1
86 COUNTER=1
87
88 while test $# -gt 0 ; do
89         case "$1" in
90                 -b | -backend)
91                         BACKEND="$2"
92                         shift; shift ;;
93
94                 -c | -clean)
95                         CLEAN=yes
96                         shift ;;
97
98                 -k | -kill)
99                         KILLSERVERS=no
100                         shift ;;
101                 -l | -loop)
102                         NUM="$(echo $2 | sed 's/[0-9]//g')"
103                         if [ -z "$NUM" ]; then
104                                 LOOP=$2
105                         else
106                                 echo "Loop variable not an int: $2"
107                                 echo "$USAGE"; exit 1
108                         fi
109                         shift ;
110                         shift ;;
111
112                 -p | -preserve)
113                         PRESERVE=yes
114                         shift ;;
115
116                 -s | -syncmode)
117                         case "$2" in
118                                 ro | rp)
119                                         SYNCMODE="$2"
120                                         ;;
121                                 *)
122                                         echo "unknown sync mode $2"
123                                         echo "$USAGE"; exit 1
124                                         ;;
125                         esac
126                         shift; shift ;;
127
128                 -u | -userdata)
129                         USERDATA=yes
130                         shift ;;
131
132                 -w | -wait)
133                         WAIT=1
134                         shift ;;
135
136                 -)
137                         shift
138                         break ;;
139
140                 -*)
141                         echo "$USAGE"; exit 1
142                         ;;
143
144                 *)
145                         break ;;
146         esac
147 done
148
149 if test -z "$BACKEND" ; then
150         for b in bdb hdb ; do
151                 if eval "test \"\$AC_$b\" != no" ; then
152                         BACKEND=$b
153                         break
154                 fi
155         done
156         if test -z "$BACKEND" ; then
157                 echo "No suitable default database backend configured" >&2
158                 exit 1
159         fi
160 fi
161 BACKENDTYPE=`eval 'echo $AC_'$BACKEND`
162 if test "x$BACKENDTYPE" = "x" ; then
163         BACKENDTYPE="unknown"
164 fi
165 export BACKEND BACKENDTYPE WAIT KILLSERVERS PRESERVE SYNCMODE USERDATA
166
167 if test $# = 0 ; then
168         echo "$USAGE"; exit 1
169 fi
170
171 # need defines.sh for the definitions of the directories
172 . $SRCDIR/scripts/defines.sh
173
174 SCRIPTDIR="${SRCDIR}/scripts"
175 SCRIPTNAME="$1"
176 shift
177
178 if test -x "${SCRIPTDIR}/${SCRIPTNAME}" ; then
179         SCRIPT="${SCRIPTDIR}/${SCRIPTNAME}"
180 elif test -x "`echo ${SCRIPTDIR}/test*-${SCRIPTNAME}`"; then
181         SCRIPT="`echo ${SCRIPTDIR}/test*-${SCRIPTNAME}`"
182 elif test -x "`echo ${SCRIPTDIR}/${SCRIPTNAME}-*`"; then
183         SCRIPT="`echo ${SCRIPTDIR}/${SCRIPTNAME}-*`"
184 else
185         echo "run: ${SCRIPTNAME} not found (or not executable)"
186         exit 1;
187 fi
188
189 if test ! -r ${DATADIR}/test.ldif ; then
190         ${LN_S} ${SRCDIR}/data ${DATADIR}
191 fi
192 if test ! -r ${SCHEMADIR}/core.schema ; then
193         ${LN_S} ${TOPSRCDIR}/servers/slapd/schema ${SCHEMADIR}
194 fi
195
196 if test -d ${TESTDIR} ; then
197         if test $PRESERVE = no ; then
198                 echo "Cleaning up test run directory leftover from previous run."
199                 /bin/rm -rf ${TESTDIR}
200         elif test $PRESERVE = yes ; then
201                 echo "Cleaning up only database directories leftover from previous run."
202                 /bin/rm -rf ${TESTDIR}/db.*
203         fi
204 fi
205 if test $BACKEND = ndb ; then
206         mysql --user root <<EOF
207         drop database if exists db_1;
208         drop database if exists db_2;
209         drop database if exists db_3;
210         drop database if exists db_4;
211         drop database if exists db_5;
212         drop database if exists db_6;
213 EOF
214 fi
215 mkdir -p ${TESTDIR}
216
217 if test $USERDATA = yes ; then
218         if test ! -d userdata ; then
219                 echo "User data directory (userdata) does not exist."
220                 exit 1
221         fi
222         cp -R userdata/* ${TESTDIR}
223 fi
224
225 # disable LDAP initialization
226 LDAPNOINIT=true; export LDAPNOINIT
227
228 echo "Running ${SCRIPT}..."
229 while [ $COUNTER -le $LOOP ]; do
230         $SCRIPT $*
231         RC=$?
232
233         if test $CLEAN = yes ; then
234                 echo "Cleaning up test run directory from this run."
235                 /bin/rm -rf ${TESTDIR}
236                 echo "Cleaning up symlinks."
237                 /bin/rm -f ${DATADIR} ${SCHEMADIR}
238         fi
239
240         if [ $RC -ne 0 ]; then
241                 exit $RC
242         else
243                 COUNTER=`expr $COUNTER + 1`
244                 if [ $COUNTER -le $LOOP ]; then
245                         echo "Cleaning up test run directory from this run."
246                         /bin/rm -rf ${TESTDIR}
247                 fi
248         fi
249 done
250 exit $RC