1999-04-21 13:59:01 +08:00
|
|
|
#! /bin/sh
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-04-21 13:59:01 +08:00
|
|
|
if test $# -eq 0 ; then
|
1999-01-10 10:25:41 +08:00
|
|
|
SRCDIR="."
|
|
|
|
else
|
|
|
|
SRCDIR=$1; shift
|
|
|
|
fi
|
1999-04-21 13:59:01 +08:00
|
|
|
if test $# -eq 1 ; then
|
1999-04-10 12:42:33 +08:00
|
|
|
BACKEND=$1; shift
|
1999-02-08 19:42:14 +08:00
|
|
|
fi
|
1998-08-09 08:43:13 +08:00
|
|
|
|
1999-04-10 12:42:33 +08:00
|
|
|
echo "running defines.sh $SRCDIR $BACKEND"
|
1999-04-08 10:27:39 +08:00
|
|
|
. $SRCDIR/scripts/defines.sh
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
echo "Cleaning up in $DBDIR..."
|
|
|
|
|
1998-08-31 02:10:20 +08:00
|
|
|
rm -f $DBDIR/[!C]*
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
echo "Starting slapd on TCP/IP port $PORT..."
|
1999-02-12 23:22:43 +08:00
|
|
|
$SLAPD -f $CONF -p $PORT -d $LVL $TIMING > $MASTERLOG 2>&1 &
|
1998-08-09 08:43:13 +08:00
|
|
|
PID=$!
|
|
|
|
|
|
|
|
echo "Using ldapsearch to check that slapd is running..."
|
|
|
|
for i in 0 1 2 3 4 5; do
|
|
|
|
$LDAPSEARCH -L -b "$BASEDN" -h localhost -p $PORT \
|
|
|
|
'cn=Monitor' > /dev/null 2>&1
|
|
|
|
RC=$?
|
1999-04-21 13:59:01 +08:00
|
|
|
if test $RC = 1 ; then
|
1998-08-09 08:43:13 +08:00
|
|
|
echo "Waiting 5 seconds for slapd to start..."
|
|
|
|
sleep 5
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
1999-06-29 09:17:58 +08:00
|
|
|
echo "Using ldapadd to populate the database..."
|
|
|
|
$LDAPADD -D "$MANAGERDN" -h localhost -p $PORT -w $PASSWD < \
|
1998-08-09 08:43:13 +08:00
|
|
|
$LDIFORDERED > /dev/null 2>&1
|
|
|
|
RC=$?
|
1999-04-21 13:59:01 +08:00
|
|
|
if test $RC != 0 ; then
|
1999-06-29 09:17:58 +08:00
|
|
|
echo "ldapadd failed!"
|
1998-08-09 08:43:13 +08:00
|
|
|
kill -HUP $PID
|
|
|
|
exit $RC
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Using ldapsearch to read all the entries..."
|
|
|
|
$LDAPSEARCH -L -S "" -b "$BASEDN" -h localhost -p $PORT \
|
1999-05-22 00:50:51 +08:00
|
|
|
'objectclass=*' > $SEARCHOUT 2>&1
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
kill -HUP $PID
|
|
|
|
|
1999-04-21 13:59:01 +08:00
|
|
|
if test $RC != 0 ; then
|
1998-08-09 08:43:13 +08:00
|
|
|
echo "ldapsearch failed!"
|
|
|
|
exit $RC
|
|
|
|
fi
|
|
|
|
|
1998-08-19 09:29:52 +08:00
|
|
|
echo "Filtering ldapsearch results..."
|
1999-01-10 10:25:41 +08:00
|
|
|
. $SRCDIR/scripts/acfilter.sh < $SEARCHOUT > $SEARCHFLT
|
1998-08-19 09:29:52 +08:00
|
|
|
echo "Filtering original ldif used to create database..."
|
1999-01-10 10:25:41 +08:00
|
|
|
. $SRCDIR/scripts/acfilter.sh < $LDIF > $LDIFFLT
|
1998-08-19 09:29:52 +08:00
|
|
|
echo "Comparing filter output..."
|
|
|
|
cmp $SEARCHFLT $LDIFFLT
|
1998-08-21 14:33:42 +08:00
|
|
|
|
1999-04-21 13:59:01 +08:00
|
|
|
if test $? != 0 ; then
|
1998-08-09 08:43:13 +08:00
|
|
|
echo "comparison failed - database was not created correctly"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo ">>>>> Test succeeded"
|
|
|
|
|
|
|
|
|
|
|
|
exit 0
|