mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
05.08.2012 2d907a9bf07c49d50fb6f000245db839c4e6a5f8
Disable DIGEST-MD5 SASL QOP test until OPENDJ-514 (OpenDJ SDK SASL integrity/confidentiality violates protocol) is fixed.

OPENDJ-514 is causing the unit test to fail on JDK7.
1 files modified
4 ■■■■ changed files
opendj3/opendj-ldap-sdk/src/test/java/org/forgerock/opendj/ldap/ConnectionFactoryTestCase.java 4 ●●●● patch | view | raw | blame | history
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.