3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 ## Copyright 1998-2012 The OpenLDAP Foundation.
6 ## All rights reserved.
8 ## Redistribution and use in source and binary forms, with or without
9 ## modification, are permitted only as authorized by the OpenLDAP
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 if test x$TESTLOOPS = x ; then
23 mkdir -p $TESTDIR $DBDIR1
25 echo "Running slapadd to build slapd database..."
26 . $CONFFILTER $BACKEND $MONITORDB < $CONF > $CONF1
27 $SLAPADD -f $CONF1 -l $LDIFORDERED -d -1 2> $SLAPADDLOG1
29 if test $RC != 0 ; then
30 echo "slapadd failed ($RC)!"
34 echo "Starting slapd on TCP/IP port $PORT1..."
35 $SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING > $LOG1 2>&1 &
37 if test $WAIT != 0 ; then
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
50 if test $RC = 0 ; then
53 echo "Waiting 5 seconds for slapd to start..."
57 # fix test data to include back-monitor, if available
58 # NOTE: copies do_* files from $DATADIR to $TESTDIR
59 $MONITORDATA "$MONITORDB" "$DATADIR" "$TESTDIR"
61 echo "Using tester for concurrent server access..."
62 time $SLAPDTESTER -P "$PROGDIR" -d "$TESTDIR" -h $LOCALHOST -p $PORT1 -D "$MANAGERDN" -w $PASSWD -l $TESTLOOPS
63 #$SLAPDTESTER -P "$PROGDIR" -d "$TESTDIR" -h $LOCALHOST -p $PORT1 -D "$MANAGERDN" -w $PASSWD -l $TESTLOOPS
66 if test $RC != 0 ; then
67 echo "slapd-tester failed ($RC)!"
68 test $KILLSERVERS != no && kill -HUP $KILLPIDS
72 echo "Using ldapsearch to retrieve all the entries..."
73 $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
74 'objectClass=*' > $SEARCHOUT 2>&1
77 test $KILLSERVERS != no && kill -HUP $KILLPIDS
79 if test $RC != 0 ; then
80 echo "ldapsearch failed ($RC)!"
84 echo "Filtering ldapsearch results..."
85 $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
86 echo "Filtering original ldif used to create database..."
87 $LDIFFILTER < $LDIF > $LDIFFLT
88 echo "Comparing filter output..."
89 $CMP $SEARCHFLT $LDIFFLT > $CMPOUT
91 if test $? != 0 ; then
92 echo "comparison failed - database was not created correctly"
96 echo ">>>>> Test succeeded"
98 test $KILLSERVERS != no && wait