1999-04-21 13:59:01 +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/>.
|
|
|
|
##
|
2006-01-04 07:11:52 +08:00
|
|
|
## Copyright 1998-2006 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>.
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2000-10-02 06:46:52 +08:00
|
|
|
echo "running defines.sh"
|
1999-04-08 10:18:54 +08:00
|
|
|
. $SRCDIR/scripts/defines.sh
|
1998-08-09 08:43:13 +08:00
|
|
|
|
2003-10-22 13:14:08 +08:00
|
|
|
mkdir -p $TESTDIR $DBDIR1
|
1999-03-11 06:31:26 +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-03-11 06:31:26 +08:00
|
|
|
RC=$?
|
1999-04-21 13:59:01 +08:00
|
|
|
if test $RC != 0 ; then
|
2000-07-05 05:49:00 +08:00
|
|
|
echo "slapadd failed ($RC)!"
|
1999-03-11 06:31:26 +08:00
|
|
|
exit $RC
|
|
|
|
fi
|
|
|
|
|
2003-10-22 13:14:08 +08:00
|
|
|
echo "Starting slapd on TCP/IP port $PORT1..."
|
|
|
|
$SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING > $LOG1 2>&1 &
|
1999-03-11 06:31:26 +08:00
|
|
|
PID=$!
|
2001-09-22 13:34:22 +08:00
|
|
|
if test $WAIT != 0 ; then
|
|
|
|
echo PID $PID
|
|
|
|
read foo
|
|
|
|
fi
|
2003-10-22 13:14:08 +08:00
|
|
|
KILLPIDS="$PID"
|
|
|
|
|
2005-09-30 15:32:49 +08:00
|
|
|
sleep 1
|
|
|
|
|
1999-03-11 06:31:26 +08:00
|
|
|
echo "Testing slapd modrdn operations..."
|
|
|
|
|
|
|
|
# Make sure we can search the database
|
|
|
|
for i in 0 1 2 3 4 5; do
|
2003-10-22 13:14:08 +08:00
|
|
|
$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
|
1999-08-26 08:51:27 +08:00
|
|
|
'objectClass=*' > $INITOUT 2>&1
|
1999-03-11 06:31:26 +08:00
|
|
|
RC=$?
|
2002-09-01 19:39:08 +08:00
|
|
|
if test $RC = 0 ; then
|
|
|
|
break
|
1999-03-11 06:31:26 +08:00
|
|
|
fi
|
2002-09-01 19:39:08 +08:00
|
|
|
echo "Waiting 5 seconds for slapd to start..."
|
|
|
|
sleep 5
|
1999-03-11 06:31:26 +08:00
|
|
|
done
|
|
|
|
|
1999-04-21 13:59:01 +08:00
|
|
|
if test $RC != 0 ; then
|
2000-07-05 05:49:00 +08:00
|
|
|
echo "ldapsearch failed ($RC)!"
|
2005-09-26 22:56:12 +08:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
1999-03-11 06:31:26 +08:00
|
|
|
exit $RC
|
|
|
|
fi
|
|
|
|
|
|
|
|
# -r used to do remove of old rdn
|
|
|
|
|
|
|
|
echo "Testing modrdn(deleteoldrdn=0)..."
|
2003-10-22 13:14:08 +08:00
|
|
|
$LDAPMODRDN -D "$MANAGERDN" -h $LOCALHOST -p $PORT1 -w $PASSWD > \
|
2004-04-22 06:14:01 +08:00
|
|
|
$TESTOUT 2>&1 'cn=James A Jones 1, ou=Alumni Association, ou=People, dc=example, dc=com' 'cn=James A Jones III'
|
1999-03-11 06:31:26 +08:00
|
|
|
|
|
|
|
RC=$?
|
1999-04-21 13:59:01 +08:00
|
|
|
if test $RC != 0 ; then
|
2000-07-05 05:49:00 +08:00
|
|
|
echo "ldapmodrdn failed ($RC)!"
|
2005-09-26 22:56:12 +08:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
1999-03-11 06:31:26 +08:00
|
|
|
exit $RC
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Testing modrdn(deleteoldrdn=1)..."
|
2003-10-22 13:14:08 +08:00
|
|
|
$LDAPMODRDN -D "$MANAGERDN" -r -h $LOCALHOST -p $PORT1 -w $PASSWD >> \
|
2004-04-22 06:14:01 +08:00
|
|
|
$TESTOUT 2>&1 'cn=James A Jones 2, ou=Information Technology Division, ou=People, dc=example, dc=com' 'cn=James A Jones II'
|
1999-03-11 06:31:26 +08:00
|
|
|
|
|
|
|
RC=$?
|
1999-04-21 13:59:01 +08:00
|
|
|
if test $RC != 0 ; then
|
2000-07-05 05:49:00 +08:00
|
|
|
echo "ldapmodrdn failed ($RC)!"
|
2005-09-26 22:56:12 +08:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
1999-03-11 06:31:26 +08:00
|
|
|
exit $RC
|
|
|
|
fi
|
|
|
|
|
1999-05-27 08:56:43 +08:00
|
|
|
# Ensure the new rdn's can be found
|
|
|
|
|
|
|
|
echo "Using ldapsearch to retrieve entries using new rdn (cn=James A Jones III)..."
|
2003-10-22 13:14:08 +08:00
|
|
|
$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
|
1999-08-26 08:22:05 +08:00
|
|
|
'cn=James A Jones III' > $SEARCHOUT 2>&1
|
1999-05-27 08:56:43 +08:00
|
|
|
RC=$?
|
|
|
|
if test $RC != 0 ; then
|
2000-07-05 05:49:00 +08:00
|
|
|
echo "ldapsearch failed ($RC)!"
|
2003-10-22 13:14:08 +08:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
1999-05-27 08:56:43 +08:00
|
|
|
exit $RC
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
LDIF=$MODRDNOUTMASTER1
|
|
|
|
|
|
|
|
echo "Filtering ldapsearch results..."
|
2000-10-02 06:46:52 +08:00
|
|
|
. $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
|
1999-05-27 08:56:43 +08:00
|
|
|
echo "Filtering original ldif used to create database..."
|
2000-10-02 06:46:52 +08:00
|
|
|
. $LDIFFILTER < $LDIF > $LDIFFLT
|
1999-05-27 08:56:43 +08:00
|
|
|
echo "Comparing filter output..."
|
2000-07-20 10:23:00 +08:00
|
|
|
$CMP $SEARCHFLT $LDIFFLT > $CMPOUT
|
1999-05-27 08:56:43 +08:00
|
|
|
|
|
|
|
if test $? != 0 ; then
|
|
|
|
echo "comparison failed - modrdn operations did not complete correctly"
|
2003-10-22 13:14:08 +08:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
1999-05-27 08:56:43 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
echo "Using ldapsearch to retrieve entries using new rdn (cn=James A Jones II)..."
|
2003-10-22 13:14:08 +08:00
|
|
|
$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
|
1999-08-26 08:22:05 +08:00
|
|
|
'cn=James A Jones II' > $SEARCHOUT 2>&1
|
1999-05-27 08:56:43 +08:00
|
|
|
RC=$?
|
|
|
|
if test $RC != 0 ; then
|
2000-07-05 05:49:00 +08:00
|
|
|
echo "ldapsearch failed ($RC)!"
|
2003-10-22 13:14:08 +08:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
1999-05-27 08:56:43 +08:00
|
|
|
exit $RC
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
LDIF=$MODRDNOUTMASTER2
|
|
|
|
|
|
|
|
echo "Filtering ldapsearch results..."
|
2000-10-02 06:46:52 +08:00
|
|
|
. $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
|
1999-05-27 08:56:43 +08:00
|
|
|
echo "Filtering original ldif used to create database..."
|
2000-10-02 06:46:52 +08:00
|
|
|
. $LDIFFILTER < $LDIF > $LDIFFLT
|
1999-05-27 08:56:43 +08:00
|
|
|
echo "Comparing filter output..."
|
2000-07-20 10:23:00 +08:00
|
|
|
$CMP $SEARCHFLT $LDIFFLT > $CMPOUT
|
1999-05-27 08:56:43 +08:00
|
|
|
|
|
|
|
if test $? != 0 ; then
|
|
|
|
echo "comparison failed - modrdn operations did not complete correctly"
|
2003-10-22 13:14:08 +08:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
1999-05-27 08:56:43 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Ensure that you cannot find the entry for which the rdn was deleted as
|
|
|
|
# an attribute.
|
|
|
|
|
|
|
|
echo "Using ldapsearch to retrieve entries using removed rdn (cn=James A Jones 2)..."
|
2003-10-22 13:14:08 +08:00
|
|
|
$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
|
1999-08-26 08:22:05 +08:00
|
|
|
'cn=James A Jones 2' > $SEARCHOUT 2>&1
|
1999-05-27 08:56:43 +08:00
|
|
|
RC=$?
|
1999-08-26 08:22:05 +08:00
|
|
|
if test $RC != 0 ; then
|
2003-10-22 13:14:08 +08:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
2000-07-05 05:49:00 +08:00
|
|
|
echo "ldapsearch failed ($RC)!"
|
1999-05-27 08:56:43 +08:00
|
|
|
exit $RC
|
|
|
|
fi
|
2001-10-02 16:27:18 +08:00
|
|
|
$CMP $SEARCHOUT - < /dev/null > $CMPOUT
|
1999-08-26 08:22:05 +08:00
|
|
|
if test $? != 0 ; then
|
|
|
|
echo "failure: ldapsearch found attribute that was to be removed!"
|
2003-10-22 13:14:08 +08:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
1999-08-26 08:22:05 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
1999-05-27 08:56:43 +08:00
|
|
|
|
1999-03-11 06:31:26 +08:00
|
|
|
echo "Using ldapsearch to retrieve all the entries..."
|
2003-10-22 13:14:08 +08:00
|
|
|
$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
|
1999-05-22 00:50:51 +08:00
|
|
|
'objectClass=*' > $SEARCHOUT 2>&1
|
1999-03-11 06:31:26 +08:00
|
|
|
RC=$?
|
1999-04-21 13:59:01 +08:00
|
|
|
if test $RC != 0 ; then
|
2003-10-22 13:14:08 +08:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
2000-07-05 05:49:00 +08:00
|
|
|
echo "ldapsearch failed ($RC)!"
|
1999-03-11 06:31:26 +08:00
|
|
|
exit $RC
|
|
|
|
fi
|
|
|
|
|
1999-05-27 08:31:30 +08:00
|
|
|
LDIF=$MODRDNOUTMASTER0
|
1999-05-22 00:50:51 +08:00
|
|
|
|
|
|
|
echo "Filtering ldapsearch results..."
|
2000-10-02 06:46:52 +08:00
|
|
|
. $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
|
1999-05-22 00:50:51 +08:00
|
|
|
echo "Filtering original ldif used to create database..."
|
2000-10-02 06:46:52 +08:00
|
|
|
. $LDIFFILTER < $LDIF > $LDIFFLT
|
1999-05-22 00:50:51 +08:00
|
|
|
echo "Comparing filter output..."
|
2000-07-20 10:23:00 +08:00
|
|
|
$CMP $SEARCHFLT $LDIFFLT > $CMPOUT
|
1999-05-22 00:50:51 +08:00
|
|
|
|
1999-05-27 08:56:43 +08:00
|
|
|
if test $? != 0 ; then
|
|
|
|
echo "comparison failed - modrdn operations did not complete correctly"
|
2003-10-22 13:14:08 +08:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
1999-05-27 08:56:43 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2005-04-15 12:46:01 +08:00
|
|
|
# Test that you can use modrdn with an attribute value which was previously
|
|
|
|
# present
|
1999-05-27 08:56:43 +08:00
|
|
|
|
|
|
|
echo "Testing modrdn(deleteoldrdn=1), modrdn with new rdn already an att val..."
|
2003-10-22 13:14:08 +08:00
|
|
|
$LDAPMODRDN -D "$MANAGERDN" -r -h $LOCALHOST -p $PORT1 -w $PASSWD > \
|
2004-04-22 06:14:01 +08:00
|
|
|
/dev/null 2>&1 'cn=James A Jones III, ou=Alumni Association, ou=People, dc=example, dc=com' 'cn=James A Jones 1'
|
1999-05-27 08:56:43 +08:00
|
|
|
|
|
|
|
RC=$?
|
|
|
|
if test $RC != 0 ; then
|
2000-07-05 05:49:00 +08:00
|
|
|
echo "ldapmodrdn failed ($RC)!"
|
2003-10-22 13:14:08 +08:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
1999-05-27 08:56:43 +08:00
|
|
|
exit $RC
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Using ldapsearch to retrieve entries using new rdn (cn=James A Jones 1)..."
|
2003-10-22 13:14:08 +08:00
|
|
|
$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
|
1999-08-26 08:22:05 +08:00
|
|
|
'cn=James A Jones 1' > $SEARCHOUT 2>&1
|
1999-05-27 08:56:43 +08:00
|
|
|
RC=$?
|
2002-05-17 17:11:30 +08:00
|
|
|
|
1999-05-27 08:56:43 +08:00
|
|
|
if test $RC != 0 ; then
|
2000-07-05 05:49:00 +08:00
|
|
|
echo "ldapsearch failed ($RC)!"
|
2005-09-26 22:56:12 +08:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
1999-05-27 08:56:43 +08:00
|
|
|
exit $RC
|
|
|
|
fi
|
|
|
|
|
|
|
|
LDIF=$MODRDNOUTMASTER3
|
|
|
|
|
|
|
|
echo "Filtering ldapsearch results..."
|
2000-10-02 06:46:52 +08:00
|
|
|
. $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
|
1999-05-27 08:56:43 +08:00
|
|
|
echo "Filtering original ldif used to create database..."
|
2000-10-02 06:46:52 +08:00
|
|
|
. $LDIFFILTER < $LDIF > $LDIFFLT
|
1999-05-27 08:56:43 +08:00
|
|
|
echo "Comparing filter output..."
|
2000-07-20 10:23:00 +08:00
|
|
|
$CMP $SEARCHFLT $LDIFFLT > $CMPOUT
|
1999-05-27 08:56:43 +08:00
|
|
|
|
1999-04-21 13:59:01 +08:00
|
|
|
if test $? != 0 ; then
|
1999-03-11 06:31:26 +08:00
|
|
|
echo "comparison failed - modrdn operations did not complete correctly"
|
2005-09-26 22:56:12 +08:00
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
1999-03-11 06:31:26 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2005-04-15 12:46:01 +08:00
|
|
|
echo "Testing modrdn with newSuperior as child of target "
|
|
|
|
$LDAPMODRDN -D "$MANAGERDN" -h $LOCALHOST -p $PORT1 -w $PASSWD > \
|
2005-09-10 09:52:27 +08:00
|
|
|
$TESTOUT 2>&1 -s 'cn=Sub1, ou=FooBar, cn=James A Jones 1, ou=Alumni Association, ou=People, dc=example, dc=com' \
|
2005-04-15 12:46:01 +08:00
|
|
|
'cn=James A Jones 1, ou=Alumni Association, ou=People, dc=example, dc=com' 'cn=James A Jones 1'
|
|
|
|
|
|
|
|
RC=$?
|
2005-04-29 08:50:36 +08:00
|
|
|
if test $RC -eq 0 ; then
|
2005-04-15 12:46:01 +08:00
|
|
|
echo "ldapmodrdn succeeded, should have failed!"
|
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
|
|
|
1999-03-11 06:31:26 +08:00
|
|
|
echo ">>>>> Test succeeded"
|
2006-01-11 13:25:09 +08:00
|
|
|
|
|
|
|
test $KILLSERVERS != no && wait
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
exit 0
|