]> git.sur5r.net Git - openldap/blob - tests/scripts/test008-concurrency
Add missing 'kill -HUP $KILLPIDS' statement before an exit.
[openldap] / tests / scripts / test008-concurrency
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 echo "running defines.sh"
17 . $SRCDIR/scripts/defines.sh
18
19 mkdir -p $TESTDIR $DBDIR1
20
21 echo "Running slapadd to build slapd database..."
22 . $CONFFILTER $BACKEND $MONITORDB < $CONF > $CONF1
23 $SLAPADD -f $CONF1 -l $LDIFORDERED -d -1 2> $SLAPADDLOG1
24 RC=$?
25 if test $RC != 0 ; then
26         echo "slapadd failed ($RC)!"
27         exit $RC
28 fi
29
30 echo "Starting slapd on TCP/IP port $PORT1..."
31 $SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING > $LOG1 2>&1 &
32 PID=$!
33 if test $WAIT != 0 ; then
34     echo PID $PID
35     read foo
36 fi
37 KILLPIDS="$PID"
38
39 echo "Using ldapsearch to check that slapd is running..."
40 for i in 0 1 2 3 4 5; do
41         $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT1 \
42                 'objectclass=*' > /dev/null 2>&1
43         RC=$?
44         if test $RC = 0 ; then
45                 break
46         fi
47         echo "Waiting 5 seconds for slapd to start..."
48         sleep 5
49 done
50
51 echo "Using tester for concurrent server access..."
52 $SLAPDTESTER -P "$PROGDIR" -d "$DATADIR" -h $LOCALHOST -p $PORT1 -D "$MANAGERDN" -w $PASSWD -l 50
53 RC=$?
54
55 if test $RC != 0 ; then
56         echo "slapd-tester failed ($RC)!"
57         test $KILLSERVERS != no && kill -HUP $KILLPIDS
58         exit $RC
59 fi 
60
61 echo "Using ldapsearch to retrieve all the entries..."
62 $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
63                         'objectClass=*' > $SEARCHOUT 2>&1
64 RC=$?
65
66 test $KILLSERVERS != no && kill -HUP $KILLPIDS
67
68 if test $RC != 0 ; then
69         echo "ldapsearch failed ($RC)!"
70         exit $RC
71 fi
72
73 echo "Filtering ldapsearch results..."
74 . $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
75 echo "Filtering original ldif used to create database..."
76 . $LDIFFILTER < $LDIF > $LDIFFLT
77 echo "Comparing filter output..."
78 $CMP $SEARCHFLT $LDIFFLT > $CMPOUT
79
80 if test $? != 0 ; then
81         echo "comparison failed - database was not created correctly"
82         exit 1
83 fi
84
85 echo ">>>>> Test succeeded"
86 exit 0