openldap/tests/scripts/test015-xsearch

237 lines
6.5 KiB
Plaintext
Raw Normal View History

2002-03-11 09:48:17 +08:00
#! /bin/sh
# $OpenLDAP$
2003-11-29 04:00:23 +08:00
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
##
2004-01-02 03:15:16 +08:00
## Copyright 1998-2004 The OpenLDAP Foundation.
2003-11-29 04:00:23 +08:00
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
## modification, are permitted only as authorized by the OpenLDAP
## Public License.
##
## A copy of this license is available in the file LICENSE in the
## top-level directory of the distribution or, alternatively, at
## <http://www.OpenLDAP.org/license.html>.
2002-03-11 09:48:17 +08:00
echo "running defines.sh"
. $SRCDIR/scripts/defines.sh
mkdir -p $TESTDIR $DBDIR1
2002-03-11 09:48:17 +08:00
echo "Running slapadd to build slapd database..."
. $CONFFILTER $BACKEND $MONITORDB < $MCONF > $ADDCONF
2002-03-11 09:48:17 +08:00
$SLAPADD -f $ADDCONF -l $LDIFORDERED
RC=$?
if test $RC != 0 ; then
echo "slapadd failed ($RC)!"
exit $RC
fi
echo "Running slapindex to index slapd database..."
. $CONFFILTER $BACKEND $MONITORDB < $CONF > $CONF1
$SLAPINDEX -f $CONF1
2002-03-11 09:48:17 +08:00
RC=$?
if test $RC != 0 ; then
echo "warning: slapindex failed ($RC)"
echo " assuming no indexing support"
fi
echo "Starting slapd on TCP/IP port $PORT1..."
$SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING > $LOG1 2>&1 &
2002-03-11 09:48:17 +08:00
PID=$!
if test $WAIT != 0 ; then
echo PID $PID
read foo
fi
KILLPIDS="$PID"
2002-03-11 09:48:17 +08:00
echo "Testing slapd searching..."
for i in 0 1 2 3 4 5; do
$LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT1 \
2002-03-11 09:48:17 +08:00
'objectclass=*' > /dev/null 2>&1
RC=$?
2002-09-01 19:39:08 +08:00
if test $RC = 0 ; then
break
2002-03-11 09:48:17 +08:00
fi
2002-09-01 19:39:08 +08:00
echo "Waiting 5 seconds for slapd to start..."
sleep 5
2002-03-11 09:48:17 +08:00
done
if test $RC != 0 ; then
echo "ldapsearch failed ($RC)!"
test $KILLSERVERS != no && kill -HUP $KILLPIDS
2002-03-11 09:48:17 +08:00
exit $RC
fi
cat /dev/null > $SEARCHOUT
echo "Testing exact searching..."
2004-07-03 19:18:00 +08:00
echo "# Testing exact searching..." >> $SEARCHOUT
$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
2002-03-11 09:48:17 +08:00
'(sn:=jensen)' >> $SEARCHOUT 2>&1
2002-05-17 17:11:30 +08:00
RC=$?
2002-03-11 09:48:17 +08:00
if test $RC != 0 ; then
echo "ldapsearch failed ($RC)!"
test $KILLSERVERS != no && kill -HUP $KILLPIDS
2002-03-11 09:48:17 +08:00
exit $RC
fi
2004-04-10 05:37:48 +08:00
echo "Testing approximate searching..."
2004-07-03 19:18:00 +08:00
echo "# Testing approximate searching..." >> $SEARCHOUT
2004-04-10 05:37:48 +08:00
$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
'(sn~=jensen)' name >> $SEARCHOUT 2>&1
RC=$?
if test $RC != 0 ; then
echo "ldapsearch failed ($RC)!"
test $KILLSERVERS != no && kill -HUP $KILLPIDS
exit $RC
fi
2002-03-11 09:48:17 +08:00
echo "Testing OR searching..."
2004-07-03 19:18:00 +08:00
echo "# Testing OR searching..." >> $SEARCHOUT
$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
2003-08-23 05:42:02 +08:00
'(|(givenName=XX*YY*Z)(cn=)(undef=*)(objectclass=groupofnames)(objectclass=groupofuniquenames)(sn:caseExactMatch:=Jones))' >> $SEARCHOUT 2>&1
2002-05-17 17:11:30 +08:00
RC=$?
2002-03-11 09:48:17 +08:00
if test $RC != 0 ; then
echo "ldapsearch failed ($RC)!"
test $KILLSERVERS != no && kill -HUP $KILLPIDS
2002-03-11 09:48:17 +08:00
exit $RC
fi
echo "Testing AND matching and ends-with searching..."
2004-07-03 19:18:00 +08:00
echo "# Testing AND matching and ends-with searching..." >> $SEARCHOUT
$LDAPSEARCH -S "" -b "ou=groups,$BASEDN" -s one -h $LOCALHOST -p $PORT1 \
2003-08-23 05:42:02 +08:00
'(&(|(objectclass=groupofnames)(objectclass=groupofuniquenames))(cn=A*))' >> $SEARCHOUT 2>&1
2002-05-17 17:11:30 +08:00
RC=$?
2002-03-11 09:48:17 +08:00
if test $RC != 0 ; then
echo "ldapsearch failed ($RC)!"
test $KILLSERVERS != no && kill -HUP $KILLPIDS
2002-03-11 09:48:17 +08:00
exit $RC
fi
echo "Testing NOT searching..."
2004-07-03 19:18:00 +08:00
echo "# Testing NOT searching..." >> $SEARCHOUT
$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
2002-03-11 09:48:17 +08:00
'(!(objectclass=pilotPerson))' >> $SEARCHOUT 2>&1
2002-05-17 17:11:30 +08:00
RC=$?
2002-03-11 09:48:17 +08:00
if test $RC != 0 ; then
echo "ldapsearch failed ($RC)!"
test $KILLSERVERS != no && kill -HUP $KILLPIDS
2002-03-11 09:48:17 +08:00
exit $RC
fi
2002-08-29 11:03:51 +08:00
echo "Testing objectClass/attributeType inheritance ..."
2004-07-03 19:18:00 +08:00
echo "# Testing objectClass/attributeType inheritance ..." >> $SEARCHOUT
$LDAPSEARCH -M -a never -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
2002-08-29 11:03:51 +08:00
'(&(objectClass=inetorgperson)(userid=uham))' \
"2.5.4.0" "userid" >> $SEARCHOUT 2>&1
RC=$?
if test $RC != 0 ; then
echo "ldapsearch failed ($RC)!"
test $KILLSERVERS != no && kill -HUP $KILLPIDS
2002-08-29 11:03:51 +08:00
exit $RC
fi
2004-07-03 19:18:00 +08:00
echo "Testing extended RFC2254 searching:"
echo "# Testing extended RFC2254 searching:" >> $SEARCHOUT
FILTER="(:dn:caseIgnoreIA5Match:=example)"
echo " f=$FILTER ..."
echo "# f=$FILTER ..." >> $SEARCHOUT
$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
2004-07-03 19:18:00 +08:00
"$FILTER" >> $SEARCHOUT 2>&1
RC=$?
if test $RC != 0 ; then
echo "ldapsearch failed ($RC)!"
test $KILLSERVERS != no && kill -HUP $KILLPIDS
exit $RC
fi
FILTER="(:dn:caseExactMatch:=Information Technology Division)"
echo " f=$FILTER ..."
echo "# f=$FILTER ..." >> $SEARCHOUT
$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
"$FILTER" >> $SEARCHOUT 2>&1
RC=$?
if test $RC != 0 ; then
echo "ldapsearch failed ($RC)!"
test $KILLSERVERS != no && kill -HUP $KILLPIDS
exit $RC
fi
2004-07-03 19:18:00 +08:00
#FILTER="(:rdnMatch:=cn=All Staff)"
#echo " f=$FILTER ..."
#echo "# f=$FILTER ..." >> $SEARCHOUT
#$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
# "$FILTER" >> $SEARCHOUT 2>&1
#
#RC=$?
#if test $RC != 0 ; then
# echo "ldapsearch failed ($RC)!"
# test $KILLSERVERS != no && kill -HUP $KILLPIDS
# exit $RC
#fi
echo "Testing values return filter searching:"
echo "# Testing values return filter searching:" >> $SEARCHOUT
FILTER="(o=Example, Inc.)"
echo " f=$FILTER ..."
echo "# f=$FILTER ..." >> $SEARCHOUT
$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
-E '!mv='"$FILTER" "$FILTER" >> $SEARCHOUT 2>&1
RC=$?
if test $RC != 0 ; then
echo "ldapsearch failed ($RC)!"
test $KILLSERVERS != no && kill -HUP $KILLPIDS
exit $RC
fi
2004-07-03 19:18:00 +08:00
FILTER="(dc=example)"
VRFILTER="((o:caseExactMatch:=Example, Inc.)(dc=example))"
echo " f=$FILTER mv=$VRFILTER ..."
echo "# f=$FILTER mv=$VRFILTER ..." >> $SEARCHOUT
$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
2004-07-03 19:18:00 +08:00
-E '!mv='"$VRFILTER" "$FILTER" >> $SEARCHOUT 2>&1
RC=$?
if test $RC != 0 ; then
echo "ldapsearch failed ($RC)!"
test $KILLSERVERS != no && kill -HUP $KILLPIDS
exit $RC
fi
FILTER="(attributeTypes=0.9.2342.19200300.100.1.25)"
echo " f=$FILTER ..."
echo "# f=$FILTER ..." >> $SEARCHOUT
$LDAPSEARCH -S "" -b "cn=Subschema" -s "base" -h $LOCALHOST -p $PORT1 \
-E '!mv='"$FILTER" "$FILTER" "attributeTypes" >> $SEARCHOUT 2>&1
RC=$?
if test $RC != 0 ; then
echo "ldapsearch failed ($RC)!"
test $KILLSERVERS != no && kill -HUP $KILLPIDS
exit $RC
fi
test $KILLSERVERS != no && kill -HUP $KILLPIDS
2002-03-11 09:48:17 +08:00
LDIF=$SEARCHOUTMASTER
LDIF2=$SEARCHOUTX
2002-03-11 09:48:17 +08:00
echo "Filtering ldapsearch results..."
. $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
echo "Filtering original ldif used to create database..."
. $LDIFFILTER < $LDIF > $LDIFFLT
. $LDIFFILTER < $LDIF2 >> $LDIFFLT
2002-03-11 09:48:17 +08:00
echo "Comparing filter output..."
$CMP $SEARCHFLT $LDIFFLT > $CMPOUT
if test $? != 0 ; then
echo "Comparison failed"
exit 1
fi
echo ">>>>> Test succeeded"
exit 0