mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
210 lines
5.0 KiB
Bash
Executable File
210 lines
5.0 KiB
Bash
Executable File
#! /bin/sh
|
|
# $OpenLDAP$ */
|
|
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
##
|
|
## Copyright 1998-2006 The OpenLDAP Foundation.
|
|
## 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
|
|
|
|
case $BACKEND in
|
|
hdb)
|
|
;;
|
|
*)
|
|
echo "subtree rename not supported by back-$BACKEND"
|
|
exit 0
|
|
esac
|
|
|
|
mkdir -p $TESTDIR $DBDIR1
|
|
|
|
echo "Starting slapd on TCP/IP port $PORT1..."
|
|
. $CONFFILTER $BACKEND $MONITORDB < $CONF > $CONF1
|
|
$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"
|
|
|
|
sleep 1
|
|
|
|
echo "Testing slapd searching..."
|
|
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
|
|
|
|
cat /dev/null > $TESTOUT
|
|
cat /dev/null > $SEARCHOUT
|
|
|
|
# Add
|
|
echo "Populating the database..."
|
|
echo "# Populating the database..." >> $TESTOUT
|
|
$LDAPADD -v -D "$MANAGERDN" -h $LOCALHOST -p $PORT1 -w $PASSWD \
|
|
>> $TESTOUT 2>&1 << EOMODS0
|
|
dn: dc=example,dc=com
|
|
objectClass: organization
|
|
objectClass: dcObject
|
|
o: Example, Inc.
|
|
dc: example
|
|
|
|
dn: ou=Parent,dc=example,dc=com
|
|
objectClass: organizationalUnit
|
|
ou: Parent
|
|
|
|
dn: ou=Another parent,dc=example,dc=com
|
|
objectClass: organizationalUnit
|
|
ou: Another parent
|
|
|
|
dn: ou=Child,ou=Parent,dc=example,dc=com
|
|
objectClass: organizationalUnit
|
|
ou: Child
|
|
|
|
dn: ou=Grandchild,ou=Child,ou=Parent,dc=example,dc=com
|
|
objectClass: organizationalUnit
|
|
ou: Grandchild
|
|
EOMODS0
|
|
RC=$?
|
|
if test $RC != 0 ; then
|
|
echo "ldapadd failed ($RC)!"
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
exit $RC
|
|
fi
|
|
|
|
echo "Searching all database..."
|
|
echo "# Searching all database (after add)..." >> $SEARCHOUT
|
|
$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
|
|
'(objectClass=*)' >> $SEARCHOUT 2>&1
|
|
RC=$?
|
|
if test $RC != 0 ; then
|
|
echo "ldapsearch failed ($RC)!"
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
exit $RC
|
|
fi
|
|
|
|
# Rename (PASS1)
|
|
echo "Renaming (PASS1)..."
|
|
echo "# Renaming (PASS1)..." >> $TESTOUT
|
|
$LDAPMODIFY -v -D "$MANAGERDN" -h $LOCALHOST -p $PORT1 -w $PASSWD \
|
|
>> $TESTOUT 2>&1 << EOMODS1
|
|
dn: ou=Child,ou=Parent,dc=example,dc=com
|
|
changetype: modrdn
|
|
newrdn: ou=Renamed child
|
|
deleteoldrdn: 0
|
|
EOMODS1
|
|
RC=$?
|
|
if test $RC != 0 ; then
|
|
echo "ldapadd failed ($RC)!"
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
exit $RC
|
|
fi
|
|
|
|
echo "Searching all database..."
|
|
echo "# Searching all database (after PASS1)..." >> $SEARCHOUT
|
|
$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
|
|
'(objectClass=*)' >> $SEARCHOUT 2>&1
|
|
RC=$?
|
|
if test $RC != 0 ; then
|
|
echo "ldapsearch failed ($RC)!"
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
exit $RC
|
|
fi
|
|
|
|
# Rename (PASS2)
|
|
echo "Renaming (PASS2)..."
|
|
echo "# Renaming (PASS2)..." >> $TESTOUT
|
|
$LDAPMODIFY -v -D "$MANAGERDN" -h $LOCALHOST -p $PORT1 -w $PASSWD \
|
|
>> $TESTOUT 2>&1 << EOMODS2
|
|
dn: ou=Parent,dc=example,dc=com
|
|
changetype: modrdn
|
|
newrdn: ou=Renamed parent
|
|
deleteoldrdn: 0
|
|
EOMODS2
|
|
RC=$?
|
|
if test $RC != 0 ; then
|
|
echo "ldapadd failed ($RC)!"
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
exit $RC
|
|
fi
|
|
|
|
echo "Searching all database..."
|
|
echo "# Searching all database (after PASS2)..." >> $SEARCHOUT
|
|
$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
|
|
'(objectClass=*)' >> $SEARCHOUT 2>&1
|
|
RC=$?
|
|
if test $RC != 0 ; then
|
|
echo "ldapsearch failed ($RC)!"
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
exit $RC
|
|
fi
|
|
|
|
# Rename (PASS3)
|
|
echo "Renaming (PASS3)..."
|
|
echo "# Renaming (PASS3)..." >> $TESTOUT
|
|
$LDAPMODIFY -v -D "$MANAGERDN" -h $LOCALHOST -p $PORT1 -w $PASSWD \
|
|
>> $TESTOUT 2>&1 << EOMODS3
|
|
dn: ou=Renamed child,ou=Renamed parent,dc=example,dc=com
|
|
changetype: modrdn
|
|
newrdn: ou=Renamed child
|
|
deleteoldrdn: 0
|
|
newsuperior: ou=Another parent,dc=example,dc=com
|
|
EOMODS3
|
|
RC=$?
|
|
if test $RC != 0 ; then
|
|
echo "ldapadd failed ($RC)!"
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
exit $RC
|
|
fi
|
|
|
|
echo "Searching all database..."
|
|
echo "# Searching all database (after PASS3)..." >> $SEARCHOUT
|
|
$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
|
|
'(objectClass=*)' >> $SEARCHOUT 2>&1
|
|
RC=$?
|
|
if test $RC != 0 ; then
|
|
echo "ldapsearch failed ($RC)!"
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
exit $RC
|
|
fi
|
|
|
|
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
|
|
|
LDIF=$SUBTREERENAMEOUT
|
|
|
|
echo "Filtering ldapsearch results..."
|
|
. $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
|
|
echo "Filtering original ldif used to create database..."
|
|
. $LDIFFILTER < $LDIF > $LDIFFLT
|
|
echo "Comparing filter output..."
|
|
$CMP $SEARCHFLT $LDIFFLT > $CMPOUT
|
|
|
|
if test $? != 0 ; then
|
|
echo "Comparison failed"
|
|
exit 1
|
|
fi
|
|
|
|
echo ">>>>> Test succeeded"
|
|
exit 0
|