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