Sync usage with man page.
[netbsd-mini2440.git] / external / bsd / openldap / dist / tests / scripts / test038-retcode
blob59059acce89381c84ce5c132be006dfdc484a95e
1 #! /bin/sh
2 # $Header: /pub/NetBSD/misc/repositories/cvsroot/src/external/bsd/openldap/dist/tests/scripts/test038-retcode,v 1.1.1.1 2008/02/11 23:26:51 lukem Exp $
3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 ##
5 ## Copyright 1998-2008 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.
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 if test $RETCODE = retcodeno; then
20 echo "Retcode overlay not available, test skipped"
21 exit 0
22 fi
24 mkdir -p $TESTDIR $DBDIR1
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
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"
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
51 KILLPIDS="$PID"
53 sleep 1
55 echo "Testing slapd searching..."
56 for i in 0 1 2 3 4 5; do
57 $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT1 \
58 '(objectclass=*)' > /dev/null 2>&1
59 RC=$?
60 if test $RC = 0 ; then
61 break
63 echo "Waiting 5 seconds for slapd to start..."
64 sleep 5
65 done
67 if test $RC != 0 ; then
68 echo "ldapsearch failed ($RC)!"
69 test $KILLSERVERS != no && kill -HUP $KILLPIDS
70 exit $RC
73 echo "Testing search for timelimitExceeded..."
74 $LDAPSEARCH -b "cn=timelimitExceeded,ou=RetCodes,$BASEDN" \
75 -h $LOCALHOST -p $PORT1 '(objectClass=*)' >> $TESTOUT 2>&1
76 RC=$?
77 if test $RC != 3 ; then
78 echo "ldapsearch failed ($RC)!"
79 test $KILLSERVERS != no && kill -HUP $KILLPIDS
80 exit $RC
83 echo "Testing modify for unwillingToPerform..."
84 $LDAPMODIFY -D "$MANAGERDN" -w $PASSWD \
85 -h $LOCALHOST -p $PORT1 >> $TESTOUT 2>&1 << EOMODS
86 dn: cn=unwillingToPerform,ou=RetCodes,$BASEDN
87 changetype: delete
88 EOMODS
89 RC=$?
90 if test $RC != 53 ; then
91 echo "ldapmodify failed ($RC)!"
92 test $KILLSERVERS != no && kill -HUP $KILLPIDS
93 exit $RC
96 echo "Testing compare for success after sleep (2 s)..."
97 $LDAPCOMPARE -h $LOCALHOST -p $PORT1 \
98 "cn=Success w/ Delay,ou=RetCodes,$BASEDN" "cn:foo" >> $TESTOUT 2>&1
99 RC=$?
100 if test $RC != 0 ; then
101 echo "ldapcompare failed ($RC)!"
102 test $KILLSERVERS != no && kill -HUP $KILLPIDS
103 exit $RC
106 test $KILLSERVERS != no && kill -HUP $KILLPIDS
108 echo ">>>>> Test succeeded"
110 test $KILLSERVERS != no && wait
112 exit 0