2004-04-17 23:46:18 +08:00
|
|
|
#! /bin/sh
|
2004-04-17 16:35:18 +08:00
|
|
|
# $OpenLDAP$
|
|
|
|
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
##
|
2006-01-04 07:11:52 +08:00
|
|
|
## Copyright 2004-2006 The OpenLDAP Foundation.
|
2004-04-17 16:35:18 +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>.
|
|
|
|
|
|
|
|
echo "running defines.sh"
|
|
|
|
. $SRCDIR/scripts/defines.sh
|
|
|
|
|
|
|
|
if test $UNIQUE = uniqueno; then
|
|
|
|
echo "Attribute Uniqueness overlay not available, test skipped"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
mkdir -p $TESTDIR $DBDIR1
|
|
|
|
|
|
|
|
echo "Running slapadd to build slapd database..."
|
|
|
|
. $CONFFILTER $BACKEND $MONITORDB < $UNIQUECONF > $CONF1
|
|
|
|
$SLAPADD -f $CONF1 -l $LDIFUNIQUE
|
|
|
|
RC=$?
|
|
|
|
if test $RC != 0 ; then
|
|
|
|
echo "slapadd failed ($RC)!"
|
|
|
|
exit $RC
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Starting slapd on TCP/IP port $PORT1..."
|
|
|
|
$SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING > $LOG1 2>&1 &
|
|
|
|
PID=$!
|
|
|
|
if test $WAIT != 0 ; then
|
|
|
|
echo PID $PID
|
|
|
|
read foo
|
|
|
|
fi
|
|
|
|
KILLPIDS="$PID"
|
|
|
|
|
2005-09-30 15:32:49 +08:00
|
|
|
sleep 1
|
|
|
|
|
2004-04-17 16:35:18 +08:00
|
|
|
echo "Testing slapd attribute uniqueness operations..."
|
|
|
|
for i in 0 1 2 3 4 5; do
|
|
|
|
$LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT1 \
|
|
|
|
'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 "Adding a unique record..."
|
|
|
|
|
|
|
|
#$LDAPADD -D "$UNIQUEDN" -h $LOCALHOST -p $PORT1 -w $PASSWD > \
|
|
|
|
# $TESTOUT 2>&1 << EOTUNIQ1
|
2004-04-22 07:25:30 +08:00
|
|
|
$LDAPADD -D "$UNIQUEDN" -h $LOCALHOST -p $PORT1 -w $PASSWD \
|
|
|
|
> /dev/null << EOTUNIQ1
|
2004-04-17 16:35:18 +08:00
|
|
|
dn: uid=dave,ou=users,o=unique
|
|
|
|
objectClass: inetOrgPerson
|
|
|
|
uid: dave
|
|
|
|
sn: nothere
|
|
|
|
cn: dave
|
|
|
|
businessCategory: otest
|
|
|
|
carLicense: TEST
|
|
|
|
departmentNumber: 42
|
2005-11-25 10:07:31 +08:00
|
|
|
# NOTE: use special chars in attr value to be used
|
|
|
|
# in internal searches ITS#4212
|
|
|
|
displayName: Dave (ITS#4212)
|
2004-04-17 16:35:18 +08:00
|
|
|
employeeNumber: 69
|
|
|
|
employeeType: contractor
|
|
|
|
givenName: Dave
|
|
|
|
EOTUNIQ1
|
|
|
|
|
|
|
|
RC=$?
|
|
|
|
if test $RC != 0 ; then
|
|
|
|
echo "ldapadd failed ($RC)!"
|
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
|
|
exit $RC
|
|
|
|
fi
|
|
|
|
|
|
|
|
#echo ----------------------
|
|
|
|
#$LDAPSEARCH -S "" -b "o=unique" -h $LOCALHOST -p $PORT1
|
|
|
|
|
|
|
|
echo "Adding a non-unique record..."
|
|
|
|
|
|
|
|
$LDAPADD -D "$UNIQUEDN" -h $LOCALHOST -p $PORT1 -w $PASSWD > \
|
|
|
|
$TESTOUT 2>&1 << EOTUNIQ2
|
|
|
|
dn: uid=bill,ou=users,o=unique
|
|
|
|
objectClass: inetOrgPerson
|
|
|
|
uid: bill
|
|
|
|
sn: johnson
|
|
|
|
cn: bill
|
|
|
|
businessCategory: rtest
|
|
|
|
carLicense: ABC123
|
|
|
|
departmentNumber: 42
|
|
|
|
displayName: Bill
|
|
|
|
employeeNumber: 5150
|
|
|
|
employeeType: contractor
|
|
|
|
givenName: Bill
|
|
|
|
EOTUNIQ2
|
|
|
|
|
|
|
|
RC=$?
|
2004-04-17 23:46:18 +08:00
|
|
|
if test $RC != 19 ; then
|
|
|
|
echo "unique check failed ($RC)!"
|
2004-04-17 16:35:18 +08:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
2004-04-17 23:46:18 +08:00
|
|
|
exit -1
|
2004-04-17 16:35:18 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
#echo ----------------------
|
|
|
|
#$LDAPSEARCH -S "" -b "o=unique" -h $LOCALHOST -p $PORT1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
|
|
|
|
|
|
echo ">>>>> Test succeeded"
|
2006-01-11 13:25:09 +08:00
|
|
|
|
|
|
|
test $KILLSERVERS != no && wait
|
|
|
|
|
2004-04-17 16:35:18 +08:00
|
|
|
exit 0
|