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