1#! /bin/sh
2# $OpenLDAP$
3## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4##
5## Copyright 1998-2011 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
19mkdir -p $TESTDIR $DBDIR1
20
21echo "Starting slapd on TCP/IP port $PORT1..."
22. $CONFFILTER $BACKEND $MONITORDB < $CONF > $CONF1
23$SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING > $LOG1 2>&1 &
24PID=$!
25if test $WAIT != 0 ; then
26    echo PID $PID
27    read foo
28fi
29KILLPIDS="$PID"
30
31sleep 1
32
33echo "Using ldapsearch to check that slapd is running..."
34for i in 0 1 2 3 4 5; do
35	$LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT1 \
36		'objectclass=*' > /dev/null 2>&1
37	RC=$?
38	if test $RC = 0 ; then
39		break
40	fi
41	echo "Waiting 5 seconds for slapd to start..."
42	sleep 5
43done
44
45echo "Using ldapadd to populate the database..."
46$LDAPADD -D "$MANAGERDN" -h $LOCALHOST -p $PORT1 -w $PASSWD < \
47	$LDIFLANG > $TESTOUT 2>&1
48RC=$?
49if test $RC != 0 ; then
50	echo "ldapadd failed ($RC)!"
51	test $KILLSERVERS != no && kill -HUP $KILLPIDS
52	exit $RC
53fi
54
55echo "Using ldapsearch to read all the entries..."
56$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 -s base \
57	'(&)' > $SEARCHOUT 2>&1
58RC=$?
59
60if test $RC != 0 ; then
61	echo "ldapsearch failed ($RC)!"
62	test $KILLSERVERS != no && kill -HUP $KILLPIDS
63	exit $RC
64fi
65
66echo "Using ldapsearch to read name ..."
67$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 -s base \
68	'(&)' 'name' >> $SEARCHOUT 2>&1
69RC=$?
70
71if test $RC != 0 ; then
72	echo "ldapsearch failed ($RC)!"
73	test $KILLSERVERS != no && kill -HUP $KILLPIDS
74	exit $RC
75fi
76
77echo "Using ldapsearch to read name language tag ..."
78$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 -s base \
79	'(&)' 'name;lang-en-US' >> $SEARCHOUT 2>&1
80RC=$?
81
82if test $RC != 0 ; then
83	echo "ldapsearch failed ($RC)!"
84	test $KILLSERVERS != no && kill -HUP $KILLPIDS
85	exit $RC
86fi
87
88echo "Using ldapsearch to read name language range ..."
89$LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 -s base \
90	'(&)' 'name;lang-en-' >> $SEARCHOUT 2>&1
91RC=$?
92
93if test $RC != 0 ; then
94	echo "ldapsearch failed ($RC)!"
95	test $KILLSERVERS != no && kill -HUP $KILLPIDS
96	exit $RC
97fi
98
99test $KILLSERVERS != no && kill -HUP $KILLPIDS
100
101echo "Filtering ldapsearch results..."
102$LDIFFILTER < $SEARCHOUT > $SEARCHFLT
103echo "Filtering language ldif ..."
104$LDIFFILTER < $LDIFLANGOUT > $LDIFFLT
105echo "Comparing filter output..."
106$CMP $SEARCHFLT $LDIFFLT > $CMPOUT
107
108if test $? != 0 ; then
109	echo "comparison failed - language test failed!"
110	exit 1
111fi
112
113echo ">>>>> Test succeeded"
114
115test $KILLSERVERS != no && wait
116
117exit 0
118