]> git.sur5r.net Git - openldap/commitdiff
ITS#4334 add test of invalid Binds
authorHoward Chu <hyc@openldap.org>
Thu, 12 Jan 2006 15:52:48 +0000 (15:52 +0000)
committerHoward Chu <hyc@openldap.org>
Thu, 12 Jan 2006 15:52:48 +0000 (15:52 +0000)
tests/scripts/test034-translucent

index 6963a550130edbe6f0f65c4abf9bd15fb1d9164b..8e52e4a4b817d9c627c148cdd3273f4ee31687e0 100755 (executable)
@@ -720,6 +720,27 @@ if test $RC != 19 ; then
        exit 1
 fi
 
+echo "Testing invalid Bind request..."
+$LDAPWHOAMI -D "$TRANSLUCENTDN" -H $URI2 -w Wrong"$TRANSLUCENTPASSWD" > \
+       $TESTOUT 2>&1
+RC=$?
+if test $RC != 49 ; then
+       echo "ldapwhoami failed ($RC), expected INVALID CREDENTIALS!"
+       grep "$FAILURE" $TESTOUT
+       test $KILLSERVERS != no && kill -HUP $KILLPIDS
+       exit 1
+fi
+
+$LDAPWHOAMI -D "$TRANSLUCENTDN" -H $URI2 -w "$TRANSLUCENTPASSWD" > \
+       $TESTOUT 2>&1
+RC=$?
+if test $RC != 0 ; then
+       echo "ldapwhoami failed ($RC), expected SUCCESS!"
+       grep "$FAILURE" $TESTOUT
+       test $KILLSERVERS != no && kill -HUP $KILLPIDS
+       exit 1
+fi
+
 test $KILLSERVERS != no && kill -HUP $KILLPIDS
 
 echo ">>>>> Test succeeded"