Search in sources :

Example 81 with DecoderException

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

the class BindResponseTest method testDecodeAddResponseEmptyResult.

/**
 * Test the decoding of a BindResponse with no LdapResult
 */
@Test
public void testDecodeAddResponseEmptyResult() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x07);
    stream.put(new byte[] { // LDAPMessage ::=SEQUENCE {
    0x30, // LDAPMessage ::=SEQUENCE {
    0x05, 0x02, 0x01, // messageID MessageID
    0x01, 0x61, // CHOICE { ..., bindResponse BindResponse, ...
    0x00 });
    stream.flip();
    // Allocate a LdapMessage Container
    Asn1Container container = new LdapMessageContainer<MessageDecorator<? extends Message>>(codec);
    // Decode a BindResponse message
    try {
        ldapDecoder.decode(stream, container);
    } catch (DecoderException de) {
        assertTrue(true);
        return;
    }
    fail("We should not reach this point");
}
Also used : LdapMessageContainer(org.apache.directory.api.ldap.codec.api.LdapMessageContainer) DecoderException(org.apache.directory.api.asn1.DecoderException) Asn1Container(org.apache.directory.api.asn1.ber.Asn1Container) 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 82 with DecoderException

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

the class CompareRequestTest method testDecodeCompareRequestSuccess.

/**
 * Test the decoding of a full CompareRequest
 */
@Test
public void testDecodeCompareRequestSuccess() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x38);
    stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
    0x36, 0x02, 0x01, // messageID MessageID
    0x01, // CHOICE { ..., compareRequest CompareRequest, ...
    0x6E, // CompareRequest ::= [APPLICATION 14] SEQUENCE {
    0x31, // 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', // ava AttributeValueAssertion }
    0x30, // AttributeValueAssertion ::= SEQUENCE {
    0x0D, // attributeDesc AttributeDescription,
    0x04, 0x04, 't', 'e', 's', 't', // assertionValue AssertionValue }
    0x04, 0x05, 'v', 'a', 'l', 'u', 'e' });
    String decodedPdu = Strings.dumpBytes(stream.array());
    stream.flip();
    // Allocate a LdapMessage Container
    LdapMessageContainer<CompareRequestDecorator> container = new LdapMessageContainer<CompareRequestDecorator>(codec);
    // Decode the CompareRequest PDU
    try {
        ldapDecoder.decode(stream, container);
    } catch (DecoderException de) {
        de.printStackTrace();
        fail(de.getMessage());
    }
    // Check the decoded CompareRequest PDU
    CompareRequest compareRequest = container.getMessage();
    assertEquals(1, compareRequest.getMessageId());
    assertEquals("cn=testModify,ou=users,ou=system", compareRequest.getName().toString());
    assertEquals("test", compareRequest.getAttributeId());
    assertEquals("value", compareRequest.getAssertionValue().toString());
    // Check the encoding
    try {
        ByteBuffer bb = encoder.encodeMessage(compareRequest);
        // Check the length
        assertEquals(0x38, 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) CompareRequest(org.apache.directory.api.ldap.model.message.CompareRequest) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) CompareRequestDecorator(org.apache.directory.api.ldap.codec.decorators.CompareRequestDecorator) ByteBuffer(java.nio.ByteBuffer) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Example 83 with DecoderException

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

the class CompareRequestTest method testDecodeCompareRequestEmptyAttributeValue.

/**
 * Test the decoding of an empty attributeValue ava
 */
@Test
public void testDecodeCompareRequestEmptyAttributeValue() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x33);
    stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
    0x31, 0x02, 0x01, // messageID MessageID
    0x01, // CHOICE { ..., compareRequest CompareRequest, ...
    0x6E, // CompareRequest ::= [APPLICATION 14] SEQUENCE {
    0x2C, // 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', // ava AttributeValueAssertion }
    0x30, // AttributeValueAssertion ::= SEQUENCE {
    0x08, // attributeDesc AttributeDescription,
    0x04, 0x04, 't', 'e', 's', 't', // assertionValue AssertionValue }
    0x04, 0x00 });
    String decodedPdu = Strings.dumpBytes(stream.array());
    stream.flip();
    // Allocate a LdapMessage Container
    LdapMessageContainer<CompareRequestDecorator> container = new LdapMessageContainer<CompareRequestDecorator>(codec);
    // Decode the CompareRequest PDU
    try {
        ldapDecoder.decode(stream, container);
    } catch (DecoderException de) {
        de.printStackTrace();
        fail(de.getMessage());
    }
    // Check the decoded CompareRequest PDU
    CompareRequest compareRequest = container.getMessage();
    assertEquals(1, compareRequest.getMessageId());
    assertEquals("cn=testModify,ou=users,ou=system", compareRequest.getName().toString());
    assertEquals("test", compareRequest.getAttributeId());
    assertEquals("", compareRequest.getAssertionValue().toString());
    // Check the encoding
    try {
        ByteBuffer bb = encoder.encodeMessage(compareRequest);
        // Check the length
        assertEquals(0x33, 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) CompareRequest(org.apache.directory.api.ldap.model.message.CompareRequest) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) CompareRequestDecorator(org.apache.directory.api.ldap.codec.decorators.CompareRequestDecorator) ByteBuffer(java.nio.ByteBuffer) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Example 84 with DecoderException

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

