]> git.sur5r.net Git - openldap/blob - tests/run.in
Sync with HEAD
[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-2005 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] [-p] [-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_ldbm=@BUILD_LDBM@
31 AC_meta=meta@BUILD_META@
32 AC_monitor=@BUILD_MONITOR@
33 AC_relay=relay@BUILD_RELAY@
34 AC_sql=sql@BUILD_SQL@
35
36 # overlays
37 AC_accesslog=accesslog@BUILD_ACCESSLOG@
38 AC_pcache=pcache@BUILD_PROXYCACHE@
39 AC_ppolicy=ppolicy@BUILD_PPOLICY@
40 AC_refint=refint@BUILD_REFINT@
41 AC_retcode=retcode@BUILD_RETCODE@
42 AC_translucent=translucent@BUILD_TRANSLUCENT@
43 AC_unique=unique@BUILD_UNIQUE@
44 AC_rwm=rwm@BUILD_RWM@
45 AC_syncprov=syncprov@BUILD_SYNCPROV@
46 AC_valsort=valsort@BUILD_VALSORT@
47
48 # misc
49 AC_WITH_SASL=@WITH_SASL@
50 AC_WITH_TLS=@WITH_TLS@
51 AC_WITH_MODULES_ENABLED=@WITH_MODULES_ENABLED@
52 AC_ACI_ENABLED=aci@WITH_ACI_ENABLED@
53
54 export AC_bdb AC_hdb AC_ldap AC_ldbm AC_meta AC_monitor AC_relay AC_sql 
55 export AC_pcache AC_ppolicy AC_refint AC_retcode AC_rwm AC_unique AC_syncprov
56 export AC_translucent AC_WITH_SASL AC_WITH_TLS AC_WITH_MODULES_ENABLED AC_ACI_ENABLED
57 export AC_valsort AC_accesslog
58
59 if test ! -x ../servers/slapd/slapd ; then
60         echo "Could not locate slapd(8)"
61         exit 1
62 fi
63
64 BACKEND=
65 CLEAN=no
66 WAIT=0
67 KILLSERVERS=yes
68 PRESERVE=${PRESERVE-no}
69 USERDATA=no
70
71 while test $# -gt 0 ; do
72         case "$1" in
73                 -b | -backend)
74                         BACKEND="$2"
75                         shift; shift ;;
76
77                 -c | -clean)
78                         CLEAN=yes
79                         shift ;;
80
81                 -k | -kill)
82                         KILLSERVERS=no
83                         shift ;;
84
85                 -p | -preserve)
86                         PRESERVE=yes
87                         shift ;;
88
89                 -u | -userdata)
90                         USERDATA=yes
91                         shift ;;
92
93                 -w | -wait)
94                         WAIT=1
95                         shift ;;
96
97                 -)
98                         shift
99                         break ;;
100
101                 -*)
102                         echo "$USAGE"; exit 1
103                         ;;
104
105                 *)
106                         break ;;
107         esac
108 done
109
110 if test -z "$BACKEND" ; then
111         for b in bdb ldbm hdb ; do
112                 if eval "test \"\$AC_$b\" != no" ; then
113                         BACKEND=$b
114                         break
115                 fi
116         done
117         if test -z "$BACKEND" ; then
118                 echo "No suitable default database backend configured" >&2
119                 exit 1
120         fi
121 fi
122 BACKENDTYPE=`eval 'echo $AC_'$BACKEND`
123 if test "x$BACKENDTYPE" = "x" ; then
124         BACKENDTYPE="unknown"
125 fi
126 export BACKEND BACKENDTYPE WAIT KILLSERVERS PRESERVE USERDATA
127
128 if test $# = 0 ; then
129         echo "$USAGE"; exit 1
130 fi
131
132 # need defines.sh for the definitions of the directories
133 . $SRCDIR/scripts/defines.sh
134
135 SCRIPTDIR="${SRCDIR}/scripts"
136 SCRIPTNAME="$1"
137 shift
138
139 if test -x "${SCRIPTDIR}/${SCRIPTNAME}" ; then
140         SCRIPT="${SCRIPTDIR}/${SCRIPTNAME}"
141 elif test -x "`echo ${SCRIPTDIR}/test*-${SCRIPTNAME}`"; then
142         SCRIPT="`echo ${SCRIPTDIR}/test*-${SCRIPTNAME}`"
143 elif test -x "`echo ${SCRIPTDIR}/${SCRIPTNAME}-*`"; then
144         SCRIPT="`echo ${SCRIPTDIR}/${SCRIPTNAME}-*`"
145 else
146         echo "run: ${SCRIPTNAME} not found (or not executable)"
147         exit 1;
148 fi
149
150 if test ! -r ${DATADIR}/test.ldif ; then
151         ${LN_S} ${SRCDIR}/data ${DATADIR}
152 fi
153 if test ! -r ${SCHEMADIR}/core.schema ; then
154         ${LN_S} ${TOPSRCDIR}/servers/slapd/schema ${SCHEMADIR}
155 fi
156
157 if test -d ${TESTDIR} ; then
158         if test $PRESERVE = no ; then
159                 echo "Cleaning up test run directory leftover from previous run."
160                 /bin/rm -rf ${TESTDIR}
161         elif test $PRESERVE = yes ; then
162                 echo "Cleaning up only database directories leftover from previous run."
163                 /bin/rm -rf ${TESTDIR}/db.*
164         fi
165 fi
166
167 if test $USERDATA = yes ; then
168         if test ! -d userdata ; then
169                 echo "User data directory (userdata) does not exist."
170                 exit 1
171         fi
172         mkdir -p ${TESTDIR}
173         cp -R userdata/* ${TESTDIR}
174 fi
175
176 # disable LDAP initialization
177 LDAPNOINIT=true; export LDAPNOINIT
178
179 echo "Running ${SCRIPT}..."
180 $SCRIPT $*
181 RC=$?
182
183 if test $CLEAN = yes ; then
184         echo "Cleaning up test run directory from this run."
185         /bin/rm -rf ${TESTDIR}
186         echo "Cleaning up symlinks."
187         /bin/rm -f ${DATADIR} ${SCHEMADIR}
188 fi
189
190 exit $RC