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