3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 ## Copyright 1998-2006 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 mkdir -p $TESTDIR $DBDIR1
21 echo "Starting slapd on TCP/IP port $PORT1..."
22 . $CONFFILTER $BACKEND $MONITORDB < $CONF > $CONF1
23 $SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING > $LOG1 2>&1 &
25 if test $WAIT != 0 ; then
33 echo "Using ldapsearch to check that slapd is running..."
34 for i in 0 1 2 3 4 5; do
35 $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT1 \
36 'objectclass=*' > /dev/null 2>&1
38 if test $RC = 0 ; then
41 echo "Waiting 5 seconds for slapd to start..."
45 echo "Using ldapadd to populate the database..."
46 $LDAPADD -D "$MANAGERDN" -h $LOCALHOST -p $PORT1 -w $PASSWD < \
47 $LDIFORDERED > $TESTOUT 2>&1
49 if test $RC != 0 ; then
50 echo "ldapadd failed ($RC)!"
51 test $KILLSERVERS != no && kill -HUP $KILLPIDS
55 echo "Using ldapsearch to read all the entries..."
56 $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
57 'objectclass=*' > $SEARCHOUT 2>&1
60 test $KILLSERVERS != no && kill -HUP $KILLPIDS
62 if test $RC != 0 ; then
63 echo "ldapsearch failed ($RC)!"
67 echo "Filtering ldapsearch results..."
68 . $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
69 echo "Filtering original ldif used to create database..."
70 . $LDIFFILTER < $LDIF > $LDIFFLT
71 echo "Comparing filter output..."
72 $CMP $SEARCHFLT $LDIFFLT > $CMPOUT
74 if test $? != 0 ; then
75 echo "comparison failed - database was not created correctly"
79 echo ">>>>> Test succeeded"
81 test $KILLSERVERS != no && wait