Search in sources :

Example 26 with ResponseCarryingException

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;
    }
}
Also used : ModifyRequestDecorator(org.apache.directory.api.ldap.codec.decorators.ModifyRequestDecorator) LdapMessageContainer(org.apache.directory.api.ldap.codec.api.LdapMessageContainer) DecoderException(org.apache.directory.api.asn1.DecoderException) ResponseCarryingException(org.apache.directory.api.ldap.codec.api.ResponseCarryingException) Message(org.apache.directory.api.ldap.model.message.Message) ModifyResponseImpl(org.apache.directory.api.ldap.model.message.ModifyResponseImpl) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) ByteBuffer(java.nio.ByteBuffer) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Example 27 with ResponseCarryingException

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");
}
Also used : LdapMessageContainer(org.apache.directory.api.ldap.codec.api.LdapMessageContainer) DecoderException(org.apache.directory.api.asn1.DecoderException) ResponseCarryingException(org.apache.directory.api.ldap.codec.api.ResponseCarryingException) Message(org.apache.directory.api.ldap.model.message.Message) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) ModifyDnResponseImpl(org.apache.directory.api.ldap.model.message.ModifyDnResponseImpl) ModifyDnRequestDecorator(org.apache.directory.api.ldap.codec.decorators.ModifyDnRequestDecorator) ByteBuffer(java.nio.ByteBuffer) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Example 28 with ResponseCarryingException

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());
            }
        }
    }
}
Also used : DecoderException(org.apache.directory.api.asn1.DecoderException) ResponseCarryingException(org.apache.directory.api.ldap.codec.api.ResponseCarryingException) Message(org.apache.directory.api.ldap.model.message.Message) ResponseCarryingMessageException(org.apache.directory.api.ldap.model.exception.ResponseCarryingMessageException)

Aggregations

ResponseCarryingException (org.apache.directory.api.ldap.codec.api.ResponseCarryingException)28 DecoderException (org.apache.directory.api.asn1.DecoderException)20 Message (org.apache.directory.api.ldap.model.message.Message)16 ByteBuffer (java.nio.ByteBuffer)14 Asn1Decoder (org.apache.directory.api.asn1.ber.Asn1Decoder)14 LdapMessageContainer (org.apache.directory.api.ldap.codec.api.LdapMessageContainer)14 AbstractCodecServiceTest (org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)14 Test (org.junit.Test)14 TLV (org.apache.directory.api.asn1.ber.tlv.TLV)12 LdapInvalidDnException (org.apache.directory.api.ldap.model.exception.LdapInvalidDnException)8 Dn (org.apache.directory.api.ldap.model.name.Dn)8 ModifyDnResponseImpl (org.apache.directory.api.ldap.model.message.ModifyDnResponseImpl)6 AddResponseImpl (org.apache.directory.api.ldap.model.message.AddResponseImpl)5 ModifyRequestDecorator (org.apache.directory.api.ldap.codec.decorators.ModifyRequestDecorator)4 CompareResponseImpl (org.apache.directory.api.ldap.model.message.CompareResponseImpl)4 ModifyResponseImpl (org.apache.directory.api.ldap.model.message.ModifyResponseImpl)4 Asn1Container (org.apache.directory.api.asn1.ber.Asn1Container)3 ModifyDnRequestDecorator (org.apache.directory.api.ldap.codec.decorators.ModifyDnRequestDecorator)3 BindResponseImpl (org.apache.directory.api.ldap.model.message.BindResponseImpl)3 ModifyDnRequest (org.apache.directory.api.ldap.model.message.ModifyDnRequest)3