use of org.apache.directory.api.ldap.codec.api.ResponseCarryingException in project directory-ldap-api by apache.
the class ModifyRequestTest method testDecodeModifyRequestAddOperationModificationEmptyType.
/**
* Test the decoding of a ModifyRequest with an add operation, and a
* modification with an empty type
*/
@Test
public void testDecodeModifyRequestAddOperationModificationEmptyType() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x34);
stream.put(new byte[] { 0x30, // LdapMessage
0x32, 0x02, 0x01, // Message ID : 49
0x31, 0x66, // ModifyRequest
0x2D, 0x04, 0x20, 'c', 'n', '=', 't', 'e', 's', 't', 'M', 'o', 'd', 'i', 'f', 'y', ',', 'o', 'u', '=', 'u', 's', 'e', 'r', 's', ',', 'o', 'u', '=', 's', 'y', 's', 't', 'e', 'm', 0x30, 0x09, 0x30, 0x07, 0x0A, 0x01, 0x00, 0x30, 0x02, 0x04, 0x00 });
stream.flip();
// Allocate a LdapMessage Container
LdapMessageContainer<ModifyRequestDecorator> ldapMessageContainer = new LdapMessageContainer<ModifyRequestDecorator>(codec);
// Decode a ModifyRequest PDU
try {
ldapDecoder.decode(stream, ldapMessageContainer);
fail("We should never reach this point !!!");
} catch (DecoderException de) {
assertTrue(de instanceof ResponseCarryingException);
Message response = ((ResponseCarryingException) de).getResponse();
assertTrue(response instanceof ModifyResponseImpl);
assertEquals(ResultCodeEnum.INVALID_ATTRIBUTE_SYNTAX, ((ModifyResponseImpl) response).getLdapResult().getResultCode());
return;
}
}
use of org.apache.directory.api.ldap.codec.api.ResponseCarryingException in project directory-ldap-api by apache.
the class ModifyDNRequestTest method testDecodeModifyDNRequestBadNewSuperior.
/**
* Test the decoding of a bad Rdn ModifyDNRequest
*/
@Test
public void testDecodeModifyDNRequestBadNewSuperior() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x48);
stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
0x46, 0x02, 0x01, // messageID MessageID
0x01, 0x6C, // CHOICE { ..., modifyDNRequest ModifyDNRequest,
0x41, // entry LDAPDN,
0x04, 0x20, 'c', 'n', '=', 't', 'e', 's', 't', 'M', 'o', 'd', 'i', 'f', 'y', ',', 'o', 'u', '=', 'u', 's', 'e', 'r', 's', ',', 'o', 'u', '=', 's', 'y', 's', 't', 'e', 'm', // newrdn RelativeLDAPDN,
0x04, 0x0F, 'c', 'n', '=', 't', 'e', 's', 't', 'D', 'N', 'M', 'o', 'd', 'i', 'f', 'y', 0x01, 0x01, // deleteoldrdn BOOLEAN,
0x00, // newSuperior [0] LDAPDN OPTIONAL }
(byte) 0x80, 0x09, 'o', 'u', ':', 's', 'y', 's', 't', 'e', 'm' });
stream.flip();
// Allocate a ModifyRequest Container
LdapMessageContainer<ModifyDnRequestDecorator> ldapMessageContainer = new LdapMessageContainer<ModifyDnRequestDecorator>(codec);
try {
ldapDecoder.decode(stream, ldapMessageContainer);
} catch (DecoderException de) {
assertTrue(de instanceof ResponseCarryingException);
Message response = ((ResponseCarryingException) de).getResponse();
assertTrue(response instanceof ModifyDnResponseImpl);
assertEquals(ResultCodeEnum.INVALID_DN_SYNTAX, ((ModifyDnResponseImpl) response).getLdapResult().getResultCode());
return;
}
fail("We should not reach this point");
}
use of org.apache.directory.api.ldap.codec.api.ResponseCarryingException in project directory-ldap-api by apache.
the class LdapDecoderTest method decode.
/**
* Decode an incoming buffer into LDAP messages. The result can be 0, 1 or many
* LDAP messages, which will be stored into the array the caller has created.
*
* @param buffer The incoming byte buffer
* @param messageContainer The LdapMessageContainer which will be used to store the
* message being decoded. If the message is not fully decoded, the ucrrent state
* is stored into this container
* @param decodedMessages The list of decoded messages
* @throws Exception If the decoding failed
*/
private void decode(ByteBuffer buffer, LdapMessageContainer<MessageDecorator<? extends Message>> messageContainer, List<Message> decodedMessages) throws DecoderException {
buffer.mark();
while (buffer.hasRemaining()) {
try {
asn1Decoder.decode(buffer, messageContainer);
if (messageContainer.getState() == TLVStateEnum.PDU_DECODED) {
Message message = messageContainer.getMessage();
decodedMessages.add(message);
messageContainer.clean();
}
} catch (DecoderException de) {
buffer.clear();
messageContainer.clean();
if (de instanceof ResponseCarryingException) {
// Transform the DecoderException message to a MessageException
ResponseCarryingMessageException rcme = new ResponseCarryingMessageException(de.getMessage());
rcme.setResponse(((ResponseCarryingException) de).getResponse());
throw rcme;
} else {
// TODO : This is certainly not the way we should handle such an exception !
throw new ResponseCarryingException(de.getMessage());
}
}
}
}
Aggregations