]> git.sur5r.net Git - openldap/blob - tests/scripts/test015-xsearch
Happy new year!
[openldap] / tests / scripts / test015-xsearch
1 #! /bin/sh
2 # $OpenLDAP$
3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 ##
5 ## Copyright 1998-2006 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 mkdir -p $TESTDIR $DBDIR1
20
21 echo "Running slapadd to build slapd database..."
22 . $CONFFILTER $BACKEND $MONITORDB < $MCONF > $ADDCONF
23 $SLAPADD -f $ADDCONF -l $LDIFORDERED
24 RC=$?
25 if test $RC != 0 ; then
26         echo "slapadd failed ($RC)!"
27         exit $RC
28 fi
29
30 echo "Running slapindex to index slapd database..."
31 . $CONFFILTER $BACKEND $MONITORDB < $CONF > $CONF1
32 $SLAPINDEX -f $CONF1
33 RC=$?
34 if test $RC != 0 ; then
35         echo "warning: slapindex failed ($RC)"
36         echo "  assuming no indexing support"
37 fi
38
39 echo "Starting slapd on TCP/IP port $PORT1..."
40 $SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING > $LOG1 2>&1 &
41 PID=$!
42 if test $WAIT != 0 ; then
43     echo PID $PID
44     read foo
45 fi
46 KILLPIDS="$PID"
47
48 sleep 1
49
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
54         RC=$?
55         if test $RC = 0 ; then
56                 break
57         fi
58         echo "Waiting 5 seconds for slapd to start..."
59         sleep 5
60 done
61
62 if test $RC != 0 ; then
63         echo "ldapsearch failed ($RC)!"
64         test $KILLSERVERS != no && kill -HUP $KILLPIDS
65         exit $RC
66 fi
67
68 cat /dev/null > $SEARCHOUT
69
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
74 RC=$?
75 if test $RC != 0 ; then
76         echo "ldapsearch failed ($RC)!"
77         test $KILLSERVERS != no && kill -HUP $KILLPIDS
78         exit $RC
79 fi
80
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
85 RC=$?
86 if test $RC != 0 ; then
87         echo "ldapsearch failed ($RC)!"
88         test $KILLSERVERS != no && kill -HUP $KILLPIDS
89         exit $RC
90 fi
91
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
96 RC=$?
97 if test $RC != 0 ; then
98         echo "ldapsearch failed ($RC)!"
99         test $KILLSERVERS != no && kill -HUP $KILLPIDS
100         exit $RC
101 fi
102
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
107 RC=$?
108 if test $RC != 0 ; then
109         echo "ldapsearch failed ($RC)!"
110         test $KILLSERVERS != no && kill -HUP $KILLPIDS
111         exit $RC
112 fi
113
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
118 RC=$?
119 if test $RC != 0 ; then
120         echo "ldapsearch failed ($RC)!"
121         test $KILLSERVERS != no && kill -HUP $KILLPIDS
122         exit $RC
123 fi
124
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
130 RC=$?
131 if test $RC != 0 ; then
132         echo "ldapsearch failed ($RC)!"
133         test $KILLSERVERS != no && kill -HUP $KILLPIDS
134         exit $RC
135 fi
136
137 echo "Testing extended RFC2254 searching:"
138 echo "# Testing extended RFC2254 searching:" >> $SEARCHOUT
139
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
145
146 RC=$?
147 if test $RC != 0 ; then
148         echo "ldapsearch failed ($RC)!"
149         test $KILLSERVERS != no && kill -HUP $KILLPIDS
150         exit $RC
151 fi
152
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
158
159 RC=$?
160 if test $RC != 0 ; then
161         echo "ldapsearch failed ($RC)!"
162         test $KILLSERVERS != no && kill -HUP $KILLPIDS
163         exit $RC
164 fi
165
166 FILTER="(name:dn:=whatever)"
167 echo "        f=$FILTER ..."
168 echo "#         f=$FILTER ..." >> $SEARCHOUT
169 $LDAPSEARCH -S "" -b "" -s base -h $LOCALHOST -p $PORT1 \
170         "$FILTER" >> $SEARCHOUT 2>&1
171
172 RC=$?
173 if test $RC != 0 ; then
174         echo "ldapsearch failed ($RC)!"
175         test $KILLSERVERS != no && kill -HUP $KILLPIDS
176         exit $RC
177 fi
178
179 echo "Testing values return filter searching:"
180 echo "# Testing values return filter searching:" >> $SEARCHOUT
181
182 FILTER="(o=Example, Inc.)"
183 echo "        f=$FILTER ..."
184 echo "#         f=$FILTER ..." >> $SEARCHOUT
185 $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
186         -E '!mv='"$FILTER" "$FILTER" >> $SEARCHOUT 2>&1
187 RC=$?
188 if test $RC != 0 ; then
189         echo "ldapsearch failed ($RC)!"
190         test $KILLSERVERS != no && kill -HUP $KILLPIDS
191         exit $RC
192 fi
193
194 FILTER="(dc=example)"
195 VRFILTER="((o:caseExactMatch:=Example, Inc.)(dc=example))"
196 echo "        f=$FILTER mv=$VRFILTER ..."
197 echo "#         f=$FILTER mv=$VRFILTER ..." >> $SEARCHOUT
198 $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
199         -E '!mv='"$VRFILTER" "$FILTER" >> $SEARCHOUT 2>&1
200 RC=$?
201 if test $RC != 0 ; then
202         echo "ldapsearch failed ($RC)!"
203         test $KILLSERVERS != no && kill -HUP $KILLPIDS
204         exit $RC
205 fi
206
207 FILTER="(attributeTypes=0.9.2342.19200300.100.1.25)"
208 echo "        f=$FILTER ..."
209 echo "#         f=$FILTER ..." >> $SEARCHOUT
210 $LDAPSEARCH -S "" -b "cn=Subschema" -s "base" -h $LOCALHOST -p $PORT1 \
211         -E '!mv='"$FILTER" "$FILTER" "attributeTypes" >> $SEARCHOUT 2>&1
212 RC=$?
213 if test $RC != 0 ; then
214         echo "ldapsearch failed ($RC)!"
215         test $KILLSERVERS != no && kill -HUP $KILLPIDS
216         exit $RC
217 fi
218
219 test $KILLSERVERS != no && kill -HUP $KILLPIDS
220
221 LDIF=$SEARCHOUTMASTER
222 LDIF2=$SEARCHOUTX
223
224 echo "Filtering ldapsearch results..."
225 . $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
226 echo "Filtering original ldif used to create database..."
227 . $LDIFFILTER < $LDIF > $LDIFFLT
228 . $LDIFFILTER < $LDIF2 >> $LDIFFLT
229 echo "Comparing filter output..."
230 $CMP $SEARCHFLT $LDIFFLT > $CMPOUT
231
232 if test $? != 0 ; then
233         echo "Comparison failed"
234         exit 1
235 fi
236
237 echo ">>>>> Test succeeded"
238 exit 0