]> git.sur5r.net Git - openldap/blob - tests/scripts/test038-retcode
import retcode overlay
[openldap] / tests / scripts / test038-retcode
1 #! /bin/sh
2 # $Header$
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 if test $RETCODE = retcodeno; then 
20         echo "Retcode overlay not available, test skipped"
21         exit 0
22 fi 
23
24 mkdir -p $TESTDIR $DBDIR1
25
26 echo "Running slapadd to build slapd database..."
27 . $CONFFILTER $BACKEND $MONITORDB < $MCONF > $ADDCONF
28 $SLAPADD -f $ADDCONF -l $LDIFORDERED
29 RC=$?
30 if test $RC != 0 ; then
31         echo "slapadd failed ($RC)!"
32         exit $RC
33 fi
34
35 echo "Running slapindex to index slapd database..."
36 . $CONFFILTER $BACKEND $MONITORDB < $RETCODECONF > $CONF1
37 $SLAPINDEX -f $CONF1
38 RC=$?
39 if test $RC != 0 ; then
40         echo "warning: slapindex failed ($RC)"
41         echo "  assuming no indexing support"
42 fi
43
44 echo "Starting slapd on TCP/IP port $PORT1..."
45 $SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING > $LOG1 2>&1 &
46 PID=$!
47 if test $WAIT != 0 ; then
48     echo PID $PID
49     read foo
50 fi
51 KILLPIDS="$PID"
52
53 echo "Testing slapd searching..."
54 for i in 0 1 2 3 4 5; do
55         $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT1 \
56                 '(objectclass=*)' > /dev/null 2>&1
57         RC=$?
58         if test $RC = 0 ; then
59                 break
60         fi
61         echo "Waiting 5 seconds for slapd to start..."
62         sleep 5
63 done
64
65 if test $RC != 0 ; then
66         echo "ldapsearch failed ($RC)!"
67         test $KILLSERVERS != no && kill -HUP $KILLPIDS
68         exit $RC
69 fi
70
71 echo "Testing searching for timelimitExceeded..."
72 $LDAPSEARCH -b "cn=timelimitExceeded,ou=RetCodes,$BASEDN" \
73         -h $LOCALHOST -p $PORT1 '(objectClass=*)' >> $TESTOUT 2>&1
74 RC=$?
75 if test $RC != 3 ; then
76         echo "ldapsearch failed ($RC)!"
77         test $KILLSERVERS != no && kill -HUP $KILLPIDS
78         exit $RC
79 fi
80
81 echo "Testing modifying for unwillingToPerform..."
82 $LDAPMODIFY -D "$MANAGERDN" -w $PASSWD \
83         -h $LOCALHOST -p $PORT1 >> $TESTOUT 2>&1 << EOMODS
84 dn: cn=unwillingToPerform,ou=RetCodes,$BASEDN
85 changetype: delete
86 EOMODS
87 RC=$?
88 if test $RC != 53 ; then
89         echo "ldapmodify failed ($RC)!"
90         test $KILLSERVERS != no && kill -HUP $KILLPIDS
91         exit $RC
92 fi
93
94 test $KILLSERVERS != no && kill -HUP $KILLPIDS
95
96 echo ">>>>> Test succeeded"
97 exit 0