]> git.sur5r.net Git - openldap/commitdiff
test sleeptime
authorPierangelo Masarati <ando@openldap.org>
Sun, 3 Jul 2005 23:07:49 +0000 (23:07 +0000)
committerPierangelo Masarati <ando@openldap.org>
Sun, 3 Jul 2005 23:07:49 +0000 (23:07 +0000)
tests/scripts/test038-retcode

index a1a0d38446da4ba8085be61feef0d4bb2aea958c..9a626383abe310936e21e9ea3401fd0a1b014d17 100755 (executable)
@@ -68,7 +68,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 +78,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,6 +91,16 @@ 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"