1999-04-21 13:59:01 +08:00
|
|
|
#! /bin/sh
|
1999-09-02 08:52:43 +08:00
|
|
|
# $OpenLDAP$
|
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
|
1999-01-10 10:25:41 +08:00
|
|
|
|
1999-04-10 12:42:33 +08:00
|
|
|
echo "running defines.sh $SRCDIR $BACKEND"
|
1999-04-08 10:18:54 +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
|
|
|
|
1999-08-23 01:10:23 +08:00
|
|
|
echo "Running slapadd to build slapd database..."
|
1999-08-18 03:00:59 +08:00
|
|
|
$LDIF2LDBM -f $CONF -l $LDIF
|
1998-08-09 08:43:13 +08:00
|
|
|
RC=$?
|
1999-04-21 13:59:01 +08:00
|
|
|
if test $RC != 0 ; then
|
1999-08-23 01:10:23 +08:00
|
|
|
echo "slapadd failed!"
|
1998-08-09 08:43:13 +08:00
|
|
|
exit $RC
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Starting slapd on TCP/IP port $PORT..."
|
1999-02-12 23:22:43 +08:00
|
|
|
$SLAPD -f $ACLCONF -p $PORT -d $LVL $TIMING > $MASTERLOG 2>&1 &
|
1998-08-09 08:43:13 +08:00
|
|
|
PID=$!
|
|
|
|
|
|
|
|
echo "Testing slapd access control..."
|
|
|
|
for i in 0 1 2 3 4 5; do
|
1999-07-31 07:00:02 +08:00
|
|
|
$LDAPSEARCH -s base -b "$MONITOR" -h localhost -p $PORT \
|
1999-07-16 10:45:46 +08:00
|
|
|
'objectclass=*' > /dev/null 2>&1
|
1998-08-09 08:43:13 +08:00
|
|
|
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-04-21 13:59:01 +08:00
|
|
|
if test $RC != 0 ; then
|
1998-08-09 08:43:13 +08:00
|
|
|
echo "ldapsearch failed!"
|
|
|
|
kill -HUP $PID
|
|
|
|
exit $RC
|
|
|
|
fi
|
|
|
|
|
|
|
|
cat /dev/null > $SEARCHOUT
|
|
|
|
|
|
|
|
#
|
|
|
|
# Try to read an entry inside the Alumni Association container. It should
|
|
|
|
# give us nothing if we're not bound, and should return all attributes
|
|
|
|
# if we're bound as anyone under UM.
|
|
|
|
#
|
1999-07-31 07:00:02 +08:00
|
|
|
$LDAPSEARCH -b "$JAJDN" -h localhost -p $PORT "objectclass=*" \
|
1998-08-09 08:43:13 +08:00
|
|
|
>> $SEARCHOUT 2>&1
|
|
|
|
|
1999-07-31 07:00:02 +08:00
|
|
|
$LDAPSEARCH -b "$JAJDN" -h localhost -p $PORT \
|
1998-08-09 08:43:13 +08:00
|
|
|
-D "$BABSDN" -w bjensen "objectclass=*" >> $SEARCHOUT 2>&1
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Try to add a "member" attribute to the "All Staff" group. It should
|
|
|
|
# fail when we add some DN other than our own, and should succeed when
|
|
|
|
# we add our own DN.
|
|
|
|
# bjensen
|
|
|
|
$LDAPMODIFY -D "$JAJDN" -h localhost -p $PORT -w jaj > \
|
1999-07-30 05:25:39 +08:00
|
|
|
$TESTOUT 2>&1 << EOMODS1
|
1999-07-31 08:35:30 +08:00
|
|
|
version: 1
|
1998-08-09 08:43:13 +08:00
|
|
|
dn: cn=ITD Staff, ou=Groups, o=University of Michigan, c=US
|
|
|
|
changetype: modify
|
|
|
|
add: member
|
|
|
|
member: cn=Barbara Jensen, ou=Information Technology Division, ou=People, o=University of Michigan, c=US
|
|
|
|
|
|
|
|
EOMODS1
|
|
|
|
|
1999-07-30 05:25:39 +08:00
|
|
|
$LDAPMODIFY -D "$JAJDN" -h localhost -p $PORT -w jaj >> \
|
|
|
|
$TESTOUT 2>&1 << EOMODS2
|
1999-07-31 08:35:30 +08:00
|
|
|
version: 1
|
1999-07-30 05:25:39 +08:00
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
dn: cn=ITD Staff, ou=Groups, o=University of Michigan, c=US
|
|
|
|
changetype: modify
|
|
|
|
add: member
|
|
|
|
member: cn=James A Jones 1, ou=Alumni Association, ou=People, o=University of Michigan, c=US
|
|
|
|
EOMODS2
|
|
|
|
|
|
|
|
#
|
|
|
|
# Try to modify the "All Staff" group. Two attempts are made:
|
|
|
|
# 1) bound as "James A Jones 1" - should fail
|
|
|
|
# 2) bound as "Barbara Jensen" - should succeed
|
|
|
|
#
|
1999-07-30 05:25:39 +08:00
|
|
|
$LDAPMODIFY -D "$JAJDN" -h localhost -p $PORT -w jaj >> \
|
|
|
|
$TESTOUT 2>&1 << EOMODS3
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
dn: cn=ITD Staff, ou=Groups, o=University of Michigan, c=US
|
|
|
|
changetype: modify
|
|
|
|
delete: member
|
|
|
|
|
|
|
|
EOMODS3
|
|
|
|
|
1999-07-30 05:25:39 +08:00
|
|
|
$LDAPMODIFY -D "$BJORNSDN" -h localhost -p $PORT -w bjorn >> \
|
|
|
|
$TESTOUT 2>&1 << EOMODS4
|
1999-07-31 08:35:30 +08:00
|
|
|
# COMMENT
|
|
|
|
version: 1
|
|
|
|
# comment
|
1998-08-09 08:43:13 +08:00
|
|
|
dn: cn=ITD Staff, ou=Groups, o=University of Michigan, c=US
|
1999-07-31 08:35:30 +08:00
|
|
|
# comment
|
1998-08-09 08:43:13 +08:00
|
|
|
changetype: modify
|
1999-07-31 08:35:30 +08:00
|
|
|
# comment
|
1998-08-09 08:43:13 +08:00
|
|
|
add: telephonenumber
|
1999-07-31 08:35:30 +08:00
|
|
|
# comment
|
1998-08-09 08:43:13 +08:00
|
|
|
telephonenumber: +1 810 555 1212
|
1999-07-31 08:35:30 +08:00
|
|
|
# comment
|
1998-08-09 08:43:13 +08:00
|
|
|
EOMODS4
|
|
|
|
|
|
|
|
echo "Using ldapsearch to retrieve all the entries..."
|
1999-07-31 07:00:02 +08:00
|
|
|
$LDAPSEARCH -S "" -b "$BASEDN" -h localhost -p $PORT \
|
1999-01-10 10:25:41 +08:00
|
|
|
'objectClass=*' | . $SRCDIR/scripts/acfilter.sh >> $SEARCHOUT 2>&1
|
1998-08-09 08:43:13 +08:00
|
|
|
RC=$?
|
|
|
|
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
|
|
|
|
|
1999-05-22 00:50:51 +08:00
|
|
|
LDIF=$ACLOUTMASTER
|
|
|
|
|
|
|
|
echo "Filtering ldapsearch results..."
|
|
|
|
. $SRCDIR/scripts/acfilter.sh < $SEARCHOUT > $SEARCHFLT
|
|
|
|
echo "Filtering original ldif used to create database..."
|
|
|
|
. $SRCDIR/scripts/acfilter.sh < $LDIF > $LDIFFLT
|
|
|
|
echo "Comparing filter output..."
|
|
|
|
cmp $SEARCHFLT $LDIFFLT
|
|
|
|
|
1999-04-21 13:59:01 +08:00
|
|
|
if test $? != 0 ; then
|
1998-08-09 08:43:13 +08:00
|
|
|
echo "comparison failed - modify operations did not complete correctly"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo ">>>>> Test succeeded"
|
|
|
|
|
|
|
|
|
|
|
|
exit 0
|