Search in sources :

Example 1 with UnbindRequestImpl

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

the class LdapMessageTest method testDecodeUnBindRequestNoControls.

/**
 * Test the decoding of a LdapMessage with a large MessageId
 */
@Test
public void testDecodeUnBindRequestNoControls() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x08);
    stream.put(new byte[] { // LDAPMessage ::=SEQUENCE {
    0x30, // LDAPMessage ::=SEQUENCE {
    0x06, 0x02, 0x02, 0x01, // messageID MessageID (500)
    (byte) 0xF4, 0x42, // CHOICE { ..., unbindRequest UnbindRequest,...
    0x00 // UnbindRequest ::= [APPLICATION 2] NULL
    });
    String decodedPdu = Strings.dumpBytes(stream.array());
    stream.flip();
    // Allocate a BindRequest Container
    LdapMessageContainer<UnbindRequestDecorator> container = new LdapMessageContainer<UnbindRequestDecorator>(codec);
    try {
        ldapDecoder.decode(stream, container);
    } catch (DecoderException de) {
        de.printStackTrace();
        fail(de.getMessage());
    }
    Message message = container.getMessage();
    assertEquals(500, message.getMessageId());
    // Check the length
    UnbindRequest internalUnbindRequest = new UnbindRequestImpl();
    internalUnbindRequest.setMessageId(message.getMessageId());
    try {
        ByteBuffer bb = encoder.encodeMessage(internalUnbindRequest);
        // Check the length
        assertEquals(0x08, bb.limit());
        String encodedPdu = Strings.dumpBytes(bb.array());
        assertEquals(encodedPdu, decodedPdu);
    } catch (EncoderException ee) {
        ee.printStackTrace();
        fail(ee.getMessage());
    }
}
Also used : LdapMessageContainer(org.apache.directory.api.ldap.codec.api.LdapMessageContainer) DecoderException(org.apache.directory.api.asn1.DecoderException) EncoderException(org.apache.directory.api.asn1.EncoderException) Message(org.apache.directory.api.ldap.model.message.Message) UnbindRequestImpl(org.apache.directory.api.ldap.model.message.UnbindRequestImpl) UnbindRequestDecorator(org.apache.directory.api.ldap.codec.decorators.UnbindRequestDecorator) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) ByteBuffer(java.nio.ByteBuffer) UnbindRequest(org.apache.directory.api.ldap.model.message.UnbindRequest) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Example 2 with UnbindRequestImpl

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

the class InitUnbindRequest method action.

/**
 * {@inheritDoc}
 */
public void action(LdapMessageContainer<UnbindRequestDecorator> container) throws DecoderException {
    // Create the UnbindRequest LdapMessage instance and store it in the container
    UnbindRequest unbindRequestInternal = new UnbindRequestImpl();
    unbindRequestInternal.setMessageId(container.getMessageId());
    UnbindRequestDecorator unbindRequest = new UnbindRequestDecorator(container.getLdapCodecService(), unbindRequestInternal);
    container.setMessage(unbindRequest);
    TLV tlv = container.getCurrentTLV();
    int expectedLength = tlv.getLength();
    // The Length should be null
    if (expectedLength != 0) {
        LOG.error(I18n.err(I18n.ERR_04071, Integer.valueOf(expectedLength)));
        // This will generate a PROTOCOL_ERROR
        throw new DecoderException(I18n.err(I18n.ERR_04072));
    }
    // We can quit now
    container.setGrammarEndAllowed(true);
}
Also used : DecoderException(org.apache.directory.api.asn1.DecoderException) UnbindRequestImpl(org.apache.directory.api.ldap.model.message.UnbindRequestImpl) UnbindRequestDecorator(org.apache.directory.api.ldap.codec.decorators.UnbindRequestDecorator) UnbindRequest(org.apache.directory.api.ldap.model.message.UnbindRequest) TLV(org.apache.directory.api.asn1.ber.tlv.TLV)

Example 3 with UnbindRequestImpl

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

the class LdapNetworkConnection method unBind.

// ------------------------ The LDAP operations ------------------------//
// Unbind operations                                                   //
// ---------------------------------------------------------------------//
/**
 * {@inheritDoc}
 */
