use of org.apache.directory.api.ldap.model.message.UnbindRequest 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());
}
}
use of org.apache.directory.api.ldap.model.message.UnbindRequest in project directory-ldap-api by apache.
the class MessageDecorator method getDecorator.
/**
* Gets the decorator associated with a given message
*
* @param codec The LdapApiService to use
* @param decoratedMessage The message to decorate
* @return The decorator instance
*/
public static MessageDecorator<? extends Message> getDecorator(LdapApiService codec, Message decoratedMessage) {
if (decoratedMessage instanceof MessageDecorator) {
return (MessageDecorator<?>) decoratedMessage;
}
MessageDecorator<?> decorator;
switch(decoratedMessage.getType()) {
case ABANDON_REQUEST:
decorator = new AbandonRequestDecorator(codec, (AbandonRequest) decoratedMessage);
break;
case ADD_REQUEST:
decorator = new AddRequestDecorator(codec, (AddRequest) decoratedMessage);
break;
case ADD_RESPONSE:
decorator = new AddResponseDecorator(codec, (AddResponse) decoratedMessage);
break;
case BIND_REQUEST:
decorator = new BindRequestDecorator(codec, (BindRequest) decoratedMessage);
break;
case BIND_RESPONSE:
decorator = new BindResponseDecorator(codec, (BindResponse) decoratedMessage);
break;
case COMPARE_REQUEST:
decorator = new CompareRequestDecorator(codec, (CompareRequest) decoratedMessage);
break;
case COMPARE_RESPONSE:
decorator = new CompareResponseDecorator(codec, (CompareResponse) decoratedMessage);
break;
case DEL_REQUEST:
decorator = new DeleteRequestDecorator(codec, (DeleteRequest) decoratedMessage);
break;
case DEL_RESPONSE:
decorator = new DeleteResponseDecorator(codec, (DeleteResponse) decoratedMessage);
break;
case EXTENDED_REQUEST:
decorator = codec.decorate((ExtendedRequest) decoratedMessage);
break;
case EXTENDED_RESPONSE:
decorator = codec.decorate((ExtendedResponse) decoratedMessage);
break;
case INTERMEDIATE_RESPONSE:
decorator = new IntermediateResponseDecorator(codec, (IntermediateResponse) decoratedMessage);
break;
case MODIFY_REQUEST:
decorator = new ModifyRequestDecorator(codec, (ModifyRequest) decoratedMessage);
break;
case MODIFY_RESPONSE:
decorator = new ModifyResponseDecorator(codec, (ModifyResponse) decoratedMessage);
break;
case MODIFYDN_REQUEST:
decorator = new ModifyDnRequestDecorator(codec, (ModifyDnRequest) decoratedMessage);
break;
case MODIFYDN_RESPONSE:
decorator = new ModifyDnResponseDecorator(codec, (ModifyDnResponse) decoratedMessage);
break;
case SEARCH_REQUEST:
decorator = new SearchRequestDecorator(codec, (SearchRequest) decoratedMessage);
break;
case SEARCH_RESULT_DONE:
decorator = new SearchResultDoneDecorator(codec, (SearchResultDone) decoratedMessage);
break;
case SEARCH_RESULT_ENTRY:
decorator = new SearchResultEntryDecorator(codec, (SearchResultEntry) decoratedMessage);
break;
case SEARCH_RESULT_REFERENCE:
decorator = new SearchResultReferenceDecorator(codec, (SearchResultReference) decoratedMessage);
break;
case UNBIND_REQUEST:
decorator = new UnbindRequestDecorator(codec, (UnbindRequest) decoratedMessage);
break;
default:
return null;
}
Map<String, Control> controls = decoratedMessage.getControls();
if (controls != null) {
for (Control control : controls.values()) {
decorator.addControl(control);
}
}
return decorator;
}
use of org.apache.directory.api.ldap.model.message.UnbindRequest 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);
}
use of org.apache.directory.api.ldap.model.message.UnbindRequest 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));
}
}
use of org.apache.directory.api.ldap.model.message.UnbindRequest 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());
}
}
Aggregations