]> git.sur5r.net Git - openldap/blob - tests/scripts/test023-refint
Add missing 'kill -HUP $KILLPIDS' statement before an exit.
[openldap] / tests / scripts / test023-refint
1 #! /bin/sh
2 # $OpenLDAP$
3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 ##
5 ## Copyright 2004-2005 The OpenLDAP Foundation.
6 ## All rights reserved.
7 ##
8 ## Redistribution and use in source and binary forms, with or without
9 ## modification, are permitted only as authorized by the OpenLDAP
10 ## Public License.
11 ##
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>.
15
16 if test "$BACKEND" != "bdb" && test "$BACKEND" != "hdb" ; then
17         echo "Test does not support $BACKEND"
18         exit 0
19 fi
20
21 echo "running defines.sh"
22 . $SRCDIR/scripts/defines.sh
23
24 if test $REFINT = refintno; then 
25         echo "Referential Integrity overlay not available, test skipped"
26         exit 0
27 fi 
28
29 mkdir -p $TESTDIR $DBDIR1
30
31 echo "Running slapadd to build slapd database..."
32 . $CONFFILTER $BACKEND $MONITORDB < $REFINTCONF > $CONF1
33 $SLAPADD -f $CONF1 -l $LDIFREFINT
34 RC=$?
35 if test $RC != 0 ; then
36         echo "slapadd failed ($RC)!"
37         exit $RC
38 fi
39
40 echo "Starting slapd on TCP/IP port $PORT1..."
41 $SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING > $LOG1 2>&1 &
42 PID=$!
43 if test $WAIT != 0 ; then
44     echo PID $PID
45     read foo
46 fi
47 KILLPIDS="$PID"
48
49 echo "Testing slapd referential integrity operations..."
50 for i in 0 1 2 3 4 5; do
51         $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT1 \
52                 'objectclass=*' > /dev/null 2>&1
53         RC=$?
54         if test $RC = 0 ; then
55                 break
56         fi
57         echo "Waiting 5 seconds for slapd to start..."
58         sleep 5
59 done
60
61 if test $RC != 0 ; then
62         echo "ldapsearch failed ($RC)!"
63         test $KILLSERVERS != no && kill -HUP $KILLPIDS
64         exit $RC
65 fi
66
67 echo "Searching unmodified database..."
68
69 $LDAPSEARCH -S "" -b "o=refint" -h $LOCALHOST -p $PORT1 | \
70         $EGREP_CMD "(manager|secretary):" | sed "s/george/foster/g" | \
71         sort > $SEARCHOUT 2>&1
72
73 RC=$?
74 if test $RC != 0 ; then
75         echo "ldapsearch failed ($RC)!"
76         test $KILLSERVERS != no && kill -HUP $KILLPIDS
77         exit $RC
78 fi
79
80 echo "Testing modrdn..."
81 $LDAPMODRDN -D "$REFINTDN" -r -h $LOCALHOST -p $PORT1 -w $PASSWD > \
82         /dev/null 2>&1 'uid=george,ou=users,o=refint' 'uid=foster'
83 #$LDAPMODRDN -D "$REFINTDN" -r -h $LOCALHOST -p $PORT1 -w $PASSWD  \
84 #       'uid=george,ou=users,o=refint' 'uid=foster'
85
86 RC=$?
87 if test $RC != 0 ; then
88         echo "ldapmodrdn failed ($RC)!"
89         test $KILLSERVERS != no && kill -HUP $KILLPIDS
90         exit $RC
91 fi
92
93 echo "Using ldapsearch to check dependents new rdn..."
94
95 $LDAPSEARCH -S "" -b "o=refint" -h $LOCALHOST -p $PORT1 | \
96         $EGREP_CMD "(manager|secretary):" | sort > $SEARCHFLT 2>&1
97
98 RC=$?
99         if test $RC != 0 ; then
100         echo "ldapsearch failed ($RC)!"
101         test $KILLSERVERS != no && kill -HUP $KILLPIDS
102         exit $RC
103 fi
104
105 echo "Comparing ldapsearch results against original..."
106 $CMP $SEARCHOUT $SEARCHOUT > $CMPOUT
107
108 if test $? != 0 ; then
109         echo "comparison failed - modify operations did not complete correctly"
110         test $KILLSERVERS != no && kill -HUP $KILLPIDS
111         exit 1
112 fi
113
114 echo "Testing delete..."
115 $LDAPMODIFY -v -D "$REFINTDN" -h $LOCALHOST -p $PORT1 -w $PASSWD > \
116         $TESTOUT 2>&1 << EDEL
117 version: 1
118 dn: uid=foster,ou=users,o=refint
119 changetype: delete
120 EDEL
121
122 RC=$?
123 if test $RC != 0 ; then
124         echo "ldapmodify failed ($RC)!"
125         test $KILLSERVERS != no && kill -HUP $KILLPIDS
126         exit $RC
127 fi
128
129 echo "Using ldapsearch to verify dependents have been deleted..."
130 $LDAPSEARCH -S "" -b "o=refint" -h $LOCALHOST -p $PORT1 | \
131         $EGREP_CMD "(manager|secretary):" > $SEARCHFLT 2>&1
132
133 RC=$?
134 if test $RC != 0 ; then
135         echo "ldapsearch failed ($RC)!"
136         test $KILLSERVERS != no && kill -HUP $KILLPIDS
137         exit $RC
138 fi
139
140 RC=`grep -c foster $SEARCHFLT`
141 if test $RC != 0 ; then
142         echo "dependent modify failed - dependents were not deleted"
143         test $KILLSERVERS != no && kill -HUP $KILLPIDS
144         exit 1
145 fi
146
147 echo "Additional test records..."
148
149 $LDAPADD -D "$REFINTDN" -h $LOCALHOST -p $PORT1 -w $PASSWD > \
150         $TESTOUT 2>&1 << ETEST
151 dn: uid=special,ou=users,o=refint
152 objectClass: inetOrgPerson
153 uid: special
154 sn: special
155 cn: special
156 businessCategory: nothing
157 carLicense: FOO
158 departmentNumber: 933
159 displayName: special
160 employeeNumber: 41491
161 employeeType: vendor
162 givenName: special
163 member: uid=alice,ou=users,o=refint
164 ETEST
165
166 echo "Testing delete when referential attribute is a MUST..."
167 $LDAPMODIFY -v -D "$REFINTDN" -h $LOCALHOST -p $PORT1 -w $PASSWD > \
168         $TESTOUT 2>&1 << EDEL
169 version: 1
170 dn: uid=alice,ou=users,o=refint
171 changetype: delete
172 EDEL
173
174 RC=$?
175 if test $RC != 0 ; then
176         echo "ldapmodify failed ($RC)!"
177         test $KILLSERVERS != no && kill -HUP $KILLPIDS
178         exit $RC
179 fi
180
181
182
183 #####
184
185 test $KILLSERVERS != no && kill -HUP $KILLPIDS
186
187 echo ">>>>> Test succeeded"
188 exit 0