]> git.sur5r.net Git - openldap/blob - tests/scripts/test032-proxymassage
line up tests with back-ldap and rwm
[openldap] / tests / scripts / test032-proxymassage
1 #! /bin/sh
2 # $OpenLDAP$
3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 ##
5 ## Copyright 1998-2004 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 echo "running defines.sh"
17 . $SRCDIR/scripts/defines.sh
18
19 if test $RWM = rwmno ; then 
20         echo "Rewrite/remap overlay not available, test skipped"
21         exit 0
22 fi 
23
24 if test $BACKLDAP = "ldapno" ; then 
25         echo "LDAP backend not available, test skipped"
26         exit 0
27 fi 
28
29 mkdir -p $TESTDIR $DBDIR1
30
31 echo "Starting slapd on TCP/IP port $PORT1..."
32 . $CONFFILTER $BACKEND $MONITORDB < $PROXYMASSAGECONF > $CONF1
33 $SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING > $LOG1 2>&1 &
34 PID=$!
35 if test $WAIT != 0 ; then
36     echo PID $PID
37     read foo
38 fi
39 KILLPIDS="$PID"
40
41 echo "Using ldapsearch to check that slapd is running..."
42 for i in 0 1 2 3 4 5; do
43         $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT1 \
44                 'objectclass=*' > /dev/null 2>&1
45         RC=$?
46         if test $RC = 0 ; then
47                 break
48         fi
49         echo "Waiting 5 seconds for slapd to start..."
50         sleep 5
51 done
52 if test $RC != 0 ; then
53         echo "ldapsearch failed $(RC)!"
54         test $KILLSERVERS != no && kill -HUP $KILLPIDS
55         exit $RC
56 fi
57
58 echo "Using ldapadd to populate the database..."
59 $LDAPADD -D "$MANAGERDN" -h $LOCALHOST -p $PORT1 -w $PASSWD < \
60         $LDIFORDERED > $TESTOUT 2>&1
61 RC=$?
62 if test $RC != 0 ; then
63         echo "ldapadd failed ($RC)!"
64         test $KILLSERVERS != no && kill -HUP $KILLPIDS
65         exit $RC
66 fi
67
68 cat /dev/null > $SEARCHOUT
69
70 BASEDN="dc=example,dc=com"
71 echo "searching base=\"$BASEDN\"..."
72 echo "# searching base=\"$BASEDN\"..." >> $SEARCHOUT
73 $LDAPSEARCH -h $LOCALHOST -p $PORT1 -b "$BASEDN" >> $SEARCHOUT 2>&1
74 RC=$?
75 if test $RC != 0 ; then
76         echo "Search failed ($RC)!"
77         test $KILLSERVERS != no && kill -HUP $KILLPIDS
78         exit $RC
79 fi
80
81 BASEDN="o=Example,c=US"
82 echo "searching base=\"$BASEDN\"..."
83 echo "# searching base=\"$BASEDN\"..." >> $SEARCHOUT
84 $LDAPSEARCH -h $LOCALHOST -p $PORT1 -b "$BASEDN" >> $SEARCHOUT 2>&1
85 RC=$?
86 if test $RC != 0 ; then
87         echo "Search failed ($RC)!"
88         test $KILLSERVERS != no && kill -HUP $KILLPIDS
89         exit $RC
90 fi
91
92 BASEDN="o=Esempio,c=IT"
93 echo "searching base=\"$BASEDN\"..."
94 echo "# searching base=\"$BASEDN\"..." >> $SEARCHOUT
95 $LDAPSEARCH -h $LOCALHOST -p $PORT1 -b "$BASEDN" >> $SEARCHOUT 2>&1
96 RC=$?
97 if test $RC != 0 ; then
98         echo "Search failed ($RC)!"
99         test $KILLSERVERS != no && kill -HUP $KILLPIDS
100         exit $RC
101 fi
102
103 BASEDN="o=Beispiel,c=DE"
104 echo "searching base=\"$BASEDN\"..."
105 echo "# searching base=\"$BASEDN\"..." >> $SEARCHOUT
106 $LDAPSEARCH -h $LOCALHOST -p $PORT1 -b "$BASEDN" >> $SEARCHOUT 2>&1
107 RC=$?
108 if test $RC != 0 ; then
109         echo "Search failed ($RC)!"
110         test $KILLSERVERS != no && kill -HUP $KILLPIDS
111         exit $RC
112 fi
113
114 #
115 # Do some modifications
116 #
117
118 BASEDN="o=Beispiel,c=DE"
119 echo "modifying database \"$BASEDN\"..."
120 $LDAPMODIFY -v -D "cn=Manager,$BASEDN" -h $LOCALHOST -p $PORT1 -w $PASSWD \
121         -e manageDSAit >> $TESTOUT 2>&1 << EOMODS
122 dn: cn=Added User,ou=Alumni Association,ou=People,$BASEDN
123 changetype: add
124 objectClass: OpenLDAPperson
125 cn: Added User
126 sn: User
127 uid: auser
128 seealso: cn=All Staff,ou=Groups,$BASEDN
129 homephone: +49 1234567890
130 drink: Beer
131 mail: auser@mail.alumni.example.com
132 telephonenumber: +49 1234-567-890
133 description: Just added in o=Beispiel,c=DE naming context
134
135 dn: cn=Ursula Hampster,ou=Alumni Association,ou=People,$BASEDN
136 changetype: modify
137 add: seeAlso
138 seeAlso: cn=Ursula Hampster,ou=Alumni Association,ou=People,$BASEDN
139 -
140 add: description
141 description: Just added self to seeAlso in $BASEDN virtual naming context
142 -
143
144 dn: cn=Mark Elliot,ou=Alumni Association,ou=People,$BASEDN
145 changetype: delete
146
147 dn: cn=John Doe,ou=Information Technology Division,ou=People,$BASEDN
148 changetype: modrdn
149 newrdn: cn=John P. Doe
150 deleteoldrdn: 1
151
152 dn: cn=Jane Doe,ou=Alumni Association,ou=People,$BASEDN
153 changetype: modrdn
154 newrdn: cn=Jane Q. Doe
155 deleteoldrdn: 1
156 newsuperior: ou=Information Technology Division,ou=People,$BASEDN
157
158 dn: cn=Jane Q. Doe,ou=Information Technology Division,ou=People,$BASEDN
159 changetype: modify
160 add: cn
161 cn: Jane Qissapaolo Doe
162 -
163
164 dn: ou=Referrals,$BASEDN
165 changetype: add
166 objectclass: referral
167 objectclass: extensibleObject
168 ou: Referrals
169 ref: ldap://localhost.localdomain/ou=Referrals,$BASEDN
170 description: Just added as ldap://localhost.localdomain:389/ou=Referrals,$BASEDN
171
172 dn: ou=Referrals,$BASEDN
173 changetype: modify
174 replace: ref
175 ref: ldap://ldap.example.com:389/ou=Referrals,${BASEDN}
176 -
177 add: description
178 description: ...and modified as ldap://ldap.example.com:389/ou=Referrals,${BASEDN}
179 -
180 EOMODS
181
182 if test $RC != 0 ; then
183         echo "Modify failed ($RC)!"
184         test $KILLSERVERS != no && kill -HUP $KILLPIDS
185         exit $RC
186 fi
187
188 echo "searching base=\"$BASEDN\"..."
189 echo "# searching base=\"$BASEDN\"..."  >> $SEARCHOUT
190 $LDAPSEARCH -h $LOCALHOST -p $PORT1 -b "$BASEDN" >> $SEARCHOUT 2>&1
191 RC=$?
192 if test $RC != 0 ; then
193         echo "Search failed ($RC)!"
194         test $KILLSERVERS != no && kill -HUP $KILLPIDS
195         exit $RC
196 fi
197
198 BASEDN="o=Esempio,c=IT"
199 echo "searching base=\"$BASEDN\"..."
200 echo "# searching base=\"$BASEDN\"..."  >> $SEARCHOUT
201 $LDAPSEARCH -h $LOCALHOST -p $PORT1 -b "$BASEDN" >> $SEARCHOUT 2>&1
202 RC=$?
203 if test $RC != 0 ; then
204         echo "Search failed ($RC)!"
205         test $KILLSERVERS != no && kill -HUP $KILLPIDS
206         exit $RC
207 fi
208
209 FILTER="(objectClass=referral)"
210 echo "searching filter=\"$FILTER\""
211 echo "  attrs=\"'*' ref\""
212 echo "# searching filter=\"$FILTER\"" >> $SEARCHOUT
213 echo "#         attrs=\"'*' ref\"" >> $SEARCHOUT
214
215 BASEDN="dc=example,dc=com"
216 echo "  base=\"$BASEDN\"..."
217 echo "#         base=\"$BASEDN\"..." >> $SEARCHOUT
218 $LDAPSEARCH -h $LOCALHOST -p $PORT1 -b "$BASEDN" "$FILTER" "*" ref \
219         -e manageDSAit >> $SEARCHOUT 2>&1
220 RC=$?
221 if test $RC != 0 ; then
222         echo "Search failed ($RC)!"
223         test $KILLSERVERS != no && kill -HUP $KILLPIDS
224         exit $RC
225 fi
226
227 BASEDN="o=Example,c=US"
228 echo "  base=\"$BASEDN\"..."
229 echo "#         base=\"$BASEDN\"..." >> $SEARCHOUT
230 $LDAPSEARCH -h $LOCALHOST -p $PORT1 -b "$BASEDN" "$FILTER" "*" ref \
231         -e manageDSAit >> $SEARCHOUT 2>&1
232 RC=$?
233 if test $RC != 0 ; then
234         echo "Search failed ($RC)!"
235         test $KILLSERVERS != no && kill -HUP $KILLPIDS
236         exit $RC
237 fi
238
239 BASEDN="o=Esempio,c=IT"
240 echo "  base=\"$BASEDN\"..."
241 echo "#         base=\"$BASEDN\"..." >> $SEARCHOUT
242 $LDAPSEARCH -h $LOCALHOST -p $PORT1 -b "$BASEDN" "$FILTER" "*" ref \
243         -e manageDSAit >> $SEARCHOUT 2>&1
244 RC=$?
245 if test $RC != 0 ; then
246         echo "Search failed ($RC)!"
247         test $KILLSERVERS != no && kill -HUP $KILLPIDS
248         exit $RC
249 fi
250
251 BASEDN="o=Example,c=US"
252 FILTER="(seeAlso=cn=all staff,ou=Groups,$BASEDN)"
253 echo "searching filter=\"$FILTER\""
254 echo "  attrs=\"seeAlso\""
255 echo "  base=\"$BASEDN\"..."
256 echo "# searching filter=\"$FILTER\"" >> $SEARCHOUT
257 echo "#         attrs=\"seeAlso\"" >> $SEARCHOUT
258 echo "#         base=\"$BASEDN\"..." >> $SEARCHOUT
259 $LDAPSEARCH -h $LOCALHOST -p $PORT1 -b "$BASEDN" "$FILTER" seeAlso \
260         >> $SEARCHOUT 2>&1
261 RC=$?
262 if test $RC != 0 ; then
263         echo "Search failed ($RC)!"
264         test $KILLSERVERS != no && kill -HUP $KILLPIDS
265         exit $RC
266 fi
267
268 echo "Filtering ldapsearch results..."
269 . $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
270 echo "Filtering original ldif used to create database..."
271 . $LDIFFILTER < $PROXYMASSAGEOUT > $LDIFFLT
272 echo "Comparing filter output..."
273 $CMP $SEARCHFLT $LDIFFLT > $CMPOUT
274         
275 if test $? != 0 ; then
276         echo "comparison failed - back-ldap search/modification didn't succeed"
277         test $KILLSERVERS != no && kill -HUP $KILLPIDS
278         exit 1
279 fi
280
281 BASEDN="o=Example,c=US"
282 echo "changing password to database \"$BASEDN\"..."
283 $LDAPPASSWD -h $LOCALHOST -p $PORT1 -D "cn=Manager,$BASEDN" -w $PASSWD \
284         "cn=Added User,ou=Alumni Association,ou=People,$BASEDN" \
285         -s $PASSWD >> $TESTOUT 2>&1
286 RC=$?
287 if test $RC != 0 ; then
288         echo "Passwd ExOp failed ($RC)!"
289         test $KILLSERVERS != no && kill -HUP $KILLPIDS
290         exit $RC
291 fi
292
293 BASEDN="o=Beispiel,c=DE"
294 echo "binding with newly changed password to database \"$BASEDN\"..."
295 $LDAPWHOAMI -h $LOCALHOST -p $PORT1 \
296         -D "cn=Added User,ou=Alumni Association,ou=People,$BASEDN" \
297         -w $PASSWD >> $TESTOUT 2>&1
298 RC=$?
299 if test $RC != 0 ; then
300         echo "WhoAmI failed ($RC)!"
301         test $KILLSERVERS != no && kill -HUP $KILLPIDS
302         exit $RC
303 fi
304
305 BASEDN="o=Esempio,c=IT"
306 echo "comparing to database \"$BASEDN\"..."
307 $LDAPCOMPARE -h $LOCALHOST -p $PORT1 \
308         "cn=Added User,ou=Alumni Association,ou=People,$BASEDN" \
309         "seeAlso:cn=All Staff,ou=Groups,$BASEDN" >> $TESTOUT 2>&1
310 RC=$?
311 if test $RC != 6 ; then
312         echo "Compare failed ($RC)!"
313         test $KILLSERVERS != no && kill -HUP $KILLPIDS
314         exit $RC
315 fi
316
317 test $KILLSERVERS != no && kill -HUP $KILLPIDS
318
319 echo ">>>>> Test succeeded"
320 exit 0
321