@Override
public void unBind() throws LdapException {
    // If the session has not been establish, or is closed, we get out immediately
    checkSession();
    // Creates the messageID and stores it into the
    // initial message and the transmitted message.
    int newId = messageId.incrementAndGet();
    // Create the UnbindRequest
    UnbindRequest unbindRequest = new UnbindRequestImpl();
    unbindRequest.setMessageId(newId);
    if (LOG.isDebugEnabled()) {
        LOG.debug(I18n.msg(I18n.MSG_03233_SENDING_UNBIND, unbindRequest));
    }
    // Send the request to the server
    // Use this for logging instead: WriteFuture unbindFuture = ldapSession.write( unbindRequest )
    WriteFuture unbindFuture = ldapSession.write(unbindRequest);
    unbindFuture.awaitUninterruptibly(timeout);
    authenticated.set(false);
    // Close all the Future for this session
    for (ResponseFuture<? extends Response> responseFuture : futureMap.values()) {
        responseFuture.cancel();
    }
    // clear the mappings
    clearMaps();
    // We now have to close the session
    try {
        close();
    } catch (IOException e) {
        LOG.error(e.getMessage());
        throw new LdapException(e.getMessage());
    }
    connected.set(false);
    // Last, not least, reset the MessageId value
    messageId.set(0);
    // And get out
    if (LOG.isDebugEnabled()) {
        LOG.debug(I18n.msg(I18n.MSG_03234_UNBINDSUCCESSFUL));
    }
}
Also used : UnbindRequestImpl(org.apache.directory.api.ldap.model.message.UnbindRequestImpl) WriteFuture(org.apache.mina.core.future.WriteFuture) IOException(java.io.IOException) LdapException(org.apache.directory.api.ldap.model.exception.LdapException) UnbindRequest(org.apache.directory.api.ldap.model.message.UnbindRequest)

Example 4 with UnbindRequestImpl

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

the class UnBindRequestTest method testDecodeUnBindRequestWithControls.

/**
 * Test the decoding of a UnBindRequest with controls
 */
@Test
public void testDecodeUnBindRequestWithControls() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x24);
    stream.put(new byte[] { 0x30, // LDAPMessage ::=SEQUENCE {
    0x22, 0x02, 0x01, // messageID MessageID
    0x01, 0x42, // CHOICE { ..., unbindRequest UnbindRequest,...
    0x00, // UnbindRequest ::= [APPLICATION 2] NULL
    (byte) 0xA0, // A control
    0x1B, 0x30, 0x19, 0x04, 0x17, '2', '.', '1', '6', '.', '8', '4', '0', '.', '1', '.', '1', '1', '3', '7', '3', '0', '.', '3', '.', '4', '.', '2' });
    String decodedPdu = Strings.dumpBytes(stream.array());
    stream.flip();
    // Allocate a BindRequest Container
    LdapMessageContainer<UnbindRequestDecorator> ldapMessageContainer = new LdapMessageContainer<UnbindRequestDecorator>(codec);
    try {
        ldapDecoder.decode(stream, ldapMessageContainer);
    } catch (DecoderException de) {
        de.printStackTrace();
        fail(de.getMessage());
    }
    UnbindRequest unbindRequest = ldapMessageContainer.getMessage();
    assertEquals(1, unbindRequest.getMessageId());
    // Check the Control
    Map<String, Control> controls = unbindRequest.getControls();
    assertEquals(1, controls.size());
    @SuppressWarnings("unchecked") CodecControl<Control> control = (org.apache.directory.api.ldap.codec.api.CodecControl<Control>) controls.get("2.16.840.1.113730.3.4.2");
    assertEquals("2.16.840.1.113730.3.4.2", control.getOid());
    assertEquals("", Strings.dumpBytes((byte[]) control.getValue()));
    // Check the encoding
    UnbindRequest internalUnbindRequest = new UnbindRequestImpl();
    internalUnbindRequest.setMessageId(unbindRequest.getMessageId());
    internalUnbindRequest.addControl(control);
    try {
        ByteBuffer bb = encoder.encodeMessage(internalUnbindRequest);
        // Check the length
        assertEquals(0x24, bb.limit());
        String encodedPdu = Strings.dumpBytes(bb.array());
        assertEquals(encodedPdu, decodedPdu);
    } catch (EncoderException ee) {
        ee.printStackTrace();
        fail(ee.getMessage());
    }
}
Also used : LdapMessageContainer(org.apache.directory.api.ldap.codec.api.LdapMessageContainer) ByteBuffer(java.nio.ByteBuffer) DecoderException(org.apache.directory.api.asn1.DecoderException) EncoderException(org.apache.directory.api.asn1.EncoderException) Control(org.apache.directory.api.ldap.model.message.Control) CodecControl(org.apache.directory.api.ldap.codec.api.CodecControl) UnbindRequestImpl(org.apache.directory.api.ldap.model.message.UnbindRequestImpl) UnbindRequestDecorator(org.apache.directory.api.ldap.codec.decorators.UnbindRequestDecorator) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) CodecControl(org.apache.directory.api.ldap.codec.api.CodecControl) UnbindRequest(org.apache.directory.api.ldap.model.message.UnbindRequest) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Example 5 with UnbindRequestImpl

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

