use of org.apache.directory.api.asn1.EncoderException in project directory-ldap-api by apache.
the class ModifyRequestTest method testDecodeModifyRequestAddOperationModificationTypeEmptyVals.
/**
* Test the decoding of a ModifyRequest with an add operation, and a
* modification with a type and an empty vals
*/
@Test
public void testDecodeModifyRequestAddOperationModificationTypeEmptyVals() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x37);
stream.put(new byte[] { 0x30, // LdapMessage
0x35, 0x02, 0x01, // Message ID : 49
0x31, 0x66, // ModifyRequest
0x30, 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', 0x30, 0x0C, 0x30, 0x0A, 0x0A, 0x01, 0x00, 0x30, 0x05, 0x04, 0x01, 'l', 0x31, 0x00 });
String decodedPdu = Strings.dumpBytes(stream.array());
stream.flip();
// Allocate a LdapMessage Container
LdapMessageContainer<ModifyRequestDecorator> ldapMessageContainer = new LdapMessageContainer<ModifyRequestDecorator>(codec);
// Decode a ModifyRequest PDU
try {
ldapDecoder.decode(stream, ldapMessageContainer);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
// Check the decoded PDU
ModifyRequest modifyRequest = ldapMessageContainer.getMessage();
assertEquals(49, modifyRequest.getMessageId());
assertEquals("cn=testModify,ou=users,ou=system", modifyRequest.getName().toString());
Object[] modifications = modifyRequest.getModifications().toArray();
assertEquals(1, modifications.length);
Modification modification = (Modification) modifications[0];
Attribute attributeValue = modification.getAttribute();
assertEquals("l", Strings.toLowerCaseAscii(attributeValue.getUpId()));
assertEquals(0, attributeValue.size());
// Check the encoding
try {
ByteBuffer bb = encoder.encodeMessage(modifyRequest);
// Check the length
assertEquals(0x37, 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.asn1.EncoderException in project directory-ldap-api by apache.
the class ModifyDNRequestTest method testDecodeModifyDNRequestWithoutSuperiorWithControls.
/**
* Test the decoding of a ModifyDNRequest without a superior with controls
*/
@Test
public void testDecodeModifyDNRequestWithoutSuperiorWithControls() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x5A);
stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
0x58, 0x02, 0x01, // messageID MessageID
0x01, 0x6C, // CHOICE { ..., modifyDNRequest ModifyDNRequest,
0x36, // 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) 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());
// Check the Control
Map<String, Control> controls = modifyDnRequest.getControls();
assertEquals(1, controls.size());
assertTrue(modifyDnRequest.hasControl("2.16.840.1.113730.3.4.2"));
@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(0x5A, 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.asn1.EncoderException in project directory-ldap-api by apache.
the class ModifyDNRequestTest method testDecodeModifyDNRequestWithoutSuperior.
/**
* Test the decoding of a ModifyDNRequest without a superior
*/
@Test
public void testDecodeModifyDNRequestWithoutSuperior() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x3D);
stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
0x3B, 0x02, 0x01, // messageID MessageID
0x01, 0x6C, // CHOICE { ..., modifyDNRequest ModifyDNRequest,
0x36, // 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 }
});
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());
// Check the encoding
try {
ByteBuffer bb = encoder.encodeMessage(modifyDnRequest);
// Check the length
assertEquals(0x3D, 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.asn1.EncoderException in project directory-ldap-api by apache.
the class ModifyDNResponseTest method testDecodeModifyResponseSuccessWithControls.
/**
* Test the decoding of a ModifyDNResponse 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, 0x6D, // CHOICE { ..., modifyDNResponse ModifyDNResponse,
0x07, // ModifyDNResponse ::= [APPLICATION 13] 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<ModifyDnResponseDecorator> ldapMessageContainer = new LdapMessageContainer<ModifyDnResponseDecorator>(codec);
// Decode the ModifyDNResponse PDU
try {
ldapDecoder.decode(stream, ldapMessageContainer);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
// Check the decoded ModifyDNResponse PDU
ModifyDnResponse modifyDnResponse = ldapMessageContainer.getMessage();
assertEquals(1, modifyDnResponse.getMessageId());
assertEquals(ResultCodeEnum.SUCCESS, modifyDnResponse.getLdapResult().getResultCode());
assertEquals("", modifyDnResponse.getLdapResult().getMatchedDn().getName());
assertEquals("", modifyDnResponse.getLdapResult().getDiagnosticMessage());
// Check the Control
Map<String, Control> controls = modifyDnResponse.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(modifyDnResponse);
// 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.asn1.EncoderException in project directory-ldap-api by apache.
the class ModifyDNResponseTest method testDecodeModifyResponseSuccess.
/**
* Test the decoding of a ModifyDNResponse
*/
@Test
public void testDecodeModifyResponseSuccess() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x0E);
stream.put(new byte[] { // LDAPMessage ::=SEQUENCE {
0x30, // LDAPMessage ::=SEQUENCE {
0x0C, 0x02, 0x01, // messageID MessageID
0x01, 0x6D, // CHOICE { ..., modifyDNResponse ModifyDNResponse,
0x07, // ModifyDNResponse ::= [APPLICATION 13] LDAPResult
0x0A, 0x01, // LDAPResult ::= SEQUENCE {
0x00, // },
0x04, // matchedDN LDAPDN,
0x00, 0x04, // errorMessage LDAPString,
0x00 // referral [3] Referral OPTIONAL }
// }
});
String decodedPdu = Strings.dumpBytes(stream.array());
stream.flip();
// Allocate a LdapMessage Container
LdapMessageContainer<ModifyDnResponseDecorator> ldapMessageContainer = new LdapMessageContainer<ModifyDnResponseDecorator>(codec);
// Decode the ModifyDNResponse PDU
try {
ldapDecoder.decode(stream, ldapMessageContainer);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
// Check the decoded ModifyDNResponse PDU
ModifyDnResponse modifyDnResponse = ldapMessageContainer.getMessage();
assertEquals(1, modifyDnResponse.getMessageId());
assertEquals(ResultCodeEnum.SUCCESS, modifyDnResponse.getLdapResult().getResultCode());
assertEquals("", modifyDnResponse.getLdapResult().getMatchedDn().getName());
assertEquals("", modifyDnResponse.getLdapResult().getDiagnosticMessage());
// Check the encoding
try {
ByteBuffer bb = encoder.encodeMessage(modifyDnResponse);
// Check the length
assertEquals(0x0E, bb.limit());
String encodedPdu = Strings.dumpBytes(bb.array());
assertEquals(encodedPdu, decodedPdu);
} catch (EncoderException ee) {
ee.printStackTrace();
fail(ee.getMessage());
}
}
Aggregations