the class CompareRequestTest method testDecodeCompareRequestEmptyAttributeDesc.

/**
 * Test the decoding of an empty attributeDesc ava
 */
@Test
public void testDecodeCompareRequestEmptyAttributeDesc() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x2D);
    stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
    0x2B, 0x02, 0x01, // messageID MessageID
    0x01, // CHOICE { ..., compareRequest CompareRequest, ...
    0x6E, // CompareRequest ::= [APPLICATION 14] SEQUENCE {
    0x26, // 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', // ava AttributeValueAssertion }
    0x30, // AttributeValueAssertion ::= SEQUENCE {
    0x02, 0x04, 0x00 });
    stream.flip();
    // Allocate a LdapMessage Container
    LdapMessageContainer<CompareRequestDecorator> container = new LdapMessageContainer<CompareRequestDecorator>(codec);
    // Decode the CompareRequest PDU
    try {
        ldapDecoder.decode(stream, container);
        fail("We should never reach this point !!!");
    } catch (DecoderException de) {
        assertTrue(de instanceof ResponseCarryingException);
        Message response = ((ResponseCarryingException) de).getResponse();
        assertTrue(response instanceof CompareResponseImpl);
        assertEquals(ResultCodeEnum.INVALID_ATTRIBUTE_SYNTAX, ((CompareResponseImpl) response).getLdapResult().getResultCode());
        return;
    }
}
Also used : LdapMessageContainer(org.apache.directory.api.ldap.codec.api.LdapMessageContainer) DecoderException(org.apache.directory.api.asn1.DecoderException) ResponseCarryingException(org.apache.directory.api.ldap.codec.api.ResponseCarryingException) CompareResponseImpl(org.apache.directory.api.ldap.model.message.CompareResponseImpl) Message(org.apache.directory.api.ldap.model.message.Message) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) CompareRequestDecorator(org.apache.directory.api.ldap.codec.decorators.CompareRequestDecorator) ByteBuffer(java.nio.ByteBuffer) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Example 85 with DecoderException

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

the class CompareRequestTest method testDecodeCompareRequestEmptyEntry.

/**
 * Test the decoding of an empty entry CompareRequest
 */
@Test
public void testDecodeCompareRequestEmptyEntry() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x18);
    stream.put(new byte[] { // LDAPMessage ::= SEQUENCE {
    0x30, // LDAPMessage ::= SEQUENCE {
    0x16, 0x02, 0x01, // messageID MessageID
    0x01, // CHOICE { ..., compareRequest CompareRequest, ...
    0x6E, // CompareRequest ::= [APPLICATION 14] SEQUENCE {
    0x11, 0x04, // entry LDAPDN,
    0x00, // ava AttributeValueAssertion }
    0x30, // AttributeValueAssertion ::= SEQUENCE {
    0x0D, // attributeDesc AttributeDescription,
    0x04, 0x04, 't', 'e', 's', 't', // assertionValue AssertionValue }
    0x04, 0x05, 'v', 'a', 'l', 'u', 'e' });
    stream.flip();
    // Allocate a LdapMessage Container
    LdapMessageContainer<CompareRequestDecorator> container = new LdapMessageContainer<CompareRequestDecorator>(codec);
    // Decode the CompareRequest PDU
    try {
        ldapDecoder.decode(stream, container);
        fail("We should never reach this point !!!");
    } catch (DecoderException de) {
        assertTrue(true);
    }
}
Also used : LdapMessageContainer(org.apache.directory.api.ldap.codec.api.LdapMessageContainer) DecoderException(org.apache.directory.api.asn1.DecoderException) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) CompareRequestDecorator(org.apache.directory.api.ldap.codec.decorators.CompareRequestDecorator) ByteBuffer(java.nio.ByteBuffer) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Aggregations

DecoderException (org.apache.directory.api.asn1.DecoderException)404 ByteBuffer (java.nio.ByteBuffer)346 Test (org.junit.Test)346 Asn1Decoder (org.apache.directory.api.asn1.ber.Asn1Decoder)334 LdapMessageContainer (org.apache.directory.api.ldap.codec.api.LdapMessageContainer)269 AbstractCodecServiceTest (org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)269 EncoderException (org.apache.directory.api.asn1.EncoderException)145 SearchRequestDecorator (org.apache.directory.api.ldap.codec.decorators.SearchRequestDecorator)102 TLV (org.apache.directory.api.asn1.ber.tlv.TLV)73 SearchRequest (org.apache.directory.api.ldap.model.message.SearchRequest)50 Control (org.apache.directory.api.ldap.model.message.Control)40 ExprNode (org.apache.directory.api.ldap.model.filter.ExprNode)38 Asn1Container (org.apache.directory.api.asn1.ber.Asn1Container)36 CodecControl (org.apache.directory.api.ldap.codec.api.CodecControl)34 ResponseCarryingException (org.apache.directory.api.ldap.codec.api.ResponseCarryingException)28 Message (org.apache.directory.api.ldap.model.message.Message)25 BindRequestDecorator (org.apache.directory.api.ldap.codec.decorators.BindRequestDecorator)22 ModifyRequestDecorator (org.apache.directory.api.ldap.codec.decorators.ModifyRequestDecorator)22 BindRequest (org.apache.directory.api.ldap.model.message.BindRequest)22 AndNode (org.apache.directory.api.ldap.model.filter.AndNode)20