3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 ## Copyright 2004-2006 The OpenLDAP Foundation.
6 ## All rights reserved.
8 ## Redistribution and use in source and binary forms, with or without
9 ## modification, are permitted only as authorized by the OpenLDAP
12 ## A copy of this license is available in the file LICENSE in the
13 ## top-level directory of the distribution or, alternatively, at
14 ## <http://www.OpenLDAP.org/license.html>.
16 if test "$BACKEND" != "bdb" && test "$BACKEND" != "hdb" ; then
17 echo "Test does not support $BACKEND"
21 echo "running defines.sh"
22 . $SRCDIR/scripts/defines.sh
24 if test $REFINT = refintno; then
25 echo "Referential Integrity overlay not available, test skipped"
29 mkdir -p $TESTDIR $DBDIR1
31 echo "Running slapadd to build slapd database..."
32 . $CONFFILTER $BACKEND $MONITORDB < $REFINTCONF > $CONF1
33 $SLAPADD -f $CONF1 -l $LDIFREFINT
35 if test $RC != 0 ; then
36 echo "slapadd failed ($RC)!"
40 echo "Starting slapd on TCP/IP port $PORT1..."
41 $SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING > $LOG1 2>&1 &
43 if test $WAIT != 0 ; then
51 echo "Testing slapd referential integrity operations..."
52 for i in 0 1 2 3 4 5; do
53 $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT1 \
54 'objectclass=*' > /dev/null 2>&1
56 if test $RC = 0 ; then
59 echo "Waiting 5 seconds for slapd to start..."
63 if test $RC != 0 ; then
64 echo "ldapsearch failed ($RC)!"
65 test $KILLSERVERS != no && kill -HUP $KILLPIDS
69 echo "Searching unmodified database..."
71 $LDAPSEARCH -S "" -b "o=refint" -h $LOCALHOST -p $PORT1 > $SEARCHOUT 2>&1
73 if test $RC != 0 ; then
74 echo "ldapsearch failed ($RC)!"
75 test $KILLSERVERS != no && kill -HUP $KILLPIDS
79 $EGREP_CMD "(manager|secretary):" $SEARCHOUT | sed "s/george/foster/g" | \
82 echo "Testing modrdn..."
83 $LDAPMODRDN -D "$REFINTDN" -r -h $LOCALHOST -p $PORT1 -w $PASSWD > \
84 /dev/null 2>&1 'uid=george,ou=users,o=refint' 'uid=foster'
85 #$LDAPMODRDN -D "$REFINTDN" -r -h $LOCALHOST -p $PORT1 -w $PASSWD \
86 # 'uid=george,ou=users,o=refint' 'uid=foster'
89 if test $RC != 0 ; then
90 echo "ldapmodrdn failed ($RC)!"
91 test $KILLSERVERS != no && kill -HUP $KILLPIDS
95 echo "Using ldapsearch to check dependents new rdn..."
97 $LDAPSEARCH -S "" -b "o=refint" -h $LOCALHOST -p $PORT1 > $SEARCHOUT 2>&1
100 if test $RC != 0 ; then
101 echo "ldapsearch failed ($RC)!"
102 test $KILLSERVERS != no && kill -HUP $KILLPIDS
106 $EGREP_CMD "(manager|secretary):" $SEARCHOUT | sort > $SEARCHFLT 2>&1
108 echo "Comparing ldapsearch results against original..."
109 $CMP $TESTOUT $SEARCHFLT > $CMPOUT
111 if test $? != 0 ; then
112 echo "comparison failed - modify operations did not complete correctly"
113 test $KILLSERVERS != no && kill -HUP $KILLPIDS
117 echo "Testing delete..."
118 $LDAPMODIFY -v -D "$REFINTDN" -h $LOCALHOST -p $PORT1 -w $PASSWD > \
119 $TESTOUT 2>&1 << EDEL
121 dn: uid=foster,ou=users,o=refint
126 if test $RC != 0 ; then
127 echo "ldapmodify failed ($RC)!"
128 test $KILLSERVERS != no && kill -HUP $KILLPIDS
132 echo "Using ldapsearch to verify dependents have been deleted..."
133 $LDAPSEARCH -S "" -b "o=refint" -h $LOCALHOST -p $PORT1 > $SEARCHOUT 2>&1
136 if test $RC != 0 ; then
137 echo "ldapsearch failed ($RC)!"
138 test $KILLSERVERS != no && kill -HUP $KILLPIDS
142 $EGREP_CMD "(manager|secretary):" $SEARCHOUT > $SEARCHFLT 2>&1
144 RC=`grep -c foster $SEARCHFLT`
145 if test $RC != 0 ; then
146 echo "dependent modify failed - dependents were not deleted"
147 test $KILLSERVERS != no && kill -HUP $KILLPIDS
151 echo "Additional test records..."
153 $LDAPADD -D "$REFINTDN" -h $LOCALHOST -p $PORT1 -w $PASSWD > \
154 $TESTOUT 2>&1 << ETEST
155 dn: uid=special,ou=users,o=refint
156 objectClass: inetOrgPerson
160 businessCategory: nothing
162 departmentNumber: 933
164 employeeNumber: 41491
167 member: uid=alice,ou=users,o=refint
170 echo "Testing delete when referential attribute is a MUST..."
171 $LDAPMODIFY -v -D "$REFINTDN" -h $LOCALHOST -p $PORT1 -w $PASSWD > \
172 $TESTOUT 2>&1 << EDEL
174 dn: uid=alice,ou=users,o=refint
179 if test $RC != 0 ; then
180 echo "ldapmodify failed ($RC)!"
181 test $KILLSERVERS != no && kill -HUP $KILLPIDS
185 test $KILLSERVERS != no && kill -HUP $KILLPIDS
187 echo ">>>>> Test succeeded"
189 test $KILLSERVERS != no && wait