use of org.apache.directory.api.ldap.model.message.BindResponseImpl in project directory-ldap-api by apache.
the class BindRequestTest method testDecodeBindRequestBadDN.
/**
* Test the decoding of a BindRequest with Simple authentication and
* controls
*/
@Test
public void testDecodeBindRequestBadDN() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x35);
stream.put(new byte[] { 0x30, // LDAPMessage ::=SEQUENCE {
0x33, 0x02, 0x01, // messageID MessageID
0x01, 0x60, // CHOICE { ..., bindRequest BindRequest, ...
0x2E, // BindRequest ::= APPLICATION[0] SEQUENCE {
0x02, 0x01, // version INTEGER (1..127),
0x03, 0x04, // name LDAPDN,
0x1F, 'u', 'i', 'd', ':', 'a', 'k', 'a', 'r', 'a', 's', 'u', 'l', 'u', ',', 'd', 'c', '=', 'e', 'x', 'a', 'm', 'p', 'l', 'e', ',', 'd', 'c', '=', 'c', 'o', 'm', (byte) 0x80, // authentication AuthenticationChoice
0x08, // ...
'p', 'a', 's', 's', 'w', 'o', 'r', 'd' });
stream.flip();
// Allocate a LdapMessage Container
LdapMessageContainer<MessageDecorator<? extends Message>> container = new LdapMessageContainer<MessageDecorator<? extends Message>>(codec);
// Decode the BindRequest PDU
try {
ldapDecoder.decode(stream, container);
BindRequest bindRequest = ((BindRequestDecorator) container.getMessage());
assertNull(bindRequest.getDn());
assertEquals("uid:akarasulu,dc=example,dc=com", bindRequest.getName());
} catch (DecoderException de) {
assertTrue(de instanceof ResponseCarryingException);
Message response = ((ResponseCarryingException) de).getResponse();
assertTrue(response instanceof BindResponseImpl);
assertEquals(ResultCodeEnum.INVALID_DN_SYNTAX, ((BindResponseImpl) response).getLdapResult().getResultCode());
return;
}
}
use of org.apache.directory.api.ldap.model.message.BindResponseImpl in project directory-ldap-api by apache.
the class BindRequestTest method testDecodeBindRequestEmptySasl.
/**
* Test the decoding of a BindRequest with an empty sasl
*/
@Test
public void testDecodeBindRequestEmptySasl() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x0E);
stream.put(new byte[] { // LDAPMessage ::=SEQUENCE {
0x30, // LDAPMessage ::=SEQUENCE {
0x0C, 0x02, 0x01, // messageID MessageID
0x01, 0x60, // CHOICE { ..., bindRequest BindRequest, ...
0x07, 0x02, 0x01, // version INTEGER (1..127),
0x03, 0x04, 0x00, (byte) 0xA3, 0x00 });
stream.flip();
// Allocate a LdapMessage Container
LdapMessageContainer<BindRequestDecorator> container = new LdapMessageContainer<BindRequestDecorator>(codec);
// Decode a BindRequest message
try {
ldapDecoder.decode(stream, container);
} catch (DecoderException de) {
assertTrue(de instanceof ResponseCarryingException);
Message response = ((ResponseCarryingException) de).getResponse();
assertTrue(response instanceof BindResponseImpl);
assertEquals(ResultCodeEnum.INVALID_CREDENTIALS, ((BindResponseImpl) response).getLdapResult().getResultCode());
return;
}
fail("We should not reach this point");
}
Aggregations