1999-07-15 22:45:46 -04:00
|
|
|
#! /bin/sh
|
1999-09-01 20:52:43 -04:00
|
|
|
# $OpenLDAP$
|
2003-11-28 15:00:23 -05:00
|
|
|
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
|
##
|
2024-03-26 15:45:07 -04:00
|
|
|
## Copyright 1998-2024 The OpenLDAP Foundation.
|
2003-11-28 15:00:23 -05: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>.
|
1999-07-15 22:45:46 -04:00
|
|
|
|
2000-10-01 18:46:52 -04:00
|
|
|
echo "running defines.sh"
|
1999-07-15 22:45:46 -04:00
|
|
|
. $SRCDIR/scripts/defines.sh
|
|
|
|
|
|
2000-10-01 18:46:52 -04:00
|
|
|
#
|
|
|
|
|
# Test default referral
|
|
|
|
|
#
|
|
|
|
|
|
2005-09-29 18:26:43 -04:00
|
|
|
mkdir -p $TESTDIR $DBDIR1 $DBDIR2
|
1999-07-15 22:45:46 -04:00
|
|
|
|
1999-08-22 13:10:23 -04:00
|
|
|
echo "Running slapadd to build slapd database..."
|
2020-09-17 11:45:23 -04:00
|
|
|
. $CONFFILTER $BACKEND < $CONF > $CONF1
|
2003-10-22 01:14:08 -04:00
|
|
|
$SLAPADD -f $CONF1 -l $LDIFORDERED
|
1999-07-15 22:45:46 -04:00
|
|
|
RC=$?
|
|
|
|
|
if test $RC != 0 ; then
|
2000-07-04 18:11:12 -04:00
|
|
|
echo "slapadd failed ($RC)!"
|
1999-07-15 22:45:46 -04:00
|
|
|
exit $RC
|
|
|
|
|
fi
|
|
|
|
|
|
2020-06-15 16:06:35 -04:00
|
|
|
echo "Starting provider slapd on TCP/IP port $PORT1..."
|
2020-09-02 14:56:53 -04:00
|
|
|
$SLAPD -n provider -f $CONF1 -h $URI1 -d $LVL > $LOG1 2>&1 &
|
1999-07-15 22:45:46 -04:00
|
|
|
PID=$!
|
2001-09-22 01:34:22 -04:00
|
|
|
if test $WAIT != 0 ; then
|
|
|
|
|
echo PID $PID
|
|
|
|
|
read foo
|
|
|
|
|
fi
|
1999-07-15 22:45:46 -04:00
|
|
|
|
2020-06-15 16:06:35 -04:00
|
|
|
echo "Starting consumer slapd on TCP/IP port $PORT2..."
|
2020-09-17 11:45:23 -04:00
|
|
|
. $CONFFILTER $BACKEND < $REFCONSUMERCONF > $CONF2
|
2020-09-02 14:56:53 -04:00
|
|
|
$SLAPD -n consumer -f $CONF2 -h $URI2 -d $LVL > $LOG2 2>&1 &
|
2020-06-15 16:06:35 -04:00
|
|
|
CONSUMERPID=$!
|
2001-09-22 01:34:22 -04:00
|
|
|
if test $WAIT != 0 ; then
|
2020-06-15 16:06:35 -04:00
|
|
|
echo CONSUMERPID $CONSUMERPID
|
2001-09-22 01:34:22 -04:00
|
|
|
read foo
|
|
|
|
|
fi
|
1999-07-15 22:45:46 -04:00
|
|
|
|
2020-06-15 16:06:35 -04:00
|
|
|
KILLPIDS="$PID $CONSUMERPID"
|
2003-10-22 01:14:08 -04:00
|
|
|
|
2005-09-30 03:32:49 -04:00
|
|
|
sleep 1
|
|
|
|
|
|
2020-06-15 16:06:35 -04:00
|
|
|
echo "Testing for provider slapd..."
|
1999-07-15 22:45:46 -04:00
|
|
|
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 \
|
1999-07-15 22:45:46 -04:00
|
|
|
'objectclass=*' > /dev/null 2>&1
|
|
|
|
|
RC=$?
|
2002-09-01 07:39:08 -04:00
|
|
|
if test $RC = 0 ; then
|
|
|
|
|
break
|
1999-07-15 22:45:46 -04:00
|
|
|
fi
|
2020-06-15 16:06:35 -04:00
|
|
|
echo "Waiting 5 seconds for provider slapd to start..."
|
2002-09-01 07:39:08 -04:00
|
|
|
sleep 5
|
1999-07-15 22:45:46 -04:00
|
|
|
done
|
|
|
|
|
|
|
|
|
|
if test $RC != 0 ; then
|
2000-07-04 18:11:12 -04:00
|
|
|
echo "ldapsearch failed ($RC)!"
|
2003-10-22 01:14:08 -04:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
1999-07-15 22:45:46 -04:00
|
|
|
exit $RC
|
|
|
|
|
fi
|
|
|
|
|
|
2020-06-15 16:06:35 -04:00
|
|
|
echo "Testing for consumer slapd..."
|
1999-07-15 22:45:46 -04:00
|
|
|
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 \
|
1999-07-15 22:45:46 -04:00
|
|
|
'objectclass=*' > /dev/null 2>&1
|
|
|
|
|
RC=$?
|
2002-09-01 07:39:08 -04:00
|
|
|
if test $RC = 0 ; then
|
|
|
|
|
break
|
1999-07-15 22:45:46 -04:00
|
|
|
fi
|
2020-06-15 16:06:35 -04:00
|
|
|
echo "Waiting 5 seconds for consumer slapd to start..."
|
2002-09-01 07:39:08 -04:00
|
|
|
sleep 5
|
1999-07-15 22:45:46 -04:00
|
|
|
done
|
|
|
|
|
|
|
|
|
|
cat /dev/null > $SEARCHOUT
|
|
|
|
|
|
|
|
|
|
echo "Testing exact searching..."
|
2020-09-22 15:41:16 -04:00
|
|
|
$LDAPSEARCH -C -S "" -b "$BASEDN" -H $URI2 \
|
1999-07-15 22:45:46 -04:00
|
|
|
'sn=jensen' >> $SEARCHOUT 2>&1
|
2002-05-17 05:11:30 -04:00
|
|
|
RC=$?
|
1999-07-15 22:45:46 -04:00
|
|
|
if test $RC != 0 ; then
|
2000-07-04 18:11:12 -04:00
|
|
|
echo "ldapsearch failed ($RC)!"
|
2003-10-22 01:14:08 -04:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
1999-07-15 22:45:46 -04:00
|
|
|
exit $RC
|
|
|
|
|
fi
|
|
|
|
|
|
2004-04-09 17:30:55 -04:00
|
|
|
echo "Testing approximate searching..."
|
2020-09-22 15:41:16 -04:00
|
|
|
$LDAPSEARCH -C -S "" -b "$BASEDN" -H $URI2 \
|
2004-04-09 17:30:55 -04:00
|
|
|
'(sn=jENSEN)' name >> $SEARCHOUT 2>&1
|
|
|
|
|
RC=$?
|
|
|
|
|
if test $RC != 0 ; then
|
|
|
|
|
echo "ldapsearch failed ($RC)!"
|
|
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
|
|
|
exit $RC
|
|
|
|
|
fi
|
|
|
|
|
|
1999-07-15 22:45:46 -04:00
|
|
|
echo "Testing OR searching..."
|
2020-09-22 15:41:16 -04:00
|
|
|
$LDAPSEARCH -C -S "" -b "$BASEDN" -H $URI2 \
|
2003-08-22 17:29:44 -04:00
|
|
|
'(|(objectclass=groupofnames)(objectClass=groupofuniquenames)(sn=jones))' >> $SEARCHOUT 2>&1
|
2002-05-17 05:11:30 -04:00
|
|
|
RC=$?
|
1999-07-15 22:45:46 -04:00
|
|
|
if test $RC != 0 ; then
|
2000-07-04 18:11:12 -04:00
|
|
|
echo "ldapsearch failed ($RC)!"
|
2003-10-22 01:14:08 -04:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
1999-07-15 22:45:46 -04:00
|
|
|
exit $RC
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
echo "Testing AND matching and ends-with searching..."
|
2020-09-22 15:41:16 -04:00
|
|
|
$LDAPSEARCH -C -S "" -b "ou=groups,$BASEDN" -s one -H $URI2 \
|
2000-05-23 15:47:54 -04:00
|
|
|
'(&(objectclass=groupofnames)(cn=A*))' >> $SEARCHOUT 2>&1
|
2002-05-17 05:11:30 -04:00
|
|
|
RC=$?
|
1999-07-15 22:45:46 -04:00
|
|
|
if test $RC != 0 ; then
|
2000-07-04 18:11:12 -04:00
|
|
|
echo "ldapsearch failed ($RC)!"
|
2003-10-22 01:14:08 -04:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
1999-07-15 22:45:46 -04:00
|
|
|
exit $RC
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
echo "Testing NOT searching..."
|
2020-09-22 15:41:16 -04:00
|
|
|
$LDAPSEARCH -C -S "" -b "$BASEDN" -H $URI2 \
|
2002-02-09 18:12:30 -05:00
|
|
|
'(!(objectclass=pilotPerson))' >> $SEARCHOUT 2>&1
|
2002-05-17 05:11:30 -04:00
|
|
|
RC=$?
|
1999-07-15 22:45:46 -04:00
|
|
|
if test $RC != 0 ; then
|
2000-07-04 18:11:12 -04:00
|
|
|
echo "ldapsearch failed ($RC)!"
|
2003-10-22 01:14:08 -04:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
1999-07-15 22:45:46 -04:00
|
|
|
exit $RC
|
|
|
|
|
fi
|
|
|
|
|
|
2002-08-28 22:55:39 -04:00
|
|
|
echo "Testing objectClass/attributeType inheritance ..."
|
2020-09-22 15:41:16 -04:00
|
|
|
$LDAPSEARCH -M -a never -S "" -b "$BASEDN" -H $URI1 \
|
2002-08-28 22:55:39 -04:00
|
|
|
'(&(objectClass=inetorgperson)(userid=uham))' \
|
|
|
|
|
"2.5.4.0" "userid" >> $SEARCHOUT 2>&1
|
|
|
|
|
RC=$?
|
|
|
|
|
if test $RC != 0 ; then
|
|
|
|
|
echo "ldapsearch failed ($RC)!"
|
2003-10-22 01:14:08 -04:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
2002-08-28 22:55:39 -04:00
|
|
|
exit $RC
|
|
|
|
|
fi
|
|
|
|
|
|
2006-08-22 16:57:33 -04:00
|
|
|
echo "Testing dontUseCopy control..."
|
2020-09-22 15:41:16 -04:00
|
|
|
$LDAPSEARCH -C -S "" -b "$BASEDN" -H $URI2 \
|
2006-08-22 16:57:33 -04:00
|
|
|
-E \!dontUseCopy \
|
2006-08-31 09:35:01 -04:00
|
|
|
'sn=jensen' >> $SEARCHOUT
|
2006-08-22 16:57:33 -04:00
|
|
|
RC=$?
|
|
|
|
|
if test $RC = 10 ; then
|
|
|
|
|
echo "ldapsearch failed as expected ($RC)"
|
|
|
|
|
else
|
|
|
|
|
echo "ldapsearch did not error as expected ($RC)!"
|
|
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
|
|
|
exit $RC
|
|
|
|
|
fi
|
2002-08-28 22:55:39 -04:00
|
|
|
|
2003-10-22 01:14:08 -04:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
1999-07-15 22:45:46 -04:00
|
|
|
|
2020-06-15 16:06:35 -04:00
|
|
|
LDIF=$SEARCHOUTPROVIDER
|
1999-07-15 22:45:46 -04:00
|
|
|
|
|
|
|
|
echo "Filtering ldapsearch results..."
|
2009-11-29 04:10:25 -05:00
|
|
|
$LDIFFILTER < $SEARCHOUT > $SEARCHFLT
|
1999-07-15 22:45:46 -04:00
|
|
|
echo "Filtering original ldif used to create database..."
|
2009-11-29 04:10:25 -05:00
|
|
|
$LDIFFILTER < $LDIF > $LDIFFLT
|
1999-07-15 22:45:46 -04:00
|
|
|
echo "Comparing filter output..."
|
2000-07-19 22:23:00 -04:00
|
|
|
$CMP $SEARCHFLT $LDIFFLT > $CMPOUT
|
1999-07-15 22:45:46 -04:00
|
|
|
|
|
|
|
|
if test $? != 0 ; then
|
|
|
|
|
echo "Comparison failed"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
echo ">>>>> Test succeeded"
|
2006-01-11 00:25:09 -05:00
|
|
|
|
|
|
|
|
test $KILLSERVERS != no && wait
|
|
|
|
|
|
1999-07-15 22:45:46 -04:00
|
|
|
exit 0
|