use of org.apache.directory.api.ldap.codec.decorators.ModifyRequestDecorator in project directory-ldap-api by apache.
the class ModifyRequestTest method testDecodeModifyRequest2Attrs3valsSuccess.
/**
* Test the decoding of a ModifyRequest
*/
@Test
public void testDecodeModifyRequest2Attrs3valsSuccess() throws LdapException {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x5C);
stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
0x5A, 0x02, 0x01, // messageID MessageID
0x01, 0x66, // CHOICE { ..., modifyRequest ModifyRequest, ...
0x55, // object 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', 0x30, // modification SEQUENCE OF SEQUENCE {
0x31, 0x30, 0x19, 0x0A, 0x01, // operation ENUMERATED {
0x02, // modification AttributeTypeAndValues } }
0x30, // AttributeTypeAndValues ::= SEQUENCE {
0x14, 0x04, 0x01, // type AttributeDescription,
'l', 0x31, // vals SET OF AttributeValue }
0x0F, 0x04, 0x05, 'P', 'a', 'r', 'i', 's', 0x04, 0x06, 'L', 'o', 'n', 'd', 'o', 'n', 0x30, // modification SEQUENCE OF *SEQUENCE* {
0x14, 0x0A, 0x01, // operation ENUMERATED {
0x00, // modification AttributeTypeAndValues } }
0x30, // AttributeTypeAndValues ::= SEQUENCE {
0x0f, // type AttributeDescription,
0x04, 0x05, 'a', 't', 't', 'r', 's', 0x31, // vals SET OF AttributeValue }
0x06, 0x04, 0x04, 't', 'e', 's', 't' });
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(1, modifyRequest.getMessageId());
assertEquals("cn=testModify,ou=users,ou=system", modifyRequest.getName().toString());
Object[] modifications = modifyRequest.getModifications().toArray();
assertEquals(2, modifications.length);
Modification modification = (Modification) modifications[0];
Attribute attributeValue = modification.getAttribute();
assertEquals("l", Strings.toLowerCaseAscii(attributeValue.getUpId()));
assertTrue(attributeValue.contains("Paris"));
assertTrue(attributeValue.contains("London"));
modification = (Modification) modifications[1];
attributeValue = modification.getAttribute();
assertEquals("attrs", Strings.toLowerCaseAscii(attributeValue.getUpId()));
String attrValue = attributeValue.getString();
assertEquals("test", attrValue);
// Check the encoding
try {
ByteBuffer bb = encoder.encodeMessage(modifyRequest);
// Check the length
assertEquals(0x5C, 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.decorators.ModifyRequestDecorator in project directory-ldap-api by apache.
the class ModifyRequestTest method testDecodeModifyRequestAddOperationModificationEmptyType.
/**
* Test the decoding of a ModifyRequest with an add operation, and a
* modification with an empty type
*/
@Test
public void testDecodeModifyRequestAddOperationModificationEmptyType() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x34);
stream.put(new byte[] { 0x30, // LdapMessage
0x32, 0x02, 0x01, // Message ID : 49
0x31, 0x66, // ModifyRequest
0x2D, 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, 0x09, 0x30, 0x07, 0x0A, 0x01, 0x00, 0x30, 0x02, 0x04, 0x00 });
stream.flip();
// Allocate a LdapMessage Container
LdapMessageContainer<ModifyRequestDecorator> ldapMessageContainer = new LdapMessageContainer<ModifyRequestDecorator>(codec);
// Decode a ModifyRequest PDU
try {
ldapDecoder.decode(stream, ldapMessageContainer);
fail("We should never reach this point !!!");
} catch (DecoderException de) {
assertTrue(de instanceof ResponseCarryingException);
Message response = ((ResponseCarryingException) de).getResponse();
assertTrue(response instanceof ModifyResponseImpl);
assertEquals(ResultCodeEnum.INVALID_ATTRIBUTE_SYNTAX, ((ModifyResponseImpl) response).getLdapResult().getResultCode());
return;
}
}
use of org.apache.directory.api.ldap.codec.decorators.ModifyRequestDecorator in project directory-ldap-api by apache.
the class ModifyRequestTest method testDecodeModifyRequestEmptyObject.
/**
* Test the decoding of a ModifyRequest with an empty object
*/
@Test
public void testDecodeModifyRequestEmptyObject() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x09);
stream.put(new byte[] { // LdapMessage
0x30, // LdapMessage
0x07, 0x02, 0x01, // Message ID : 49
0x31, 0x66, // ModifyRequest
0x02, 0x04, 0x00 });
stream.flip();
// Allocate a LdapMessage Container
LdapMessageContainer<ModifyRequestDecorator> ldapMessageContainer = new LdapMessageContainer<ModifyRequestDecorator>(codec);
// Decode a ModifyRequest PDU
try {
ldapDecoder.decode(stream, ldapMessageContainer);
fail("We should never reach this point !!!");
} catch (DecoderException de) {
assertTrue(true);
}
}
use of org.apache.directory.api.ldap.codec.decorators.ModifyRequestDecorator in project directory-ldap-api by apache.
the class ModifyRequestTest method testDecodeModifyRequestEmptyBody.
// Defensive tests
/**
* Test the decoding of a ModifyRequest with an empty body
*/
@Test
public void testDecodeModifyRequestEmptyBody() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x07);
stream.put(new byte[] { // LdapMessage
0x30, // LdapMessage
0x05, 0x02, 0x01, // Message ID : 49
0x31, 0x66, // ModifyRequest
0x00 });
stream.flip();
// Allocate a LdapMessage Container
LdapMessageContainer<ModifyRequestDecorator> ldapMessageContainer = new LdapMessageContainer<ModifyRequestDecorator>(codec);
// Decode a ModifyRequest PDU
try {
ldapDecoder.decode(stream, ldapMessageContainer);
fail("We should never reach this point !!!");
} catch (DecoderException de) {
assertTrue(true);
}
}
use of org.apache.directory.api.ldap.codec.decorators.ModifyRequestDecorator in project directory-ldap-api by apache.
the class ModifyRequestTest method testDecodeModifyRequestManyOperations.
/**
* Test the decoding of a ModifyRequest, with different operations
*/
@Test
public void testDecodeModifyRequestManyOperations() throws LdapException {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x18C);
stream.put(new byte[] { 0x30, (byte) 0x81, (byte) 0x89, 0x02, 0x01, 0x15, 0x66, 0x67, 0x04, // ModifyRequest object : cn=Tori Amos,ou=playground,dc=apache,dc=org
0x2B, 'c', 'n', '=', 'T', 'o', 'r', 'i', ' ', 'A', 'm', 'o', 's', ',', 'o', 'u', '=', 'p', 'l', 'a', 'y', 'g', 'r', 'o', 'u', 'n', 'd', ',', 'd', 'c', '=', 'a', 'p', 'a', 'c', 'h', 'e', ',', 'd', 'c', '=', 'o', 'r', 'g', 0x30, // Modifications
0x38, 0x30, // Modification
0x24, 0x0A, 0x01, // Operation = ADD
0x00, 0x30, // type : telephoneNumber
0x1F, 0x04, 0x0F, 't', 'e', 'l', 'e', 'p', 'h', 'o', 'n', 'e', 'N', 'u', 'm', 'b', 'e', 'r', 0x31, // vals : 1234567890
0x0C, 0x04, 0x0A, '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', 0x30, // Modification
0x10, 0x0A, 0x01, // Operation = REPLACE
0x02, 0x30, // type : cn
0x0B, 0x04, 0x02, 'c', 'n', 0x31, // vals : XXX
0x05, 0x04, 0x03, 'X', 'X', 'X', (byte) 0xA0, // Control : 2.16.840.1.113730.3.4.2
0x1B, 0x30, 0x19, 0x04, 0x17, '2', '.', '1', '6', '.', '8', '4', '0', '.', '1', '.', '1', '1', '3', '7', '3', '0', '.', '3', '.', '4', '.', '2' });
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(21, modifyRequest.getMessageId());
assertEquals("cn=Tori Amos,ou=playground,dc=apache,dc=org", modifyRequest.getName().toString());
Object[] modifications = modifyRequest.getModifications().toArray();
assertEquals(2, modifications.length);
Modification modification = (Modification) modifications[0];
Attribute attributeValue = modification.getAttribute();
assertEquals("telephonenumber", Strings.toLowerCaseAscii(attributeValue.getId()));
String attrValue = attributeValue.getString();
assertEquals("1234567890", attrValue);
modification = (Modification) modifications[1];
attributeValue = modification.getAttribute();
assertEquals("cn", Strings.toLowerCaseAscii(attributeValue.getUpId()));
attrValue = attributeValue.getString();
assertEquals("XXX", attrValue);
// Check the encoding, by decoding and re-encoding the result
try {
ByteBuffer bb = encoder.encodeMessage(modifyRequest);
// Check the length
assertEquals(0x8C, bb.limit());
String decodedPdu1 = Strings.dumpBytes(bb.array());
try {
ldapDecoder.decode(bb, ldapMessageContainer);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
ModifyRequest modifyRequest2 = ldapMessageContainer.getMessage();
bb = encoder.encodeMessage(modifyRequest2);
String decodedPdu2 = Strings.dumpBytes(bb.array());
assertEquals(decodedPdu1, decodedPdu2);
} catch (EncoderException ee) {
ee.printStackTrace();
fail(ee.getMessage());
}
}
Aggregations