]> git.sur5r.net Git - openldap/blob - tests/scripts/sql-all
add support for extra ops after bind; allow to skip bind for slapd-search/read
[openldap] / tests / scripts / sql-all
1 #! /bin/sh
2 # $OpenLDAP$
3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 ##
5 ## Copyright 1998-2006 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 SHTOOL="$SRCDIR/../build/shtool"
17 TB=`$SHTOOL echo -e "%B"`
18 TN=`$SHTOOL echo -e "%b"`
19 SLEEPTIME=10
20
21 echo "#######################################################################"
22 echo "###                                                                 ###"
23 echo "### SQL tests                                                       ###"
24 echo "###                                                                 ###"
25 echo "#######################################################################"
26 echo "###"
27 echo "### SQL tests require the sql backend, a properly configured"
28 echo "### ODBC and a database populated with data from the applicable"
29 echo "### servers/slapd/back-sql/rdbms_depend/* files."
30 echo "###"
31 echo "### Set SLAPD_USE_SQL to the desired RDBMS to enable this test;"
32 echo "###"
33 echo "### Currently supported RDBMSes are:"
34 echo "###         ibmdb2, mysql, pgsql"
35 echo "###"
36 echo "### Set SLAPD_USE_SQLWRITE=yes to enable the write tests"
37 echo "###"
38 echo "### See servers/slapd/back-sql/rdbms_depend/README for more "
39 echo "### details on how to set up the RDBMS and the ODBC"
40 echo "###"
41
42 echo ">>>>> Executing all LDAP tests for $BACKEND"
43
44 for CMD in $SRCDIR/scripts/sql-test*; do
45         # remove cruft from prior test
46         if test $PRESERVE = yes ; then
47                 /bin/rm -rf testrun/db.*
48         else
49                 /bin/rm -rf testrun
50         fi
51
52         echo ">>>>> Starting ${TB}`basename $CMD`${TN} ..."
53         $CMD
54         RC=$?
55         if test $RC -eq 0 ; then
56                 echo ">>>>> $CMD completed ${TB}OK${TN}."
57         else
58                 echo ">>>>> $CMD ${TB}failed${TN} (exit $RC)"
59                 exit $RC
60         fi
61
62         echo ">>>>> waiting $SLEEPTIME seconds for things to exit"
63         sleep $SLEEPTIME
64         echo ""
65 done