Search in sources :

Example 1 with DeleteResponseImpl

use of org.apache.directory.api.ldap.model.message.DeleteResponseImpl in project directory-ldap-api by apache.

the class DelRequestTest method testDecodeDelRequestBadDN.

/**
 * Test the decoding of a full DelRequest
 */
@Test
public void testDecodeDelRequestBadDN() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x27);
    stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
    0x25, 0x02, 0x01, // messageID MessageID
    0x01, // DelRequest ::= [APPLICATION 10] LDAPDN;
    0x4A, 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' });
    stream.flip();
    // Allocate a LdapMessage Container
    LdapMessageContainer<DeleteRequestDecorator> container = new LdapMessageContainer<DeleteRequestDecorator>(codec);
    // Decode a DelRequest PDU
    try {
        ldapDecoder.decode(stream, container);
    } catch (DecoderException de) {
        assertTrue(de instanceof ResponseCarryingException);
        Message response = ((ResponseCarryingException) de).getResponse();
        assertTrue(response instanceof DeleteResponseImpl);
        assertEquals(ResultCodeEnum.INVALID_DN_SYNTAX, ((DeleteResponseImpl) 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) DeleteResponseImpl(org.apache.directory.api.ldap.model.message.DeleteResponseImpl) DeleteRequestDecorator(org.apache.directory.api.ldap.codec.decorators.DeleteRequestDecorator) Message(org.apache.directory.api.ldap.model.message.Message) 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 2 with DeleteResponseImpl

use of org.apache.directory.api.ldap.model.message.DeleteResponseImpl in project directory-ldap-api by apache.

the class InitDelRequest method action.

/**
 * {@inheritDoc}
 */
public void action(LdapMessageContainer<DeleteRequestDecorator> container) throws DecoderException {
    // Create the DeleteRequest LdapMessage instance and store it in the container
    DeleteRequest internaldelRequest = new DeleteRequestImpl();
    internaldelRequest.setMessageId(container.getMessageId());
    DeleteRequestDecorator delRequest = new DeleteRequestDecorator(container.getLdapCodecService(), internaldelRequest);
    container.setMessage(delRequest);
    // And store the Dn into it
    // Get the Value and store it in the DelRequest
    TLV tlv = container.getCurrentTLV();
    // We have to handle the special case of a 0 length matched
    // Dn
    Dn entry;
    if (tlv.getLength() == 0) {
        // This will generate a PROTOCOL_ERROR
        throw new DecoderException(I18n.err(I18n.ERR_04073));
    } else {
        byte[] dnBytes = tlv.getValue().getData();
        String dnStr = Strings.utf8ToString(dnBytes);
        try {
            entry = new Dn(dnStr);
        } catch (LdapInvalidDnException ine) {
            String msg = I18n.err(I18n.ERR_04074, dnStr, Strings.dumpBytes(dnBytes), ine.getLocalizedMessage());
            LOG.error(msg);
            DeleteResponseImpl response = new DeleteResponseImpl(delRequest.getMessageId());
            throw new ResponseCarryingException(msg, response, ResultCodeEnum.INVALID_DN_SYNTAX, Dn.EMPTY_DN, ine);
        }
        delRequest.setName(entry);
    }
    // We can have an END transition
    container.setGrammarEndAllowed(true);
    if (IS_DEBUG) {
        LOG.debug("Deleting Dn {}", entry);
    }
}
Also used : DecoderException(org.apache.directory.api.asn1.DecoderException) ResponseCarryingException(org.apache.directory.api.ldap.codec.api.ResponseCarryingException) DeleteResponseImpl(org.apache.directory.api.ldap.model.message.DeleteResponseImpl) DeleteRequestDecorator(org.apache.directory.api.ldap.codec.decorators.DeleteRequestDecorator) DeleteRequestImpl(org.apache.directory.api.ldap.model.message.DeleteRequestImpl) Dn(org.apache.directory.api.ldap.model.name.Dn) DeleteRequest(org.apache.directory.api.ldap.model.message.DeleteRequest) TLV(org.apache.directory.api.asn1.ber.tlv.TLV) LdapInvalidDnException(org.apache.directory.api.ldap.model.exception.LdapInvalidDnException)

Example 3 with DeleteResponseImpl

use of org.apache.directory.api.ldap.model.message.DeleteResponseImpl in project directory-ldap-api by apache.

the class InitDelResponse method action.

/**
 * {@inheritDoc}
 */
public void action(LdapMessageContainer<DeleteResponseDecorator> container) {
    // Now, we can allocate the DelResponse Object
    DeleteResponseDecorator delResponse = new DeleteResponseDecorator(container.getLdapCodecService(), new DeleteResponseImpl(container.getMessageId()));
    container.setMessage(delResponse);
    LOG.debug("Del response ");
}
Also used : DeleteResponseImpl(org.apache.directory.api.ldap.model.message.DeleteResponseImpl) DeleteResponseDecorator(org.apache.directory.api.ldap.codec.decorators.DeleteResponseDecorator)

Aggregations

DeleteResponseImpl (org.apache.directory.api.ldap.model.message.DeleteResponseImpl)3 DecoderException (org.apache.directory.api.asn1.DecoderException)2 ResponseCarryingException (org.apache.directory.api.ldap.codec.api.ResponseCarryingException)2 DeleteRequestDecorator (org.apache.directory.api.ldap.codec.decorators.DeleteRequestDecorator)2 ByteBuffer (java.nio.ByteBuffer)1 Asn1Decoder (org.apache.directory.api.asn1.ber.Asn1Decoder)1 TLV (org.apache.directory.api.asn1.ber.tlv.TLV)1 LdapMessageContainer (org.apache.directory.api.ldap.codec.api.LdapMessageContainer)1 DeleteResponseDecorator (org.apache.directory.api.ldap.codec.decorators.DeleteResponseDecorator)1 AbstractCodecServiceTest (org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)1 LdapInvalidDnException (org.apache.directory.api.ldap.model.exception.LdapInvalidDnException)1 DeleteRequest (org.apache.directory.api.ldap.model.message.DeleteRequest)1 DeleteRequestImpl (org.apache.directory.api.ldap.model.message.DeleteRequestImpl)1 Message (org.apache.directory.api.ldap.model.message.Message)1 Dn (org.apache.directory.api.ldap.model.name.Dn)1 Test (org.junit.Test)1