the class UnBindRequestTest method testDecodeUnBindRequestNoControls.

/**
 * Test the decoding of a UnBindRequest with no controls
 */
@Test
public void testDecodeUnBindRequestNoControls() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x07);
    stream.put(new byte[] { // LDAPMessage ::=SEQUENCE {
    0x30, // LDAPMessage ::=SEQUENCE {
    0x05, 0x02, 0x01, // messageID MessageID
    0x01, 0x42, // CHOICE { ..., unbindRequest UnbindRequest,...
    0x00 // UnbindRequest ::= [APPLICATION 2] NULL
    });
    String decodedPdu = Strings.dumpBytes(stream.array());
    stream.flip();
    // Allocate a BindRequest Container
    LdapMessageContainer<UnbindRequestDecorator> ldapMessageContainer = new LdapMessageContainer<UnbindRequestDecorator>(codec);
    try {
        ldapDecoder.decode(stream, ldapMessageContainer);
    } catch (DecoderException de) {
        de.printStackTrace();
        fail(de.getMessage());
    }
    UnbindRequest unbindRequest = ldapMessageContainer.getMessage();
    assertEquals(1, unbindRequest.getMessageId());
    // Check the encoding
    UnbindRequest internalUnbindRequest = new UnbindRequestImpl();
    internalUnbindRequest.setMessageId(unbindRequest.getMessageId());
    try {
        ByteBuffer bb = encoder.encodeMessage(internalUnbindRequest);
        // Check the length
        assertEquals(0x07, bb.limit());
        String encodedPdu = Strings.dumpBytes(bb.array());
        assertEquals(encodedPdu, decodedPdu);
    } catch (EncoderException ee) {
        ee.printStackTrace();
        fail(ee.getMessage());
    }
}
Also used : LdapMessageContainer(org.apache.directory.api.ldap.codec.api.LdapMessageContainer) DecoderException(org.apache.directory.api.asn1.DecoderException) EncoderException(org.apache.directory.api.asn1.EncoderException) UnbindRequestImpl(org.apache.directory.api.ldap.model.message.UnbindRequestImpl) UnbindRequestDecorator(org.apache.directory.api.ldap.codec.decorators.UnbindRequestDecorator) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) ByteBuffer(java.nio.ByteBuffer) UnbindRequest(org.apache.directory.api.ldap.model.message.UnbindRequest) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Aggregations

UnbindRequest (org.apache.directory.api.ldap.model.message.UnbindRequest)5 UnbindRequestImpl (org.apache.directory.api.ldap.model.message.UnbindRequestImpl)5 DecoderException (org.apache.directory.api.asn1.DecoderException)4 UnbindRequestDecorator (org.apache.directory.api.ldap.codec.decorators.UnbindRequestDecorator)4 ByteBuffer (java.nio.ByteBuffer)3 EncoderException (org.apache.directory.api.asn1.EncoderException)3 Asn1Decoder (org.apache.directory.api.asn1.ber.Asn1Decoder)3 LdapMessageContainer (org.apache.directory.api.ldap.codec.api.LdapMessageContainer)3 AbstractCodecServiceTest (org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)3 Test (org.junit.Test)3 IOException (java.io.IOException)1 TLV (org.apache.directory.api.asn1.ber.tlv.TLV)1 CodecControl (org.apache.directory.api.ldap.codec.api.CodecControl)1 LdapException (org.apache.directory.api.ldap.model.exception.LdapException)1 Control (org.apache.directory.api.ldap.model.message.Control)1 Message (org.apache.directory.api.ldap.model.message.Message)1 WriteFuture (org.apache.mina.core.future.WriteFuture)1