From 2d907a9bf07c49d50fb6f000245db839c4e6a5f8 Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Wed, 05 Sep 2012 10:08:57 +0000
Subject: [PATCH] Disable DIGEST-MD5 SASL QOP test until OPENDJ-514 (OpenDJ SDK SASL integrity/confidentiality violates protocol) is fixed.
---
opendj3/opendj-ldap-sdk/src/test/java/org/forgerock/opendj/ldap/ConnectionFactoryTestCase.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opendj3/opendj-ldap-sdk/src/test/java/org/forgerock/opendj/ldap/ConnectionFactoryTestCase.java b/opendj3/opendj-ldap-sdk/src/test/java/org/forgerock/opendj/ldap/ConnectionFactoryTestCase.java
index d1a6467..9b6f243 100644
--- a/opendj3/opendj-ldap-sdk/src/test/java/org/forgerock/opendj/ldap/ConnectionFactoryTestCase.java
+++ b/opendj3/opendj-ldap-sdk/src/test/java/org/forgerock/opendj/ldap/ConnectionFactoryTestCase.java
@@ -165,11 +165,11 @@
// Use IP address here so that DIGEST-MD5 host verification works if
// local host name is not localhost (e.g. on some machines it might be
// localhost.localdomain).
+ // FIXME: enable QOP once OPENDJ-514 is fixed.
factories[6][0] =
new AuthenticatedConnectionFactory(new LDAPConnectionFactory(new InetSocketAddress(
"127.0.0.1", TestCaseUtils.getLdapPort()), options), Requests
- .newDigestMD5SASLBindRequest("id:user", "password".toCharArray()).addQOP(
- DigestMD5SASLBindRequest.QOP_AUTH_CONF).setCipher(
+ .newDigestMD5SASLBindRequest("id:user", "password".toCharArray()).setCipher(
DigestMD5SASLBindRequest.CIPHER_LOW));
// Connection pool and load balancing tests.
--
Gitblit v1.10.0