Search in sources :

Example 46 with EncoderException

use of org.apache.directory.api.asn1.EncoderException in project directory-ldap-api by apache.

the class IntermediateResponseTest method testDecodeIntermediateResponseNoName.

/**
 * Test the decoding of an IntermediateResponse without name
 */
@Test
public void testDecodeIntermediateResponseNoName() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x0E);
    stream.put(new byte[] { // LDAPMessage ::= SEQUENCE {
    0x30, // LDAPMessage ::= SEQUENCE {
    0x0C, 0x02, 0x01, // messageID MessageID
    0x01, // CHOICE { ..., intermediateResponse IntermediateResponse, ...
    0x79, // IntermediateResponse ::= [APPLICATION 25] SEQUENCE {
    0x07, // responseValue [1] OCTET STRING OPTIONAL,
    (byte) 0x81, 0x05, 'v', 'a', 'l', 'u', 'e' });
    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("", intermediateResponse.getResponseName());
    assertEquals("value", Strings.utf8ToString(intermediateResponse.getResponseValue()));
    // Check the encoding
    try {
        ByteBuffer bb = encoder.encodeMessage(intermediateResponse);
        // Check the length
        assertEquals(0x0E, bb.limit());
        String encodedPdu = Strings.dumpBytes(bb.array());
        assertEquals(encodedPdu, decodedPdu);
    } catch (EncoderException ee) {
        ee.printStackTrace();
        fail(ee.getMessage());
    }
}
Also used : LdapMessageContainer(org.apache.directory.api.ldap.codec.api.LdapMessageContainer) DecoderException(org.apache.directory.api.asn1.DecoderException) EncoderException(org.apache.directory.api.asn1.EncoderException) IntermediateResponseDecorator(org.apache.directory.api.ldap.codec.decorators.IntermediateResponseDecorator) IntermediateResponse(org.apache.directory.api.ldap.model.message.IntermediateResponse) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) ByteBuffer(java.nio.ByteBuffer) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Example 47 with EncoderException

use of org.apache.directory.api.asn1.EncoderException in project directory-ldap-api by apache.

the class IntermediateResponseTest method testDecodeIntermediateResponseSuccess.

/**
 * Test the decoding of a full IntermediateResponse
 */
@Test
public void testDecodeIntermediateResponseSuccess() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x1D);
    stream.put(new byte[] { // LDAPMessage ::= SEQUENCE {
    0x30, // LDAPMessage ::= SEQUENCE {
    0x1B, 0x02, 0x01, // messageID MessageID
    0x01, // CHOICE { ..., intermediateResponse IntermediateResponse, ...
    0x79, // IntermediateResponse ::= [APPLICATION 25] SEQUENCE {
    0x16, // responseName [0] LDAPOID,
    (byte) 0x80, 0x0D, '1', '.', '3', '.', '6', '.', '1', '.', '5', '.', '5', '.', '2', // responseValue [1] OCTET STRING OPTIONAL }
    (byte) 0x81, 0x05, 'v', 'a', 'l', 'u', 'e' });
    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("value", Strings.utf8ToString(intermediateResponse.getResponseValue()));
    // Check the encoding
    try {
        ByteBuffer bb = encoder.encodeMessage(intermediateResponse);
        // Check the length
        assertEquals(0x1D, bb.limit());
        String encodedPdu = Strings.dumpBytes(bb.array());
        assertEquals(encodedPdu, decodedPdu);
    } catch (EncoderException ee) {
        ee.printStackTrace();
        fail(ee.getMessage());
    }
}
Also used : LdapMessageContainer(org.apache.directory.api.ldap.codec.api.LdapMessageContainer) DecoderException(org.apache.directory.api.asn1.DecoderException) EncoderException(org.apache.directory.api.asn1.EncoderException) IntermediateResponseDecorator(org.apache.directory.api.ldap.codec.decorators.IntermediateResponseDecorator) IntermediateResponse(org.apache.directory.api.ldap.model.message.IntermediateResponse) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) ByteBuffer(java.nio.ByteBuffer) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Example 48 with EncoderException

use of org.apache.directory.api.asn1.EncoderException in project directory-ldap-api by apache.

the class ModifyRequestTest method testDecodeModifyRequestManyOperations2.

/**
 * Test the decoding of a ModifyRequest, with different operations, take 2
 */
