2 # $OpenLDAP: pkg/ldap/tests/scripts/test029-ldapglue,v 1.8.2.3 2008/02/11 23:26:51 kurt Exp $
3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 ## Copyright 1998-2008 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 echo "### This test requires the ldap backend and glue overlay."
20 echo "### If available, and explicitly requested, it can use SASL bind;"
21 echo "### note that SASL must be properly set up, and the requested"
22 echo "### mechanism must be available. Define SLAPD_USE_SASL={yes|<mech>},"
23 echo "### with \"yes\" defaulting to DIGEST-MD5 to enable SASL authc[/authz]."
25 if test $BACKLDAP = "ldapno" ; then
26 echo "LDAP backend not available, test skipped"
30 if test $WITH_SASL = "yes" ; then
31 if test $USE_SASL != "no" ; then
32 if test $USE_SASL = "yes" ; then
37 echo "Using SASL authc[/authz] with mech=$MECH; unset SLAPD_USE_SASL to disable"
39 echo "Using proxyAuthz with simple authc..."
42 echo "SASL not available; using proxyAuthz with simple authc..."
45 mkdir
-p $TESTDIR $DBDIR1 $DBDIR2 $DBDIR3
47 echo "Running slapadd to build slapd database..."
48 .
$CONFFILTER $BACKEND $MONITORDB < $LDAPGLUECONF1 > $ADDCONF
49 $SLAPADD -f $ADDCONF -l $LDIFLDAPGLUE1
51 if test $RC != 0 ; then
52 echo "slapadd 1 failed ($RC)!"
56 .
$CONFFILTER $BACKEND $MONITORDB < $LDAPGLUECONF2 > $ADDCONF
57 $SLAPADD -f $ADDCONF -l $LDIFLDAPGLUE2
59 if test $RC != 0 ; then
60 echo "slapadd 2 failed ($RC)!"
64 .
$CONFFILTER $BACKEND $MONITORDB < $LDAPGLUECONF3 > $ADDCONF
65 $SLAPADD -f $ADDCONF -l $LDIFLDAPGLUE3
67 if test $RC != 0 ; then
68 echo "slapadd 3 failed ($RC)!"
72 echo "Starting local slapd on TCP/IP port $PORT1..."
73 .
$CONFFILTER $BACKEND $MONITORDB < $LDAPGLUECONF1 > $CONF1
74 $SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING > $LOG1 2>&1 &
76 if test $WAIT != 0 ; then
81 echo "Starting remote slapd 1 on TCP/IP port $PORT2..."
82 .
$CONFFILTER $BACKEND $MONITORDB < $LDAPGLUECONF2 > $CONF2
83 $SLAPD -f $CONF2 -h $URI2 -d $LVL $TIMING > $LOG2 2>&1 &
85 if test $WAIT != 0 ; then
90 echo "Starting remote slapd 2 on TCP/IP port $PORT3..."
91 .
$CONFFILTER $BACKEND $MONITORDB < $LDAPGLUECONF3 > $CONF3
92 $SLAPD -f $CONF3 -h $URI3 -d $LVL $TIMING > $LOG3 2>&1 &
94 if test $WAIT != 0 ; then
98 KILLPIDS
="$PID1 $PID2 $PID3"
102 echo "Using ldapsearch to check that slapd is running..."
103 for i
in 0 1 2 3 4 5; do
104 $LDAPSEARCH -s base
-b "$MONITOR" -h $LOCALHOST -p $PORT1 \
105 'objectclass=*' > /dev
/null
2>&1
107 if test $RC = 0 ; then
110 echo "Waiting 5 seconds for slapd to start..."
114 echo "Using ldapsearch to check that slapd is running..."
115 for i
in 0 1 2 3 4 5; do
116 $LDAPSEARCH -s base
-b "$MONITOR" -h $LOCALHOST -p $PORT2 \
117 'objectclass=*' > /dev
/null
2>&1
119 if test $RC = 0 ; then
122 echo "Waiting 5 seconds for slapd to start..."
126 echo "Using ldapsearch to check that slapd is running..."
127 for i
in 0 1 2 3 4 5; do
128 $LDAPSEARCH -s base
-b "$MONITOR" -h $LOCALHOST -p $PORT3 \
129 'objectclass=*' > /dev
/null
2>&1
131 if test $RC = 0 ; then
134 echo "Waiting 5 seconds for slapd to start..."
138 ID
="uid=bjorn,ou=People,dc=example,dc=com"
139 BASE
="dc=example,dc=com"
140 echo "Testing ldapsearch as $ID for \"$BASE\"..."
141 $LDAPSEARCH -h $LOCALHOST -p $PORT1 -b "$BASE" \
142 -D "$ID" -w bjorn
> $SEARCHOUT 2>&1
145 if test $RC != 0 ; then
146 echo "ldapsearch failed ($RC)!"
147 test $KILLSERVERS != no
&& kill -HUP $KILLPIDS
151 echo "Filtering ldapsearch results..."
152 .
$LDIFFILTER < $SEARCHOUT > $SEARCHFLT
153 echo "Filtering original ldif used to create database..."
154 .
$LDIFFILTER < $LDAPGLUEOUT > $LDIFFLT
155 echo "Comparing filter output..."
156 $CMP $SEARCHFLT $LDIFFLT > $CMPOUT
158 if test $?
!= 0 ; then
159 echo "comparison failed - glued search with identity assertion didn't succeed"
160 test $KILLSERVERS != no
&& kill -HUP $KILLPIDS
164 BASE
="dc=example,dc=com"
165 echo "Testing ldapsearch as anonymous for \"$BASE\"..."
166 $LDAPSEARCH -h $LOCALHOST -p $PORT1 -b "$BASE" \
170 if test $RC != 0 ; then
171 echo "ldapsearch failed ($RC)!"
172 test $KILLSERVERS != no
&& kill -HUP $KILLPIDS
176 echo "Filtering ldapsearch results..."
177 .
$LDIFFILTER < $SEARCHOUT > $SEARCHFLT
178 echo "Filtering original ldif used to create database..."
179 .
$LDIFFILTER < $LDAPGLUEANONYMOUSOUT > $LDIFFLT
180 echo "Comparing filter output..."
181 $CMP $SEARCHFLT $LDIFFLT > $CMPOUT
183 if test $?
!= 0 ; then
184 echo "comparison failed - anonymous glued search with identity assertion didn't succeed"
185 test $KILLSERVERS != no
&& kill -HUP $KILLPIDS
189 # FIXME: this cannot work as is, because SASL bind cannot be proxied!
190 if test $USE_SASL != "no" ; then
192 BASE
="dc=example,dc=com"
193 echo "Testing ldapsearch as $ID for \"$BASE\" with SASL bind and identity assertion..."
194 $LDAPSASLSEARCH -h $LOCALHOST -p $PORT1 -b "$BASE" \
195 -Q -U "$ID" -w bjorn
-Y $MECH > $SEARCHOUT 2>&1
198 if test $RC != 0 ; then
199 echo "ldapsearch failed ($RC)!"
200 test $KILLSERVERS != no
&& kill -HUP $KILLPIDS
204 echo "Filtering ldapsearch results..."
205 .
$LDIFFILTER < $SEARCHOUT > $SEARCHFLT
206 echo "Filtering original ldif used to create database..."
207 .
$LDIFFILTER < $LDAPGLUEOUT > $LDIFFLT
208 echo "Comparing filter output..."
209 $CMP $SEARCHFLT $LDIFFLT > $CMPOUT
211 if test $?
!= 0 ; then
212 echo "comparison failed - glued search with SASL bind and identity assertion didn't succeed"
213 test $KILLSERVERS != no
&& kill -HUP $KILLPIDS
218 test $KILLSERVERS != no
&& kill -HUP $KILLPIDS
220 echo ">>>>> Test succeeded"
222 test $KILLSERVERS != no
&& wait