3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 ## Copyright 1998-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 echo "running defines.sh"
17 . $SRCDIR/scripts/defines.sh
19 mkdir -p $TESTDIR $DBDIR1
21 echo "Running slapadd to build slapd database..."
22 . $CONFFILTER $BACKEND $MONITORDB < $MCONF > $ADDCONF
23 $SLAPADD -f $ADDCONF -l $LDIFORDERED
25 if test $RC != 0 ; then
26 echo "slapadd failed ($RC)!"
30 echo "Running slapindex to index slapd database..."
31 . $CONFFILTER $BACKEND $MONITORDB < $CONF > $CONF1
34 if test $RC != 0 ; then
35 echo "warning: slapindex failed ($RC)"
36 echo " assuming no indexing support"
39 echo "Starting slapd on TCP/IP port $PORT1..."
40 $SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING > $LOG1 2>&1 &
42 if test $WAIT != 0 ; then
50 echo "Testing slapd searching..."
51 for i in 0 1 2 3 4 5; do
52 $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT1 \
53 'objectclass=*' > /dev/null 2>&1
55 if test $RC = 0 ; then
58 echo "Waiting 5 seconds for slapd to start..."
62 if test $RC != 0 ; then
63 echo "ldapsearch failed ($RC)!"
64 test $KILLSERVERS != no && kill -HUP $KILLPIDS
68 cat /dev/null > $SEARCHOUT
70 echo "Testing exact searching..."
71 echo "# Testing exact searching..." >> $SEARCHOUT
72 $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
73 '(sn:=jensen)' >> $SEARCHOUT 2>&1
75 if test $RC != 0 ; then
76 echo "ldapsearch failed ($RC)!"
77 test $KILLSERVERS != no && kill -HUP $KILLPIDS
81 echo "Testing approximate searching..."
82 echo "# Testing approximate searching..." >> $SEARCHOUT
83 $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
84 '(sn~=jensen)' name >> $SEARCHOUT 2>&1
86 if test $RC != 0 ; then
87 echo "ldapsearch failed ($RC)!"
88 test $KILLSERVERS != no && kill -HUP $KILLPIDS
92 echo "Testing OR searching..."
93 echo "# Testing OR searching..." >> $SEARCHOUT
94 $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
95 '(|(givenName=XX*YY*Z)(cn=)(undef=*)(objectclass=groupofnames)(objectclass=groupofuniquenames)(sn:caseExactMatch:=Jones))' >> $SEARCHOUT 2>&1
97 if test $RC != 0 ; then
98 echo "ldapsearch failed ($RC)!"
99 test $KILLSERVERS != no && kill -HUP $KILLPIDS
103 echo "Testing AND matching and ends-with searching..."
104 echo "# Testing AND matching and ends-with searching..." >> $SEARCHOUT
105 $LDAPSEARCH -S "" -b "ou=groups,$BASEDN" -s one -h $LOCALHOST -p $PORT1 \
106 '(&(|(objectclass=groupofnames)(objectclass=groupofuniquenames))(cn=A*))' >> $SEARCHOUT 2>&1
108 if test $RC != 0 ; then
109 echo "ldapsearch failed ($RC)!"
110 test $KILLSERVERS != no && kill -HUP $KILLPIDS
114 echo "Testing NOT searching..."
115 echo "# Testing NOT searching..." >> $SEARCHOUT
116 $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
117 '(!(objectclass=pilotPerson))' >> $SEARCHOUT 2>&1
119 if test $RC != 0 ; then
120 echo "ldapsearch failed ($RC)!"
121 test $KILLSERVERS != no && kill -HUP $KILLPIDS
125 echo "Testing objectClass/attributeType inheritance ..."
126 echo "# Testing objectClass/attributeType inheritance ..." >> $SEARCHOUT
127 $LDAPSEARCH -M -a never -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
128 '(&(objectClass=inetorgperson)(userid=uham))' \
129 "2.5.4.0" "userid" >> $SEARCHOUT 2>&1
131 if test $RC != 0 ; then
132 echo "ldapsearch failed ($RC)!"
133 test $KILLSERVERS != no && kill -HUP $KILLPIDS
137 echo "Testing extended RFC2254 searching:"
138 echo "# Testing extended RFC2254 searching:" >> $SEARCHOUT
140 FILTER="(:dn:caseIgnoreIA5Match:=example)"
141 echo " f=$FILTER ..."
142 echo "# f=$FILTER ..." >> $SEARCHOUT
143 $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
144 "$FILTER" >> $SEARCHOUT 2>&1
147 if test $RC != 0 ; then
148 echo "ldapsearch failed ($RC)!"
149 test $KILLSERVERS != no && kill -HUP $KILLPIDS
153 FILTER="(:dn:caseExactMatch:=Information Technology Division)"
154 echo " f=$FILTER ..."
155 echo "# f=$FILTER ..." >> $SEARCHOUT
156 $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
157 "$FILTER" >> $SEARCHOUT 2>&1
159 # ITS#4380: don't crash when a matchingRule without pretty/validate is used
160 FILTER="(:dn:caseIgnoreSubstringsMatch:=Information Technology Division)"
161 echo " f=$FILTER ..."
162 echo "# f=$FILTER ..." >> $SEARCHOUT
163 $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
164 "$FILTER" >> $SEARCHOUT 2>&1
167 if test $RC != 0 ; then
168 echo "ldapsearch failed ($RC)!"
169 test $KILLSERVERS != no && kill -HUP $KILLPIDS
173 FILTER="(name:dn:=whatever)"
174 echo " f=$FILTER ..."
175 echo "# f=$FILTER ..." >> $SEARCHOUT
176 $LDAPSEARCH -S "" -b "" -s base -h $LOCALHOST -p $PORT1 \
177 "$FILTER" >> $SEARCHOUT 2>&1
180 if test $RC != 0 ; then
181 echo "ldapsearch failed ($RC)!"
182 test $KILLSERVERS != no && kill -HUP $KILLPIDS
186 echo "Testing values return filter searching:"
187 echo "# Testing values return filter searching:" >> $SEARCHOUT
189 FILTER="(o=Example, Inc.)"
190 echo " f=$FILTER ..."
191 echo "# f=$FILTER ..." >> $SEARCHOUT
192 $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
193 -E '!mv='"$FILTER" "$FILTER" >> $SEARCHOUT 2>&1
195 if test $RC != 0 ; then
196 echo "ldapsearch failed ($RC)!"
197 test $KILLSERVERS != no && kill -HUP $KILLPIDS
201 FILTER="(dc=example)"
202 VRFILTER="((o:caseExactMatch:=Example, Inc.)(dc=example))"
203 echo " f=$FILTER mv=$VRFILTER ..."
204 echo "# f=$FILTER mv=$VRFILTER ..." >> $SEARCHOUT
205 $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
206 -E '!mv='"$VRFILTER" "$FILTER" >> $SEARCHOUT 2>&1
208 if test $RC != 0 ; then
209 echo "ldapsearch failed ($RC)!"
210 test $KILLSERVERS != no && kill -HUP $KILLPIDS
214 FILTER="(attributeTypes=0.9.2342.19200300.100.1.25)"
215 echo " f=$FILTER ..."
216 echo "# f=$FILTER ..." >> $SEARCHOUT
217 $LDAPSEARCH -S "" -b "cn=Subschema" -s "base" -h $LOCALHOST -p $PORT1 \
218 -E '!mv='"$FILTER" "$FILTER" "attributeTypes" >> $SEARCHOUT 2>&1
220 if test $RC != 0 ; then
221 echo "ldapsearch failed ($RC)!"
222 test $KILLSERVERS != no && kill -HUP $KILLPIDS
226 test $KILLSERVERS != no && kill -HUP $KILLPIDS
228 LDIF=$SEARCHOUTMASTER
231 echo "Filtering ldapsearch results..."
232 . $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
233 echo "Filtering original ldif used to create database..."
234 . $LDIFFILTER < $LDIF > $LDIFFLT
235 . $LDIFFILTER < $LDIF2 >> $LDIFFLT
236 echo "Comparing filter output..."
237 $CMP $SEARCHFLT $LDIFFLT > $CMPOUT
239 if test $? != 0 ; then
240 echo "Comparison failed"
244 echo ">>>>> Test succeeded"
246 test $KILLSERVERS != no && wait