@Test
public void testDecodeModifyRequestManyOperations2() throws LdapException {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x18C);
    stream.put(new byte[] { 0x30, (byte) 0x81, // LdapMessage
    (byte) 0xB6, 0x02, 0x01, // Message ID : 49
    0x31, 0x66, (byte) 0x81, // ModifyRequest
    (byte) 0x93, 0x04, // 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
    0x64, 0x30, // Modification
    0x14, 0x0A, 0x01, // Operation : Delete
    0x01, 0x30, // type : description
    0x0F, 0x04, 0x0B, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6F, 0x6E, 0x31, // Vals = null
    0x00, 0x30, // Modification
    0x25, 0x0A, 0x01, // Operation : Add
    0x00, 0x30, // type : telephoneNumber
    0x20, 0x04, 0x0F, 't', 'e', 'l', 'e', 'p', 'h', 'o', 'n', 'e', 'N', 'u', 'm', 'b', 'e', 'r', 0x31, // Vals : 01234567890
    0x0D, 0x04, 0x0B, '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', 0x30, // Modification
    0x25, 0x0A, 0x01, // Operation : Add
    0x00, 0x30, // type : telephoneNumber
    0x20, 0x04, 0x0F, 't', 'e', 'l', 'e', 'p', 'h', 'o', 'n', 'e', 'N', 'u', 'm', 'b', 'e', 'r', 0x31, // Vals : 01234567890
    0x0D, 0x04, 0x0B, '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', (byte) 0xA0, // Controls : 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(49, modifyRequest.getMessageId());
    assertEquals("cn=Tori Amos,ou=playground,dc=apache,dc=org", modifyRequest.getName().toString());
    Object[] modifications = modifyRequest.getModifications().toArray();
    assertEquals(3, modifications.length);
    Modification modification = (Modification) modifications[0];
    Attribute attributeValue = modification.getAttribute();
    assertEquals("description", Strings.toLowerCaseAscii(attributeValue.getUpId()));
    assertEquals(0, attributeValue.size());
    modification = (Modification) modifications[1];
    attributeValue = modification.getAttribute();
    String attrValue = attributeValue.getString();
    assertEquals("telephonenumber", Strings.toLowerCaseAscii(attributeValue.getUpId()));
    assertEquals("01234567890", attrValue);
    modification = (Modification) modifications[2];
    attributeValue = modification.getAttribute();
    attrValue = attributeValue.getString();
    assertEquals("telephonenumber", Strings.toLowerCaseAscii(attributeValue.getUpId()));
    attrValue = attributeValue.getString();
    assertEquals("01234567890", attrValue);
    // Check the encoding, by decoding and re-encoding the result
    try {
        ByteBuffer bb = encoder.encodeMessage(modifyRequest);
        // Check the length
        assertEquals(0xB9, 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());
    }
}
Also used : ModifyRequestDecorator(org.apache.directory.api.ldap.codec.decorators.ModifyRequestDecorator) LdapMessageContainer(org.apache.directory.api.ldap.codec.api.LdapMessageContainer) Modification(org.apache.directory.api.ldap.model.entry.Modification) Attribute(org.apache.directory.api.ldap.model.entry.Attribute) ModifyRequest(org.apache.directory.api.ldap.model.message.ModifyRequest) ByteBuffer(java.nio.ByteBuffer) DecoderException(org.apache.directory.api.asn1.DecoderException) EncoderException(org.apache.directory.api.asn1.EncoderException) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Example 49 with EncoderException

use of org.apache.directory.api.asn1.EncoderException in project directory-ldap-api by apache.

the class ModifyRequestTest method testDecodeModifyRequest2AttrsSuccess.

/**
 * Test the decoding of a ModifyRequest
 */
@Test
public void testDecodeModifyRequest2AttrsSuccess() throws LdapException {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x54);
    stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
    0x52, 0x02, 0x01, // messageID MessageID
    0x01, 0x66, // CHOICE { ..., modifyRequest ModifyRequest, ...
    0x4d, // 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, 0x29, // modification SEQUENCE OF SEQUENCE {
    0x30, 0x11, 0x0A, 0x01, // operation ENUMERATED {
    0x02, // modification AttributeTypeAndValues } }
    0x30, // AttributeTypeAndValues ::= SEQUENCE {
    0x0c, 0x04, 0x01, // type AttributeDescription,
    'l', 0x31, // vals SET OF AttributeValue }
    0x07, 0x04, 0x05, 'P', 'a', 'r', 'i', 's', 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());
    Collection<Modification> modifications = modifyRequest.getModifications();
    assertEquals(2, modifications.size());
    for (Modification modification : modifications) {
        Attribute attribute = modification.getAttribute();
        if ("l".equalsIgnoreCase(attribute.getUpId())) {
            String attrValue = attribute.getString();
            assertEquals("Paris", attrValue);
        } else if ("attrs".equalsIgnoreCase(attribute.getUpId())) {
            String attrValue = attribute.getString();
            assertEquals("test", attrValue);
        }
    }
    // Check the encoding
    try {
        ByteBuffer bb = encoder.encodeMessage(modifyRequest);
        // Check the length
        assertEquals(0x54, bb.limit());
        String encodedPdu = Strings.dumpBytes(bb.array());
        assertEquals(encodedPdu, decodedPdu);
    } catch (EncoderException ee) {
        ee.printStackTrace();
        fail(ee.getMessage());
    }
}
Also used : ModifyRequestDecorator(org.apache.directory.api.ldap.codec.decorators.ModifyRequestDecorator) LdapMessageContainer(org.apache.directory.api.ldap.codec.api.LdapMessageContainer) DecoderException(org.apache.directory.api.asn1.DecoderException) Modification(org.apache.directory.api.ldap.model.entry.Modification) EncoderException(org.apache.directory.api.asn1.EncoderException) Attribute(org.apache.directory.api.ldap.model.entry.Attribute) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) ModifyRequest(org.apache.directory.api.ldap.model.message.ModifyRequest) ByteBuffer(java.nio.ByteBuffer) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Example 50 with EncoderException

