Sync usage with man page.
[netbsd-mini2440.git] / external / bsd / openldap / dist / tests / scripts / test008-concurrency
blobc5b579832b15e4843cfa366bd6c5195b20fb7690
1 #! /bin/sh
2 # $OpenLDAP: pkg/ldap/tests/scripts/test008-concurrency,v 1.40.2.3 2008/02/11 23:26:51 kurt Exp $
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.
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>.
16 echo "running defines.sh"
17 . $SRCDIR/scripts/defines.sh
19 mkdir -p $TESTDIR $DBDIR1
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
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
37 KILLPIDS="$PID"
39 sleep 1
41 echo "Using ldapsearch to check that slapd is running..."
42 for i in 0 1 2 3 4 5; do
43 $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT1 \
44 'objectclass=*' > /dev/null 2>&1
45 RC=$?
46 if test $RC = 0 ; then
47 break
49 echo "Waiting 5 seconds for slapd to start..."
50 sleep 5
51 done
53 echo "Using tester for concurrent server access..."
54 time $SLAPDTESTER -P "$PROGDIR" -d "$DATADIR" -h $LOCALHOST -p $PORT1 -D "$MANAGERDN" -w $PASSWD -l 50
55 #$SLAPDTESTER -P "$PROGDIR" -d "$DATADIR" -h $LOCALHOST -p $PORT1 -D "$MANAGERDN" -w $PASSWD -l 50
56 RC=$?
58 if test $RC != 0 ; then
59 echo "slapd-tester failed ($RC)!"
60 test $KILLSERVERS != no && kill -HUP $KILLPIDS
61 exit $RC
62 fi
64 echo "Using ldapsearch to retrieve all the entries..."
65 $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
66 'objectClass=*' > $SEARCHOUT 2>&1
67 RC=$?
69 test $KILLSERVERS != no && kill -HUP $KILLPIDS
71 if test $RC != 0 ; then
72 echo "ldapsearch failed ($RC)!"
73 exit $RC
76 echo "Filtering ldapsearch results..."
77 . $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
78 echo "Filtering original ldif used to create database..."
79 . $LDIFFILTER < $LDIF > $LDIFFLT
80 echo "Comparing filter output..."
81 $CMP $SEARCHFLT $LDIFFLT > $CMPOUT
83 if test $? != 0 ; then
84 echo "comparison failed - database was not created correctly"
85 exit 1
88 echo ">>>>> Test succeeded"
90 test $KILLSERVERS != no && wait
92 exit 0