1#! /bin/sh
2# $OpenLDAP$
3## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4##
5## Copyright 1998-2021 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
16echo "running defines.sh"
17. $SRCDIR/scripts/defines.sh
18
19echo ""
20
21if test $BACKASYNCMETA = asyncmetano ; then
22	echo "asyncmeta backend not available, test skipped"
23	exit 0
24fi
25
26if test $BACKLDAP = ldapno ; then
27	echo "ldap backend not available, test skipped"
28	exit 0
29fi
30
31if test x$TESTLOOPS = x ; then
32	TESTLOOPS=50
33fi
34
35if test x$TESTCHILDREN = x ; then
36	TESTCHILDREN=20
37fi
38
39rm -rf $TESTDIR
40
41mkdir -p $TESTDIR $DBDIR1 $DBDIR2
42
43echo "Starting slapd on TCP/IP port $PORT1..."
44. $CONFFILTER $BACKEND < $METACONF1 > $CONF1
45$SLAPD -f $CONF1 -h $URI1 -d $LVL > $LOG1 2>&1 &
46PID=$!
47if test $WAIT != 0 ; then
48    echo PID $PID
49    read foo
50fi
51KILLPIDS="$PID"
52
53sleep 1
54
55echo "Using ldapsearch to check that slapd is running..."
56for i in 0 1 2 3 4 5; do
57	$LDAPSEARCH -s base -b "$MONITOR" -H $URI1 \
58		'objectclass=*' > /dev/null 2>&1
59	RC=$?
60	if test $RC = 0 ; then
61		break
62	fi
63	echo "Waiting 5 seconds for slapd to start..."
64	sleep 5
65done
66if test $RC != 0 ; then
67	echo "ldapsearch failed ($RC)!"
68	test $KILLSERVERS != no && kill -HUP $KILLPIDS
69	exit $RC
70fi
71
72echo "Using ldapadd to populate the database..."
73$LDAPADD -D "$MANAGERDN" -H $URI1 -w $PASSWD < \
74	$LDIFORDERED > $TESTOUT 2>&1
75RC=$?
76if test $RC != 0 ; then
77	echo "ldapadd failed ($RC)!"
78	test $KILLSERVERS != no && kill -HUP $KILLPIDS
79	exit $RC
80fi
81
82echo "Starting slapd on TCP/IP port $PORT2..."
83. $CONFFILTER $BACKEND < $METACONF2 > $CONF2
84$SLAPD -f $CONF2 -h $URI2 -d $LVL > $LOG2 2>&1 &
85PID=$!
86if test $WAIT != 0 ; then
87    echo PID $PID
88    read foo
89fi
90KILLPIDS="$KILLPIDS $PID"
91
92sleep 1
93
94echo "Using ldapsearch to check that slapd is running..."
95for i in 0 1 2 3 4 5; do
96	$LDAPSEARCH -s base -b "$MONITOR" -H $URI2 \
97		'objectclass=*' > /dev/null 2>&1
98	RC=$?
99	if test $RC = 0 ; then
100		break
101	fi
102	echo "Waiting 5 seconds for slapd to start..."
103	sleep 5
104done
105if test $RC != 0 ; then
106	echo "ldapsearch failed ($RC)!"
107	test $KILLSERVERS != no && kill -HUP $KILLPIDS
108	exit $RC
109fi
110
111echo "Using ldapadd to populate the database..."
112$LDAPADD -D "$METAMANAGERDN" -H $URI2 -w $PASSWD < \
113	$LDIFMETA >> $TESTOUT 2>&1
114RC=$?
115if test $RC != 0 ; then
116	echo "ldapadd failed ($RC)!"
117	test $KILLSERVERS != no && kill -HUP $KILLPIDS
118	exit $RC
119fi
120
121echo "Starting slapd on TCP/IP port $PORT3..."
122. $CONFFILTER $BACKEND < $ASYNCMETACONF > $CONF3
123$SLAPD -f $CONF3 -h $URI3 -d $LVL > $LOG3 2>&1 &
124PID=$!
125if test $WAIT != 0 ; then
126    echo PID $PID
127    read foo
128fi
129KILLPIDS="$KILLPIDS $PID"
130
131sleep 1
132
133echo "Using ldapsearch to check that slapd is running..."
134for i in 0 1 2 3 4 5; do
135	$LDAPSEARCH -s base -b "$MONITOR" -H $URI3 \
136		'objectclass=*' > /dev/null 2>&1
137	RC=$?
138	if test $RC = 0 ; then
139		break
140	fi
141	echo "Waiting 5 seconds for slapd to start..."
142	sleep 5
143done
144if test $RC != 0 ; then
145	echo "ldapsearch failed ($RC)!"
146	test $KILLSERVERS != no && kill -HUP $KILLPIDS
147	exit $RC
148fi
149
150cat /dev/null > $SEARCHOUT
151
152mkdir -p $TESTDIR/$DATADIR
153METABASEDN="o=Example,c=US"
154for f in $DATADIR/do_* ; do
155	sed -e "s;$BASEDN;$METABASEDN;" $f > $TESTDIR/$f
156done
157
158# add a read that matches only the local database, but selects
159# also the remote as candidate; this should be removed to compare
160# execution times with test008...
161for f in $TESTDIR/$DATADIR/do_read.* ; do
162	echo "ou=Meta,$METABASEDN" >> $f
163done
164
165# add a read that matches a referral in the local database only,
166# but selects also the remote as candidate; this should be removed
167# to compare execution times with test008...
168for f in $TESTDIR/$DATADIR/do_read.* ; do
169	echo "cn=Somewhere,ou=Meta,$METABASEDN" >> $f
170done
171
172# add a bind that resolves to a referral
173for f in $TESTDIR/$DATADIR/do_bind.* ; do
174	echo "cn=Foo,ou=Meta,$METABASEDN" >> $f
175	echo "bar" >> $f
176	echo "" >> $f
177	echo "" >> $f
178done
179
180# fix test data to include back-monitor, if available
181# NOTE: copies do_* files from $TESTDIR/$DATADIR to $TESTDIR
182$MONITORDATA "$TESTDIR/$DATADIR" "$TESTDIR"
183
184BINDDN="cn=Manager,o=Local"
185PASSWD="secret"
186echo "Using tester for concurrent server access..."
187$SLAPDTESTER -P "$PROGDIR" -d "$TESTDIR" -H $URI3 \
188	-D "$BINDDN" -w $PASSWD -l $TESTLOOPS -j $TESTCHILDREN \
189	-r 20 -i '!REFERRAL' -i '*INVALID_CREDENTIALS' -SS
190RC=$?
191
192if test $RC != 0 ; then
193	echo "slapd-tester failed ($RC)!"
194	test $KILLSERVERS != no && kill -HUP $KILLPIDS
195	exit $RC
196fi
197
198echo "Using ldapsearch to retrieve all the entries..."
199$LDAPSEARCH -S "" -b "$METABASEDN" -H $URI3 \
200			'objectClass=*' > $SEARCHOUT 2>&1
201RC=$?
202
203test $KILLSERVERS != no && kill -HUP $KILLPIDS
204
205if test $RC != 0 ; then
206	echo "ldapsearch failed ($RC)!"
207	exit $RC
208fi
209
210echo "Filtering ldapsearch results..."
211$LDIFFILTER < $SEARCHOUT > $SEARCHFLT
212echo "Filtering original ldif used to create database..."
213$LDIFFILTER < $METACONCURRENCYOUT > $LDIFFLT
214echo "Comparing filter output..."
215$CMP $SEARCHFLT $LDIFFLT > $CMPOUT
216
217if test $? != 0 ; then
218	echo "comparison failed - slapd-asyncmeta search/modification didn't succeed"
219	exit 1
220fi
221
222echo ">>>>> Test succeeded"
223
224test $KILLSERVERS != no && wait
225
226exit 0
227