]> git.sur5r.net Git - openldap/blobdiff - tests/scripts/test038-retcode
append logs
[openldap] / tests / scripts / test038-retcode
index a1a0d38446da4ba8085be61feef0d4bb2aea958c..024437fcdf1117f7dd79238076871c222c9ecb9a 100755 (executable)
@@ -2,7 +2,7 @@
 # $Header$
 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
 ##
-## Copyright 1998-2005 The OpenLDAP Foundation.
+## Copyright 1998-2006 The OpenLDAP Foundation.
 ## All rights reserved.
 ##
 ## Redistribution and use in source and binary forms, with or without
@@ -50,6 +50,8 @@ if test $WAIT != 0 ; then
 fi
 KILLPIDS="$PID"
 
+sleep 1
+
 echo "Testing slapd searching..."
 for i in 0 1 2 3 4 5; do
        $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT1 \
@@ -68,7 +70,7 @@ if test $RC != 0 ; then
        exit $RC
 fi
 
-echo "Testing searching for timelimitExceeded..."
+echo "Testing search for timelimitExceeded..."
 $LDAPSEARCH -b "cn=timelimitExceeded,ou=RetCodes,$BASEDN" \
        -h $LOCALHOST -p $PORT1 '(objectClass=*)' >> $TESTOUT 2>&1
 RC=$?
@@ -78,7 +80,7 @@ if test $RC != 3 ; then
        exit $RC
 fi
 
-echo "Testing modifying for unwillingToPerform..."
+echo "Testing modify for unwillingToPerform..."
 $LDAPMODIFY -D "$MANAGERDN" -w $PASSWD \
        -h $LOCALHOST -p $PORT1 >> $TESTOUT 2>&1 << EOMODS
 dn: cn=unwillingToPerform,ou=RetCodes,$BASEDN
@@ -91,7 +93,20 @@ if test $RC != 53 ; then
        exit $RC
 fi
 
+echo "Testing compare for success after sleep (2 s)..."
+$LDAPCOMPARE -h $LOCALHOST -p $PORT1 \
+       "cn=Success w/ Delay,ou=RetCodes,$BASEDN" "cn:foo" >> $TESTOUT 2>&1
+RC=$?
+if test $RC != 0 ; then
+       echo "ldapcompare failed ($RC)!"
+       test $KILLSERVERS != no && kill -HUP $KILLPIDS
+       exit $RC
+fi
+
 test $KILLSERVERS != no && kill -HUP $KILLPIDS
 
 echo ">>>>> Test succeeded"
+
+test $KILLSERVERS != no && wait
+
 exit 0