2005-04-20 14:57:36 -04:00
|
|
|
#! /bin/sh
|
|
|
|
|
# $OpenLDAP$
|
|
|
|
|
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
|
##
|
2022-01-07 13:40:00 -05:00
|
|
|
## Copyright 1998-2022 The OpenLDAP Foundation.
|
2005-04-20 14:57:36 -04:00
|
|
|
## All rights reserved.
|
|
|
|
|
##
|
|
|
|
|
## Redistribution and use in source and binary forms, with or without
|
|
|
|
|
## modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
|
## Public License.
|
|
|
|
|
##
|
|
|
|
|
## A copy of this license is available in the file LICENSE in the
|
|
|
|
|
## top-level directory of the distribution or, alternatively, at
|
|
|
|
|
## <http://www.OpenLDAP.org/license.html>.
|
|
|
|
|
|
|
|
|
|
echo "running defines.sh"
|
|
|
|
|
. $SRCDIR/scripts/defines.sh
|
|
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
|
|
|
|
|
if test $BACKMETA = metano ; then
|
|
|
|
|
echo "meta backend not available, test skipped"
|
|
|
|
|
exit 0
|
|
|
|
|
fi
|
|
|
|
|
|
2008-06-30 06:18:37 -04:00
|
|
|
if test $BACKLDAP = ldapno ; then
|
|
|
|
|
echo "ldap backend not available, test skipped"
|
|
|
|
|
exit 0
|
|
|
|
|
fi
|
|
|
|
|
|
2006-01-09 10:26:40 -05:00
|
|
|
if test x$TESTLOOPS = x ; then
|
|
|
|
|
TESTLOOPS=50
|
|
|
|
|
fi
|
|
|
|
|
|
2010-08-28 22:54:50 -04:00
|
|
|
if test x$TESTCHILDREN = x ; then
|
|
|
|
|
TESTCHILDREN=20
|
|
|
|
|
fi
|
|
|
|
|
|
2005-04-20 14:57:36 -04:00
|
|
|
rm -rf $TESTDIR
|
|
|
|
|
|
|
|
|
|
mkdir -p $TESTDIR $DBDIR1 $DBDIR2
|
|
|
|
|
|
|
|
|
|
echo "Starting slapd on TCP/IP port $PORT1..."
|
2020-09-17 11:45:23 -04:00
|
|
|
. $CONFFILTER $BACKEND < $METACONF1 > $CONF1
|
2020-09-02 14:56:53 -04:00
|
|
|
$SLAPD -f $CONF1 -h $URI1 -d $LVL > $LOG1 2>&1 &
|
2005-04-20 14:57:36 -04:00
|
|
|
PID=$!
|
|
|
|
|
if test $WAIT != 0 ; then
|
|
|
|
|
echo PID $PID
|
|
|
|
|
read foo
|
|
|
|
|
fi
|
|
|
|
|
KILLPIDS="$PID"
|
|
|
|
|
|
2005-09-30 03:32:49 -04:00
|
|
|
sleep 1
|
|
|
|
|
|
2005-04-20 14:57:36 -04:00
|
|
|
echo "Using ldapsearch to check that slapd is running..."
|
|
|
|
|
for i in 0 1 2 3 4 5; do
|
2020-09-22 15:41:16 -04:00
|
|
|
$LDAPSEARCH -s base -b "$MONITOR" -H $URI1 \
|
2005-04-20 14:57:36 -04:00
|
|
|
'objectclass=*' > /dev/null 2>&1
|
|
|
|
|
RC=$?
|
|
|
|
|
if test $RC = 0 ; then
|
|
|
|
|
break
|
|
|
|
|
fi
|
|
|
|
|
echo "Waiting 5 seconds for slapd to start..."
|
|
|
|
|
sleep 5
|
|
|
|
|
done
|
|
|
|
|
if test $RC != 0 ; then
|
|
|
|
|
echo "ldapsearch failed ($RC)!"
|
|
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
|
|
|
exit $RC
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
echo "Using ldapadd to populate the database..."
|
2020-09-22 15:41:16 -04:00
|
|
|
$LDAPADD -D "$MANAGERDN" -H $URI1 -w $PASSWD < \
|
2005-04-20 14:57:36 -04:00
|
|
|
$LDIFORDERED > $TESTOUT 2>&1
|
|
|
|
|
RC=$?
|
|
|
|
|
if test $RC != 0 ; then
|
|
|
|
|
echo "ldapadd failed ($RC)!"
|
|
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
|
|
|
exit $RC
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
echo "Starting slapd on TCP/IP port $PORT2..."
|
2020-09-17 11:45:23 -04:00
|
|
|
. $CONFFILTER $BACKEND < $METACONF2 > $CONF2
|
2020-09-02 14:56:53 -04:00
|
|
|
$SLAPD -f $CONF2 -h $URI2 -d $LVL > $LOG2 2>&1 &
|
2005-04-20 14:57:36 -04:00
|
|
|
PID=$!
|
|
|
|
|
if test $WAIT != 0 ; then
|
|
|
|
|
echo PID $PID
|
|
|
|
|
read foo
|
|
|
|
|
fi
|
|
|
|
|
KILLPIDS="$KILLPIDS $PID"
|
|
|
|
|
|
2005-09-30 03:32:49 -04:00
|
|
|
sleep 1
|
|
|
|
|
|
2005-04-20 14:57:36 -04:00
|
|
|
echo "Using ldapsearch to check that slapd is running..."
|
|
|
|
|
for i in 0 1 2 3 4 5; do
|
2020-09-22 15:41:16 -04:00
|
|
|
$LDAPSEARCH -s base -b "$MONITOR" -H $URI2 \
|
2005-04-20 14:57:36 -04:00
|
|
|
'objectclass=*' > /dev/null 2>&1
|
|
|
|
|
RC=$?
|
|
|
|
|
if test $RC = 0 ; then
|
|
|
|
|
break
|
|
|
|
|
fi
|
|
|
|
|
echo "Waiting 5 seconds for slapd to start..."
|
|
|
|
|
sleep 5
|
|
|
|
|
done
|
|
|
|
|
if test $RC != 0 ; then
|
|
|
|
|
echo "ldapsearch failed ($RC)!"
|
|
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
|
|
|
exit $RC
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
echo "Using ldapadd to populate the database..."
|
2020-09-22 15:41:16 -04:00
|
|
|
$LDAPADD -D "$METAMANAGERDN" -H $URI2 -w $PASSWD < \
|
2005-04-20 14:57:36 -04:00
|
|
|
$LDIFMETA >> $TESTOUT 2>&1
|
|
|
|
|
RC=$?
|
|
|
|
|
if test $RC != 0 ; then
|
|
|
|
|
echo "ldapadd failed ($RC)!"
|
|
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
|
|
|
exit $RC
|
|
|
|
|
fi
|
|
|
|
|
|
2005-04-22 17:47:55 -04:00
|
|
|
echo "Starting slapd on TCP/IP port $PORT3..."
|
2020-09-17 11:45:23 -04:00
|
|
|
. $CONFFILTER $BACKEND < $METACONF > $CONF3
|
2020-09-02 14:56:53 -04:00
|
|
|
$SLAPD -f $CONF3 -h $URI3 -d $LVL > $LOG3 2>&1 &
|
2005-04-22 17:47:55 -04:00
|
|
|
PID=$!
|
|
|
|
|
if test $WAIT != 0 ; then
|
|
|
|
|
echo PID $PID
|
|
|
|
|
read foo
|
|
|
|
|
fi
|
|
|
|
|
KILLPIDS="$KILLPIDS $PID"
|
|
|
|
|
|
2005-09-30 03:32:49 -04:00
|
|
|
sleep 1
|
|
|
|
|
|
2005-04-22 17:47:55 -04:00
|
|
|
echo "Using ldapsearch to check that slapd is running..."
|
|
|
|
|
for i in 0 1 2 3 4 5; do
|
2020-09-22 15:41:16 -04:00
|
|
|
$LDAPSEARCH -s base -b "$MONITOR" -H $URI3 \
|
2005-04-22 17:47:55 -04:00
|
|
|
'objectclass=*' > /dev/null 2>&1
|
|
|
|
|
RC=$?
|
|
|
|
|
if test $RC = 0 ; then
|
|
|
|
|
break
|
|
|
|
|
fi
|
|
|
|
|
echo "Waiting 5 seconds for slapd to start..."
|
|
|
|
|
sleep 5
|
|
|
|
|
done
|
|
|
|
|
if test $RC != 0 ; then
|
|
|
|
|
echo "ldapsearch failed ($RC)!"
|
|
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
|
|
|
exit $RC
|
|
|
|
|
fi
|
|
|
|
|
|
2005-04-20 14:57:36 -04:00
|
|
|
cat /dev/null > $SEARCHOUT
|
|
|
|
|
|
|
|
|
|
mkdir -p $TESTDIR/$DATADIR
|
|
|
|
|
METABASEDN="o=Example,c=US"
|
|
|
|
|
for f in $DATADIR/do_* ; do
|
|
|
|
|
sed -e "s;$BASEDN;$METABASEDN;" $f > $TESTDIR/$f
|
|
|
|
|
done
|
|
|
|
|
|
2005-04-21 06:30:54 -04:00
|
|
|
# add a read that matches only the local database, but selects
|
|
|
|
|
# also the remote as candidate; this should be removed to compare
|
|
|
|
|
# execution times with test008...
|
2005-04-20 23:24:15 -04:00
|
|
|
for f in $TESTDIR/$DATADIR/do_read.* ; do
|
|
|
|
|
echo "ou=Meta,$METABASEDN" >> $f
|
|
|
|
|
done
|
|
|
|
|
|
2005-04-25 20:06:07 -04:00
|
|
|
# add a read that matches a referral in the local database only,
|
|
|
|
|
# but selects also the remote as candidate; this should be removed
|
|
|
|
|
# to compare execution times with test008...
|
|
|
|
|
for f in $TESTDIR/$DATADIR/do_read.* ; do
|
|
|
|
|
echo "cn=Somewhere,ou=Meta,$METABASEDN" >> $f
|
|
|
|
|
done
|
|
|
|
|
|
2006-02-03 12:58:07 -05:00
|
|
|
# add a bind that resolves to a referral
|
|
|
|
|
for f in $TESTDIR/$DATADIR/do_bind.* ; do
|
|
|
|
|
echo "cn=Foo,ou=Meta,$METABASEDN" >> $f
|
|
|
|
|
echo "bar" >> $f
|
2006-03-03 11:03:05 -05:00
|
|
|
echo "" >> $f
|
|
|
|
|
echo "" >> $f
|
2006-02-03 12:58:07 -05:00
|
|
|
done
|
|
|
|
|
|
2008-07-19 10:28:41 -04:00
|
|
|
# NOTE: copies do_* files from $TESTDIR/$DATADIR to $TESTDIR
|
2020-09-17 11:45:23 -04:00
|
|
|
$MONITORDATA "$TESTDIR/$DATADIR" "$TESTDIR"
|
2008-07-19 10:28:41 -04:00
|
|
|
|
2010-08-29 01:06:07 -04:00
|
|
|
BINDDN="cn=Manager,o=Local"
|
|
|
|
|
PASSWD="secret"
|
2005-04-20 14:57:36 -04:00
|
|
|
echo "Using tester for concurrent server access..."
|
2020-09-22 15:41:16 -04:00
|
|
|
$SLAPDTESTER -P "$PROGDIR" -d "$TESTDIR" -H $URI3 \
|
2010-08-29 01:06:07 -04:00
|
|
|
-D "$BINDDN" -w $PASSWD -l $TESTLOOPS -j $TESTCHILDREN \
|
2010-08-28 22:54:50 -04:00
|
|
|
-r 20 -i '!REFERRAL' -i '*INVALID_CREDENTIALS' -SS
|
2005-04-20 14:57:36 -04:00
|
|
|
RC=$?
|
|
|
|
|
|
|
|
|
|
if test $RC != 0 ; then
|
|
|
|
|
echo "slapd-tester failed ($RC)!"
|
|
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
|
|
|
exit $RC
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
echo "Using ldapsearch to retrieve all the entries..."
|
2020-09-22 15:41:16 -04:00
|
|
|
$LDAPSEARCH -S "" -b "$METABASEDN" -H $URI3 \
|
2005-04-20 14:57:36 -04:00
|
|
|
'objectClass=*' > $SEARCHOUT 2>&1
|
|
|
|
|
RC=$?
|
|
|
|
|
|
|
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
|
|
|
|
|
|
|
|
if test $RC != 0 ; then
|
|
|
|
|
echo "ldapsearch failed ($RC)!"
|
|
|
|
|
exit $RC
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
echo "Filtering ldapsearch results..."
|
2009-11-29 04:10:25 -05:00
|
|
|
$LDIFFILTER < $SEARCHOUT > $SEARCHFLT
|
2005-04-20 14:57:36 -04:00
|
|
|
echo "Filtering original ldif used to create database..."
|
2009-11-29 04:10:25 -05:00
|
|
|
$LDIFFILTER < $METACONCURRENCYOUT > $LDIFFLT
|
2005-04-20 14:57:36 -04:00
|
|
|
echo "Comparing filter output..."
|
|
|
|
|
$CMP $SEARCHFLT $LDIFFLT > $CMPOUT
|
2005-04-25 14:56:56 -04:00
|
|
|
|
2005-04-20 14:57:36 -04:00
|
|
|
if test $? != 0 ; then
|
2005-11-03 09:20:08 -05:00
|
|
|
echo "comparison failed - slapd-meta search/modification didn't succeed"
|
2005-04-20 14:57:36 -04:00
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
echo ">>>>> Test succeeded"
|
2006-01-11 00:25:09 -05:00
|
|
|
|
|
|
|
|
test $KILLSERVERS != no && wait
|
|
|
|
|
|
2005-04-20 14:57:36 -04:00
|
|
|
exit 0
|