use of org.apache.directory.api.ldap.codec.api.CodecControl in project directory-ldap-api by apache.
the class BindRequestTest method testDecodeBindRequestEmptyCredentialsWithControls.
/**
* Test the decoding of a BindRequest with an empty credentials with
* controls
*/
@Test
public void testDecodeBindRequestEmptyCredentialsWithControls() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x2F);
stream.put(new byte[] { 0x30, // LDAPMessage ::=SEQUENCE {
0x2D, 0x02, 0x01, // messageID MessageID
0x01, 0x60, // CHOICE { ..., bindRequest BindRequest, ...
0x0B, 0x02, 0x01, // version INTEGER (1..127),
0x03, 0x04, 0x00, (byte) 0xA3, 0x04, 0x04, 0x00, 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<BindRequestDecorator> container = new LdapMessageContainer<BindRequestDecorator>(codec);
// Decode the BindRequest PDU
try {
ldapDecoder.decode(stream, container);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
// Check the decoded BindRequest
BindRequest bindRequest = container.getMessage();
assertEquals(1, bindRequest.getMessageId());
assertTrue(bindRequest.isVersion3());
assertEquals("", bindRequest.getName());
assertFalse(bindRequest.isSimple());
assertEquals("", bindRequest.getSaslMechanism());
assertEquals("", Strings.utf8ToString(bindRequest.getCredentials()));
// Check the Control
Map<String, Control> controls = bindRequest.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(bindRequest);
// Check the length
assertEquals(0x2F, 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.codec.api.CodecControl in project directory-ldap-api by apache.
the class ExtendedResponseTest method testDecodeExtendedResponseSuccessWithControls.
/**
* Test the decoding of a full ExtendedResponse with controls
*/
@Test
public void testDecodeExtendedResponseSuccessWithControls() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x41);
stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
0x3F, 0x02, 0x01, // messageID MessageID
0x01, // ...
0x78, // ExtendedResponse ::= [APPLICATION 23] SEQUENCE {
0x1D, // COMPONENTS OF LDAPResult,
0x0A, 0x01, // LDAPResult ::= SEQUENCE {
0x00, // },
0x04, // matchedDN LDAPDN,
0x00, 0x04, // errorMessage LDAPString,
0x00, // referral [3] Referral OPTIONAL }
(byte) 0x8A, // responseName [10] LDAPOID OPTIONAL,
0x0D, '1', '.', '3', '.', '6', '.', '1', '.', '5', '.', '5', '.', '2', (byte) 0x8B, // response [11] OCTET STRING OPTIONAL }
0x05, 'v', 'a', 'l', 'u', 'e', (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 LdapMessage Container
LdapMessageContainer<ExtendedResponseDecorator<?>> container = new LdapMessageContainer<ExtendedResponseDecorator<?>>(codec);
// Decode the ExtendedResponse PDU
try {
ldapDecoder.decode(stream, container);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
// Check the decoded ExtendedResponse PDU
ExtendedResponseDecorator<?> extendedResponse = container.getMessage();
assertEquals(1, extendedResponse.getMessageId());
assertEquals(ResultCodeEnum.SUCCESS, extendedResponse.getLdapResult().getResultCode());
assertEquals(Dn.EMPTY_DN, extendedResponse.getLdapResult().getMatchedDn());
assertEquals("", extendedResponse.getLdapResult().getDiagnosticMessage());
assertEquals("1.3.6.1.5.5.2", extendedResponse.getResponseName());
assertEquals("value", Strings.utf8ToString(extendedResponse.getResponseValue()));
// Check the Control
Map<String, Control> controls = extendedResponse.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(control.getValue()));
// Check the encoding
try {
ByteBuffer bb = encoder.encodeMessage(extendedResponse);
// Check the length
assertEquals(0x41, 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.codec.api.CodecControl in project directory-ldap-api by apache.
the class IntermediateResponseTest method testDecodeIntermediateResponseNoValueWithControls.
/**
* Test the decoding of a full IntermediateResponse with no value and with
* controls
*/
@Test
public void testDecodeIntermediateResponseNoValueWithControls() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x33);
stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
0x31, 0x02, 0x01, // messageID MessageID
0x01, // CHOICE { ..., intermediateResponse IntermediateResponse, ...
0x79, // IntermediateResponse ::= [APPLICATION 25] SEQUENCE {
0x0F, // responseName [0] LDAPOID,
(byte) 0x80, 0x0D, '1', '.', '3', '.', '6', '.', '1', '.', '5', '.', '5', '.', '2', // requestValue [1] OCTET STRING OPTIONAL }
(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 LdapMessage Container
LdapMessageContainer<IntermediateResponseDecorator<?>> ldapMessageContainer = new LdapMessageContainer<IntermediateResponseDecorator<?>>(codec);
// Decode the IntermediateResponse PDU
try {
ldapDecoder.decode(stream, ldapMessageContainer);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
// Check the decoded IntermediateResponse PDU
IntermediateResponse intermediateResponse = ldapMessageContainer.getMessage();
assertEquals(1, intermediateResponse.getMessageId());
assertEquals("1.3.6.1.5.5.2", intermediateResponse.getResponseName());
assertEquals("", Strings.utf8ToString(intermediateResponse.getResponseValue()));
// Check the Control
Map<String, Control> controls = intermediateResponse.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(intermediateResponse);
// Check the length
assertEquals(0x33, 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.codec.api.CodecControl in project directory-ldap-api by apache.
the class ModifyResponseTest method testDecodeModifyResponseSuccessWithControls.
/**
* Test the decoding of a ModifyResponse with controls
*/
@Test
public void testDecodeModifyResponseSuccessWithControls() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x2B);
stream.put(new byte[] { 0x30, // LDAPMessage ::=SEQUENCE {
0x29, 0x02, 0x01, // messageID MessageID
0x01, 0x67, // CHOICE { ..., modifyResponse ModifyResponse, ...
0x07, // ModifyResponse ::= [APPLICATION 7] 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<ModifyResponseDecorator> ldapMessageContainer = new LdapMessageContainer<ModifyResponseDecorator>(codec);
// Decode a ModifyResponse PDU
try {
ldapDecoder.decode(stream, ldapMessageContainer);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
// Check the decoded ModifyResponse PDU
ModifyResponse modifyResponse = ldapMessageContainer.getMessage();
assertEquals(1, modifyResponse.getMessageId());
assertEquals(ResultCodeEnum.SUCCESS, modifyResponse.getLdapResult().getResultCode());
assertEquals("", modifyResponse.getLdapResult().getMatchedDn().getName());
assertEquals("", modifyResponse.getLdapResult().getDiagnosticMessage());
// Check the Control
Map<String, Control> controls = modifyResponse.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(modifyResponse);
// 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.codec.api.CodecControl in project directory-ldap-api by apache.
the class ModifyDNRequestTest method testDecodeModifyDNRequestSuccessWithControls.
/**
* Test the decoding of a full ModifyDNRequest with controls
*/
@Test
public void testDecodeModifyDNRequestSuccessWithControls() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x65);
stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
0x63, 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', (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 ModifyRequest Container
LdapMessageContainer<ModifyDnRequestDecorator> ldapMessageContainer = new LdapMessageContainer<ModifyDnRequestDecorator>(codec);
try {
ldapDecoder.decode(stream, ldapMessageContainer);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
ModifyDnRequest modifyDnRequest = ldapMessageContainer.getMessage();
assertEquals(1, modifyDnRequest.getMessageId());
assertEquals("cn=testModify,ou=users,ou=system", modifyDnRequest.getName().toString());
assertEquals(false, modifyDnRequest.getDeleteOldRdn());
assertEquals("cn=testDNModify", modifyDnRequest.getNewRdn().toString());
assertEquals("ou=system", modifyDnRequest.getNewSuperior().toString());
// Check the Control
Map<String, Control> controls = modifyDnRequest.getControls();
assertEquals(1, controls.size());
@SuppressWarnings("unchecked") CodecControl<Control> control = (org.apache.directory.api.ldap.codec.api.CodecControl<Control>) modifyDnRequest.getControl("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(modifyDnRequest);
// Check the length
assertEquals(0x65, bb.limit());
String encodedPdu = Strings.dumpBytes(bb.array());
assertEquals(encodedPdu, decodedPdu);
} catch (EncoderException ee) {
ee.printStackTrace();
fail(ee.getMessage());
}
}
Aggregations