use of org.apache.directory.api.ldap.model.message.Control in project directory-ldap-api by apache.
the class SearchRequestTest method testDecodeSearchRequestWithControls.
/**
* Test the decoding of a SearchRequest with controls.
*/
@Test
public void testDecodeSearchRequestWithControls() {
byte[] asn1BERJava5 = new byte[] { 0x30, 0x7f, // messageID
0x02, // messageID
0x01, // messageID
0x04, 0x63, 0x33, 0x04, // baseObject
0x13, 'd', 'c', '=', 'm', 'y', '-', 'd', 'o', 'm', 'a', 'i', 'n', ',', 'd', 'c', '=', 'c', 'o', 'm', 0x0a, 0x01, // scope: subtree
0x02, 0x0a, 0x01, // derefAliases: derefAlways
0x03, 0x02, 0x01, // sizeLimit: 0
0x00, 0x02, 0x01, // timeLimit: 0
0x00, 0x01, 0x01, // typesOnly: false
0x00, (byte) 0x87, // Present filter: (objectClass=*)
0x0b, 'o', 'b', 'j', 'e', 'c', 't', 'C', 'l', 'a', 's', 's', 0x30, // Attributes = '*'
0x00, (byte) 0xa0, // controls
0x45, 0x30, 0x28, 0x04, // control
0x16, '1', '.', '2', '.', '8', '4', '0', '.', '1', '1', '3', '5', '5', '6', '.', '1', '.', '4', '.', '3', '1', '9', 0x01, 0x01, // criticality: false
(byte) 0xff, 0x04, 0x0b, 0x30, 0x09, 0x02, 0x01, 0x02, 0x04, 0x04, 0x47, 0x00, 0x00, // value: pageSize=2
0x00, 0x30, 0x19, 0x04, // control
0x17, '2', '.', '1', '6', '.', '8', '4', '0', '.', '1', '.', '1', '1', '3', '7', '3', '0', '.', '3', '.', '4', '.', '2' };
byte[] asn1BERJava6 = new byte[] { 0x30, 0x7f, // messageID
0x02, // messageID
0x01, // messageID
0x04, 0x63, 0x33, 0x04, // baseObject
0x13, 'd', 'c', '=', 'm', 'y', '-', 'd', 'o', 'm', 'a', 'i', 'n', ',', 'd', 'c', '=', 'c', 'o', 'm', 0x0a, 0x01, // scope: subtree
0x02, 0x0a, 0x01, // derefAliases: derefAlways
0x03, 0x02, 0x01, // sizeLimit: 0
0x00, 0x02, 0x01, // timeLimit: 0
0x00, 0x01, 0x01, // typesOnly: false
0x00, (byte) 0x87, // Present filter: (objectClass=*)
0x0b, 'o', 'b', 'j', 'e', 'c', 't', 'C', 'l', 'a', 's', 's', 0x30, // Attributes = '*'
0x00, (byte) 0xa0, // controls
0x45, 0x30, 0x19, 0x04, // control
0x17, '2', '.', '1', '6', '.', '8', '4', '0', '.', '1', '.', '1', '1', '3', '7', '3', '0', '.', '3', '.', '4', '.', '2', 0x30, 0x28, 0x04, // control
0x16, '1', '.', '2', '.', '8', '4', '0', '.', '1', '1', '3', '5', '5', '6', '.', '1', '.', '4', '.', '3', '1', '9', 0x01, 0x01, // criticality: false
(byte) 0xff, 0x04, 0x0b, 0x30, 0x09, 0x02, 0x01, 0x02, 0x04, 0x04, 0x47, 0x00, 0x00, // value: pageSize=2
0x00 };
Asn1Decoder ldapDecoder = new Asn1Decoder();
// For Java6
ByteBuffer streamJava6 = ByteBuffer.allocate(asn1BERJava6.length);
streamJava6.put(asn1BERJava6);
String decodedPduJava6 = Strings.dumpBytes(streamJava6.array());
streamJava6.flip();
// For Java5
ByteBuffer streamJava5 = ByteBuffer.allocate(asn1BERJava5.length);
streamJava5.put(asn1BERJava5);
String decodedPduJava5 = Strings.dumpBytes(streamJava5.array());
LdapMessageContainer<SearchRequestDecorator> ldapMessageContainer = new LdapMessageContainer<SearchRequestDecorator>(codec);
try {
ldapDecoder.decode(streamJava6, ldapMessageContainer);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
assertEquals(TLVStateEnum.PDU_DECODED, ldapMessageContainer.getState());
SearchRequest searchRequest = ldapMessageContainer.getMessage();
assertEquals(4, searchRequest.getMessageId());
assertEquals(2, searchRequest.getControls().size());
// this is a constant in Java 5 API
String pagedResultsControlOID = "1.2.840.113556.1.4.319";
Control pagedResultsControl = searchRequest.getControl(pagedResultsControlOID);
assertEquals(pagedResultsControlOID, pagedResultsControl.getOid());
assertTrue(pagedResultsControl.isCritical());
// this is a constant in Java 5 API
String manageReferralControlOID = "2.16.840.1.113730.3.4.2";
Control manageReferralControl = searchRequest.getControl(manageReferralControlOID);
assertEquals(manageReferralControlOID, manageReferralControl.getOid());
assertEquals("dc=my-domain,dc=com", searchRequest.getBase().toString());
assertEquals(SearchScope.SUBTREE, searchRequest.getScope());
assertEquals(AliasDerefMode.DEREF_ALWAYS, searchRequest.getDerefAliases());
assertEquals(0, searchRequest.getSizeLimit());
assertEquals(0, searchRequest.getTimeLimit());
assertEquals(false, searchRequest.getTypesOnly());
ExprNode filter = searchRequest.getFilter();
assertTrue(filter instanceof PresenceNode);
assertEquals("objectClass", ((PresenceNode) filter).getAttribute());
// Check the encoding
try {
ByteBuffer bb = encoder.encodeMessage(searchRequest);
// Check the length
assertEquals(0x81, bb.limit());
String encodedPdu = Strings.dumpBytes(bb.array());
assertTrue(decodedPduJava5.equals(encodedPdu) || decodedPduJava6.equals(encodedPdu));
} catch (EncoderException ee) {
ee.printStackTrace();
fail(ee.getMessage());
}
}
use of org.apache.directory.api.ldap.model.message.Control in project directory-ldap-api by apache.
the class SearchResultDoneTest method testDecodeSearchResultDoneSuccessWithControls.
/**
* Test the decoding of a SearchResultDone with controls
*/
@Test
public void testDecodeSearchResultDoneSuccessWithControls() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x2B);
stream.put(new byte[] { 0x30, // LDAPMessage ::=SEQUENCE {
0x29, 0x02, 0x01, // messageID MessageID
0x01, 0x65, // CHOICE { ..., searchResDone SearchResultDone, ...
0x07, // SearchResultDone ::= [APPLICATION 5] LDAPResult
0x0A, 0x01, // LDAPResult ::= SEQUENCE {
0x00, // },
0x04, // matchedDN LDAPDN,
0x00, 0x04, // errorMessage LDAPString,
0x00, // }
(byte) 0xA0, // A control
0x1B, 0x30, 0x19, 0x04, 0x17, 0x32, 0x2E, 0x31, 0x36, 0x2E, 0x38, 0x34, 0x30, 0x2E, 0x31, 0x2E, 0x31, 0x31, 0x33, 0x37, 0x33, 0x30, 0x2E, 0x33, 0x2E, 0x34, 0x2E, 0x32 });
String decodedPdu = Strings.dumpBytes(stream.array());
stream.flip();
// Allocate a BindRequest Container
LdapMessageContainer<SearchResultDoneDecorator> ldapMessageContainer = new LdapMessageContainer<SearchResultDoneDecorator>(codec);
try {
ldapDecoder.decode(stream, ldapMessageContainer);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
SearchResultDone searchResultDone = ldapMessageContainer.getMessage();
assertEquals(1, searchResultDone.getMessageId());
assertEquals(ResultCodeEnum.SUCCESS, searchResultDone.getLdapResult().getResultCode());
assertEquals("", searchResultDone.getLdapResult().getMatchedDn().getName());
assertEquals("", searchResultDone.getLdapResult().getDiagnosticMessage());
// Check the Control
Map<String, Control> controls = searchResultDone.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
try {
ByteBuffer bb = encoder.encodeMessage(searchResultDone);
// Check the length
assertEquals(0x2B, 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.Control in project directory-ldap-api by apache.
the class AbandonRequestTest method testDecodeAbandonRequestWithControls.
/**
* Test the decoding of a AbandonRequest with controls
*/
@Test
public void testDecodeAbandonRequestWithControls() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x64);
stream.put(new byte[] { // LDAPMessage ::=SEQUENCE {
0x30, // LDAPMessage ::=SEQUENCE {
0x62, 0x02, 0x01, // messageID MessageID
0x03, 0x50, 0x01, // CHOICE { ..., abandonRequest
0x02, // AbandonRequest,...
(byte) 0xA0, // controls [0] Controls OPTIONAL }
0x5A, 0x30, // Control ::= SEQUENCE {
0x1A, // controlType LDAPOID,
0x04, 0x0D, '1', '.', '3', '.', '6', '.', '1', '.', '5', '.', '5', '.', '1', // criticality BOOLEAN DEFAULT FALSE,
0x01, 0x01, (byte) 0xFF, // controlValue OCTET STRING OPTIONAL }
0x04, 0x06, 'a', 'b', 'c', 'd', 'e', 'f', 0x30, // Control ::= SEQUENCE {
0x17, // controlType LDAPOID,
0x04, 0x0D, '1', '.', '3', '.', '6', '.', '1', '.', '5', '.', '5', '.', '2', // controlValue OCTET STRING OPTIONAL }
0x04, 0x06, 'g', 'h', 'i', 'j', 'k', 'l', 0x30, // Control ::= SEQUENCE {
0x12, // controlType LDAPOID,
0x04, 0x0D, '1', '.', '3', '.', '6', '.', '1', '.', '5', '.', '5', '.', '3', // criticality BOOLEAN DEFAULT FALSE }
0x01, 0x01, (byte) 0xFF, 0x30, // Control ::= SEQUENCE {
0x0F, // controlType LDAPOID}
0x04, 0x0D, '1', '.', '3', '.', '6', '.', '1', '.', '5', '.', '5', '.', '4' });
stream.flip();
// Allocate a LdapMessageContainer Container
LdapMessageContainer<AbandonRequestDecorator> ldapMessageContainer = new LdapMessageContainer<AbandonRequestDecorator>(codec);
// Decode the PDU
try {
ldapDecoder.decode(stream, ldapMessageContainer);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
// Check that everything is OK
AbandonRequestDecorator abandonRequest = ldapMessageContainer.getMessage();
// Copy the message
AbandonRequest internalAbandonRequest = new AbandonRequestImpl(abandonRequest.getAbandoned());
internalAbandonRequest.setMessageId(abandonRequest.getMessageId());
assertEquals(3, abandonRequest.getMessageId());
assertEquals(2, abandonRequest.getAbandoned());
// Check the Controls
Map<String, Control> controls = abandonRequest.getControls();
assertEquals(4, controls.size());
CodecControl<? extends Control> control = (org.apache.directory.api.ldap.codec.api.CodecControl<?>) controls.get("1.3.6.1.5.5.1");
assertEquals("1.3.6.1.5.5.1", control.getOid());
assertEquals("0x61 0x62 0x63 0x64 0x65 0x66 ", Strings.dumpBytes((byte[]) control.getValue()));
assertTrue(control.isCritical());
internalAbandonRequest.addControl(control);
control = (org.apache.directory.api.ldap.codec.api.CodecControl<?>) controls.get("1.3.6.1.5.5.2");
assertEquals("1.3.6.1.5.5.2", control.getOid());
assertEquals("0x67 0x68 0x69 0x6A 0x6B 0x6C ", Strings.dumpBytes((byte[]) control.getValue()));
assertFalse(control.isCritical());
internalAbandonRequest.addControl(control);
control = (org.apache.directory.api.ldap.codec.api.CodecControl<?>) controls.get("1.3.6.1.5.5.3");
assertEquals("1.3.6.1.5.5.3", control.getOid());
assertEquals("", Strings.dumpBytes((byte[]) control.getValue()));
assertTrue(control.isCritical());
internalAbandonRequest.addControl(control);
control = (org.apache.directory.api.ldap.codec.api.CodecControl<?>) controls.get("1.3.6.1.5.5.4");
assertEquals("1.3.6.1.5.5.4", control.getOid());
assertEquals("", Strings.dumpBytes((byte[]) control.getValue()));
assertFalse(control.isCritical());
internalAbandonRequest.addControl(control);
// Check the encoding
try {
ByteBuffer bb = encoder.encodeMessage(internalAbandonRequest);
// Check the length
assertEquals(0x64, bb.limit());
// So we decode the generated PDU, and we compare it with the initial message
try {
ldapDecoder.decode(bb, ldapMessageContainer);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
AbandonRequest abandonRequest2 = ldapMessageContainer.getMessage();
assertEquals(abandonRequest, abandonRequest2);
} catch (EncoderException ee) {
ee.printStackTrace();
fail(ee.getMessage());
}
}
use of org.apache.directory.api.ldap.model.message.Control in project directory-ldap-api by apache.
the class AddRequestTest method testDecodeAddRequestEmptyAttributeValueWithControl.
/**
* Test the decoding of a AddRequest with a empty attributeList and a
* control
*/
@Test
public void testDecodeAddRequestEmptyAttributeValueWithControl() throws NamingException {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x51);
stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
0x4F, 0x02, 0x01, // messageID MessageID
0x01, 0x68, // CHOICE { ..., addRequest AddRequest, ...
0x2D, // 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', // attributes AttributeList }
0x30, // AttributeList ::= SEQUENCE OF SEQUENCE {
0x09, 0x30, // attribute 1
0x07, 0x04, 0x01, // type AttributeDescription,
'l', 0x31, 0x02, 0x04, 0x00, (byte) 0xA0, // A control
0x1B, 0x30, 0x19, 0x04, 0x17, 0x32, 0x2E, 0x31, 0x36, 0x2E, 0x38, 0x34, 0x30, 0x2E, 0x31, 0x2E, 0x31, 0x31, 0x33, 0x37, 0x33, 0x30, 0x2E, 0x33, 0x2E, 0x34, 0x2E, 0x32 });
String decodedPdu = Strings.dumpBytes(stream.array());
stream.flip();
// Allocate a LdapMessage Container
LdapMessageContainer<AddRequestDecorator> container = new LdapMessageContainer<AddRequestDecorator>(codec);
// Decode a AddRequest message
try {
ldapDecoder.decode(stream, container);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
AddRequest addRequest = container.getMessage();
// Check the decoded message
assertEquals(1, addRequest.getMessageId());
assertEquals("cn=testModify,ou=users,ou=system", addRequest.getEntryDn().toString());
Entry entry = addRequest.getEntry();
assertEquals(1, entry.size());
Attribute attribute = entry.get("l");
assertEquals("l", Strings.toLowerCaseAscii(attribute.getId()));
for (Value value : attribute) {
assertEquals("", value.getValue());
}
// Check the Control
Map<String, Control> controls = addRequest.getControls();
assertEquals(1, controls.size());
assertTrue(addRequest.hasControl("2.16.840.1.113730.3.4.2"));
@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
try {
ByteBuffer bb = encoder.encodeMessage(addRequest);
// Check the length
assertEquals(0x51, 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.Control in project directory-ldap-api by apache.
the class AddResponseTest method testDecodeAddResponseSuccessWithControl.
/**
* Test the decoding of a AddResponse with a control
*/
@Test
public void testDecodeAddResponseSuccessWithControl() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x2B);
stream.put(new byte[] { 0x30, // LDAPMessage ::=SEQUENCE {
0x29, 0x02, 0x01, // messageID MessageID
0x01, 0x69, // CHOICE { ..., addResponse AddResponse, ...
0x07, // AddResponse ::= [APPLICATION 9] LDAPResult
0x0A, 0x01, // LDAPResult ::= SEQUENCE {
0x00, // },
0x04, // matchedDN LDAPDN,
0x00, 0x04, // errorMessage LDAPString,
0x00, // }
(byte) 0xA0, // A control
0x1B, 0x30, 0x19, 0x04, 0x17, 0x32, 0x2E, 0x31, 0x36, 0x2E, 0x38, 0x34, 0x30, 0x2E, 0x31, 0x2E, 0x31, 0x31, 0x33, 0x37, 0x33, 0x30, 0x2E, 0x33, 0x2E, 0x34, 0x2E, 0x32 });
String decodedPdu = Strings.dumpBytes(stream.array());
stream.flip();
// Allocate a LdapMessage Container
LdapMessageContainer<AddResponseDecorator> container = new LdapMessageContainer<AddResponseDecorator>(codec);
// Decode the AddResponse PDU
try {
ldapDecoder.decode(stream, container);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
// Check the decoded AddResponse
AddResponse addResponse = container.getMessage();
assertEquals(1, addResponse.getMessageId());
assertEquals(ResultCodeEnum.SUCCESS, addResponse.getLdapResult().getResultCode());
assertEquals("", addResponse.getLdapResult().getMatchedDn().getName());
assertEquals("", addResponse.getLdapResult().getDiagnosticMessage());
// Check the Control
Map<String, Control> controls = addResponse.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()));
try {
/**
* The encoder instance
*/
ByteBuffer bb = encoder.encodeMessage(addResponse);
// Check the length
assertEquals(0x02B, bb.limit());
String encodedPdu = Strings.dumpBytes(bb.array());
assertEquals(encodedPdu, decodedPdu);
} catch (EncoderException ee) {
ee.printStackTrace();
fail(ee.getMessage());
}
}
Aggregations