use of org.apache.directory.api.asn1.EncoderException in project directory-ldap-api by apache.

the class ModifyRequestTest method testDecodeModifyRequestAddOperationModificationTypeEmptyValsWithControls.

/**
 * Test the decoding of a ModifyRequest with an add operation, and a
 * modification with a type and an empty vals wuth controls
 */
@Test
public void testDecodeModifyRequestAddOperationModificationTypeEmptyValsWithControls() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x54);
    stream.put(new byte[] { 0x30, // LdapMessage
    0x52, 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, (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<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 Control
    Map<String, Control> controls = modifyRequest.getControls();
    assertEquals(1, controls.size());
    @SuppressWarnings("unchecked") CodecControl<Control> control = (org.apache.directory.api.ldap.codec.api.CodecControl<Control>) modifyRequest.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(modifyRequest);
        // Check the length
        assertEquals(0x54, bb.limit());
        String encodedPdu = Strings.dumpBytes(bb.array());
        assertEquals(encodedPdu, decodedPdu);
    } catch (EncoderException ee) {
        ee.printStackTrace();
        fail(ee.getMessage());
    }
}
Also used : ModifyRequestDecorator(org.apache.directory.api.ldap.codec.decorators.ModifyRequestDecorator) LdapMessageContainer(org.apache.directory.api.ldap.codec.api.LdapMessageContainer) Modification(org.apache.directory.api.ldap.model.entry.Modification) Attribute(org.apache.directory.api.ldap.model.entry.Attribute) ModifyRequest(org.apache.directory.api.ldap.model.message.ModifyRequest) ByteBuffer(java.nio.ByteBuffer) DecoderException(org.apache.directory.api.asn1.DecoderException) EncoderException(org.apache.directory.api.asn1.EncoderException) Control(org.apache.directory.api.ldap.model.message.Control) CodecControl(org.apache.directory.api.ldap.codec.api.CodecControl) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) CodecControl(org.apache.directory.api.ldap.codec.api.CodecControl) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Aggregations

EncoderException (org.apache.directory.api.asn1.EncoderException)226 ByteBuffer (java.nio.ByteBuffer)191 Test (org.junit.Test)189 DecoderException (org.apache.directory.api.asn1.DecoderException)151 Asn1Decoder (org.apache.directory.api.asn1.ber.Asn1Decoder)150 AbstractCodecServiceTest (org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)127 LdapMessageContainer (org.apache.directory.api.ldap.codec.api.LdapMessageContainer)124 BufferOverflowException (java.nio.BufferOverflowException)40 Control (org.apache.directory.api.ldap.model.message.Control)38 CodecControl (org.apache.directory.api.ldap.codec.api.CodecControl)35 AbstractCodecServiceTest (org.apache.directory.api.ldap.extras.AbstractCodecServiceTest)35 SearchRequestDecorator (org.apache.directory.api.ldap.codec.decorators.SearchRequestDecorator)33 SearchRequest (org.apache.directory.api.ldap.model.message.SearchRequest)33 ExprNode (org.apache.directory.api.ldap.model.filter.ExprNode)28 SyncInfoValue (org.apache.directory.api.ldap.extras.intermediate.syncrepl.SyncInfoValue)20 SyncInfoValueDecorator (org.apache.directory.api.ldap.extras.intermediate.syncrepl.SyncInfoValueDecorator)20 Attribute (org.apache.directory.api.ldap.model.entry.Attribute)20 AndNode (org.apache.directory.api.ldap.model.filter.AndNode)15 Entry (org.apache.directory.api.ldap.model.entry.Entry)14 EqualityNode (org.apache.directory.api.ldap.model.filter.EqualityNode)14