Search in sources :

Example 21 with SearchRequestDecorator

use of org.apache.directory.api.ldap.codec.decorators.SearchRequestDecorator in project directory-ldap-api by apache.

the class SearchRequestTest method testDecodeSearchRequestWithControls.

/**
 * Test the decoding of a SearchRequest with controls.
 */
@Test
public void testDecodeSearchRequestWithControls() {
    byte[] asn1BERJava5 = new byte[] { 0x30, 0x7f, // messageID
    0x02, // messageID
    0x01, // messageID
    0x04, 0x63, 0x33, 0x04, // baseObject
    0x13, 'd', 'c', '=', 'm', 'y', '-', 'd', 'o', 'm', 'a', 'i', 'n', ',', 'd', 'c', '=', 'c', 'o', 'm', 0x0a, 0x01, // scope: subtree
    0x02, 0x0a, 0x01, // derefAliases: derefAlways
    0x03, 0x02, 0x01, // sizeLimit: 0
    0x00, 0x02, 0x01, // timeLimit: 0
    0x00, 0x01, 0x01, // typesOnly: false
    0x00, (byte) 0x87, // Present filter: (objectClass=*)
    0x0b, 'o', 'b', 'j', 'e', 'c', 't', 'C', 'l', 'a', 's', 's', 0x30, // Attributes = '*'
    0x00, (byte) 0xa0, // controls
    0x45, 0x30, 0x28, 0x04, // control
    0x16, '1', '.', '2', '.', '8', '4', '0', '.', '1', '1', '3', '5', '5', '6', '.', '1', '.', '4', '.', '3', '1', '9', 0x01, 0x01, // criticality: false
    (byte) 0xff, 0x04, 0x0b, 0x30, 0x09, 0x02, 0x01, 0x02, 0x04, 0x04, 0x47, 0x00, 0x00, // value: pageSize=2
    0x00, 0x30, 0x19, 0x04, // control
    0x17, '2', '.', '1', '6', '.', '8', '4', '0', '.', '1', '.', '1', '1', '3', '7', '3', '0', '.', '3', '.', '4', '.', '2' };
    byte[] asn1BERJava6 = new byte[] { 0x30, 0x7f, // messageID
    0x02, // messageID
    0x01, // messageID
    0x04, 0x63, 0x33, 0x04, // baseObject
    0x13, 'd', 'c', '=', 'm', 'y', '-', 'd', 'o', 'm', 'a', 'i', 'n', ',', 'd', 'c', '=', 'c', 'o', 'm', 0x0a, 0x01, // scope: subtree
    0x02, 0x0a, 0x01, // derefAliases: derefAlways
    0x03, 0x02, 0x01, // sizeLimit: 0
    0x00, 0x02, 0x01, // timeLimit: 0
    0x00, 0x01, 0x01, // typesOnly: false
    0x00, (byte) 0x87, // Present filter: (objectClass=*)
    0x0b, 'o', 'b', 'j', 'e', 'c', 't', 'C', 'l', 'a', 's', 's', 0x30, // Attributes = '*'
    0x00, (byte) 0xa0, // controls
    0x45, 0x30, 0x19, 0x04, // control
    0x17, '2', '.', '1', '6', '.', '8', '4', '0', '.', '1', '.', '1', '1', '3', '7', '3', '0', '.', '3', '.', '4', '.', '2', 0x30, 0x28, 0x04, // control
    0x16, '1', '.', '2', '.', '8', '4', '0', '.', '1', '1', '3', '5', '5', '6', '.', '1', '.', '4', '.', '3', '1', '9', 0x01, 0x01, // criticality: false
    (byte) 0xff, 0x04, 0x0b, 0x30, 0x09, 0x02, 0x01, 0x02, 0x04, 0x04, 0x47, 0x00, 0x00, // value: pageSize=2
    0x00 };
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    // For Java6
    ByteBuffer streamJava6 = ByteBuffer.allocate(asn1BERJava6.length);
    streamJava6.put(asn1BERJava6);
    String decodedPduJava6 = Strings.dumpBytes(streamJava6.array());
    streamJava6.flip();
    // For Java5
    ByteBuffer streamJava5 = ByteBuffer.allocate(asn1BERJava5.length);
    streamJava5.put(asn1BERJava5);
    String decodedPduJava5 = Strings.dumpBytes(streamJava5.array());
    LdapMessageContainer<SearchRequestDecorator> ldapMessageContainer = new LdapMessageContainer<SearchRequestDecorator>(codec);
    try {
        ldapDecoder.decode(streamJava6, ldapMessageContainer);
    } catch (DecoderException de) {
        de.printStackTrace();
        fail(de.getMessage());
    }
    assertEquals(TLVStateEnum.PDU_DECODED, ldapMessageContainer.getState());
    SearchRequest searchRequest = ldapMessageContainer.getMessage();
    assertEquals(4, searchRequest.getMessageId());
    assertEquals(2, searchRequest.getControls().size());
    // this is a constant in Java 5 API
    String pagedResultsControlOID = "1.2.840.113556.1.4.319";
    Control pagedResultsControl = searchRequest.getControl(pagedResultsControlOID);
    assertEquals(pagedResultsControlOID, pagedResultsControl.getOid());
    assertTrue(pagedResultsControl.isCritical());
    // this is a constant in Java 5 API
    String manageReferralControlOID = "2.16.840.1.113730.3.4.2";
    Control manageReferralControl = searchRequest.getControl(manageReferralControlOID);
    assertEquals(manageReferralControlOID, manageReferralControl.getOid());
    assertEquals("dc=my-domain,dc=com", searchRequest.getBase().toString());
    assertEquals(SearchScope.SUBTREE, searchRequest.getScope());
    assertEquals(AliasDerefMode.DEREF_ALWAYS, searchRequest.getDerefAliases());
    assertEquals(0, searchRequest.getSizeLimit());
    assertEquals(0, searchRequest.getTimeLimit());
    assertEquals(false, searchRequest.getTypesOnly());
    ExprNode filter = searchRequest.getFilter();
    assertTrue(filter instanceof PresenceNode);
    assertEquals("objectClass", ((PresenceNode) filter).getAttribute());
    // Check the encoding
    try {
        ByteBuffer bb = encoder.encodeMessage(searchRequest);
        // Check the length
        assertEquals(0x81, bb.limit());
        String encodedPdu = Strings.dumpBytes(bb.array());
        assertTrue(decodedPduJava5.equals(encodedPdu) || decodedPduJava6.equals(encodedPdu));
    } catch (EncoderException ee) {
        ee.printStackTrace();
        fail(ee.getMessage());
    }
}
Also used : LdapMessageContainer(org.apache.directory.api.ldap.codec.api.LdapMessageContainer) SearchRequest(org.apache.directory.api.ldap.model.message.SearchRequest) PresenceNode(org.apache.directory.api.ldap.model.filter.PresenceNode) ByteBuffer(java.nio.ByteBuffer) ExprNode(org.apache.directory.api.ldap.model.filter.ExprNode) DecoderException(org.apache.directory.api.asn1.DecoderException) EncoderException(org.apache.directory.api.asn1.EncoderException) Control(org.apache.directory.api.ldap.model.message.Control) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) SearchRequestDecorator(org.apache.directory.api.ldap.codec.decorators.SearchRequestDecorator) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Example 22 with SearchRequestDecorator

use of org.apache.directory.api.ldap.codec.decorators.SearchRequestDecorator in project directory-ldap-api by apache.

the class SearchRequestTest method testDecodeSearchRequestGlobalBadDerefAlias.

/**
 * Test the decoding of a SearchRequest with a bad derefAlias
 */
@Test
public void testDecodeSearchRequestGlobalBadDerefAlias() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x90);
    stream.put(new byte[] { 0x30, (byte) 0x81, // LDAPMessage ::=SEQUENCE {
    (byte) 0x8D, 0x02, 0x01, // messageID MessageID
    0x01, 0x63, (byte) 0x81, // CHOICE { ...,
    (byte) 0x87, // SearchRequest ::= APPLICATION[3] SEQUENCE {
    0x04, // baseObject LDAPDN,
    0x1F, 'u', 'i', 'd', ':', 'a', 'k', 'a', 'r', 'a', 's', 'u', 'l', 'u', ',', 'd', 'c', '=', 'e', 'x', 'a', 'm', 'p', 'l', 'e', ',', 'd', 'c', '=', 'c', 'o', 'm', 0x0A, 0x01, // scope ENUMERATED {
    0x01, // wholeSubtree (2) },
    0x0A, 0x01, // derefAliases ENUMERATED {
    0x04, // derefAlways (3) },
    0x02, 0x02, 0x03, // sizeLimit INTEGER (0 .. maxInt), (1000)
    (byte) 0xE8, 0x02, 0x02, 0x03, // timeLimit INTEGER (0 .. maxInt), (1000)
    (byte) 0xE8, 0x01, 0x01, // typesOnly  BOOLEAN, (TRUE)
    (byte) 0xFF, // filter Filter,
    (byte) 0xA0, // Filter ::= CHOICE {
    0x3C, // and [0] SET OF Filter,
    (byte) 0xA1, // or [1] SET of Filter,
    0x24, (byte) 0xA3, // equalityMatch [3]
    0x12, // attributeDesc AttributeDescription (LDAPString),
    0x04, 0x0B, 'o', 'b', 'j', 'e', 'c', 't', 'c', 'l', 'a', 's', 's', // assertionValue AssertionValue (OCTET STRING) }
    0x04, 0x03, 't', 'o', 'p', (byte) 0xA3, // equalityMatch [3] Assertion,
    0x0E, // Assertion ::= SEQUENCE {
    0x04, 0x02, 'o', // attributeDesc AttributeDescription (LDAPString),
    'u', // assertionValue AssertionValue (OCTET STRING) }
    0x04, 0x08, 'c', 'o', 'n', 't', 'a', 'c', 't', 's', (byte) 0xA2, // not [2] Filter,
    0x14, (byte) 0xA3, // equalityMatch [3] Assertion,
    0x12, // attributeDesc AttributeDescription (LDAPString),
    0x04, 0x0B, 'o', 'b', 'j', 'e', 'c', 't', 'c', 'l', 'a', 's', 's', // assertionValue AssertionValue (OCTET STRING) }
    0x04, 0x03, 't', 't', 't', // attributes AttributeDescriptionList }
    0x30, // AttributeDescriptionList ::= SEQUENCE OF
    0x15, // AttributeDescription
    0x04, 0x05, 'a', 't', 't', 'r', // AttributeDescription ::= LDAPString
    '0', 0x04, 0x05, 'a', 't', 't', 'r', // AttributeDescription ::= LDAPString
    '1', 0x04, 0x05, 'a', 't', 't', 'r', // AttributeDescription ::= LDAPString
    '2' });
    stream.flip();
    // Allocate a LdapMessage Container
    LdapMessageContainer<SearchRequestDecorator> ldapMessageContainer = new LdapMessageContainer<SearchRequestDecorator>(codec);
    try {
        ldapDecoder.decode(stream, ldapMessageContainer);
    } 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) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) ByteBuffer(java.nio.ByteBuffer) SearchRequestDecorator(org.apache.directory.api.ldap.codec.decorators.SearchRequestDecorator) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Example 23 with SearchRequestDecorator

use of org.apache.directory.api.ldap.codec.decorators.SearchRequestDecorator in project directory-ldap-api by apache.

the class SearchRequestTest method testDecodeSearchRequestEmptyOrFilter.

/**
 * Test the decoding of a SearchRequest with an empty Or filter
 */
@Test
public void testDecodeSearchRequestEmptyOrFilter() {
    byte[] asn1BER = new byte[] { 0x30, 0x3B, 0x02, 0x01, // messageID
    0x04, 0x63, 0x36, 0x04, // baseObject LDAPDN,
    0x1F, 'u', 'i', 'd', '=', 'a', 'k', 'a', 'r', 'a', 's', 'u', 'l', 'u', ',', 'd', 'c', '=', 'e', 'x', 'a', 'm', 'p', 'l', 'e', ',', 'd', 'c', '=', 'c', 'o', 'm', 0x0A, 0x01, 0x01, 0x0A, 0x01, 0x03, 0x02, 0x01, 0x00, 0x02, 0x01, 0x00, 0x01, 0x01, (byte) 0xFF, (byte) 0xA1, 0x00, 0x30, // AttributeDescriptionList
    0x02, // AttributeDescription
    0x04, 0x00 };
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(asn1BER.length);
    stream.put(asn1BER);
    stream.flip();
    // Allocate a LdapMessage Container
    LdapMessageContainer<SearchRequestDecorator> ldapMessageContainer = new LdapMessageContainer<SearchRequestDecorator>(codec);
    // Decode a SearchRequest message
    try {
        ldapDecoder.decode(stream, ldapMessageContainer);
    } 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) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) ByteBuffer(java.nio.ByteBuffer) SearchRequestDecorator(org.apache.directory.api.ldap.codec.decorators.SearchRequestDecorator) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Example 24 with SearchRequestDecorator

use of org.apache.directory.api.ldap.codec.decorators.SearchRequestDecorator in project directory-ldap-api by apache.

the class SearchRequestTest method testDecodeSearchRequestAnd_AndEq_Eq.

/**
 * Test the decoding of a SearchRequest
 * (&(&(a=b))(c=d))
 */
@Test
public void testDecodeSearchRequestAnd_AndEq_Eq() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x31);
    stream.put(new byte[] { // LDAPMessage ::=SEQUENCE {
    0x30, // LDAPMessage ::=SEQUENCE {
    0x2F, 0x02, 0x01, // messageID MessageID
    0x01, 0x63, // CHOICE { ...,
    0x2A, // SearchRequest ::= APPLICATION[3] SEQUENCE {
    0x04, // baseObject LDAPDN,
    0x03, 'a', '=', 'b', 0x0A, 0x01, // scope ENUMERATED {
    0x01, // wholeSubtree (2) },
    0x0A, 0x01, // derefAliases ENUMERATED {
    0x03, // derefAlways (3) },
    0x02, 0x01, // sizeLimit INTEGER (0 .. maxInt), (0)
    0x00, 0x02, 0x01, // timeLimit INTEGER (0 .. maxInt), (1000)
    0x00, 0x01, 0x01, // typesOnly BOOLEAN, (TRUE)
    (byte) 0xFF, // filter Filter,
    (byte) 0xA0, // Filter ::= CHOICE { and             [0] SET OF Filter,
    0x12, (byte) 0xA0, // Filter ::= CHOICE { and             [0] SET OF Filter,
    0x08, (byte) 0xA3, // equalityMatch [3] Assertion,
    0x06, // Assertion ::= SEQUENCE {
    0x04, 0x01, // attributeDesc AttributeDescription (LDAPString),
    'a', 0x04, 0x01, // assertionValue AssertionValue (OCTET STRING) }
    'b', (byte) 0xA3, // equalityMatch [3] Assertion,
    0x06, // Assertion ::= SEQUENCE {
    0x04, 0x01, // attributeDesc AttributeDescription (LDAPString),
    'c', 0x04, 0x01, // assertionValue AssertionValue (OCTET STRING) }
    'd', 0x30, // AttributeDescriptionList ::= SEQUENCE OF AttributeDescription
    0x00 });
    String decodedPdu = Strings.dumpBytes(stream.array());
    stream.flip();
    // Allocate a BindRequest Container
    LdapMessageContainer<SearchRequestDecorator> ldapMessageContainer = new LdapMessageContainer<SearchRequestDecorator>(codec);
    try {
        ldapDecoder.decode(stream, ldapMessageContainer);
    } catch (DecoderException de) {
        de.printStackTrace();
        fail(de.getMessage());
    }
    assertEquals(TLVStateEnum.PDU_DECODED, ldapMessageContainer.getState());
    SearchRequest searchRequest = ldapMessageContainer.getMessage();
    assertEquals(1, searchRequest.getMessageId());
    assertEquals("a=b", searchRequest.getBase().toString());
    assertEquals(SearchScope.ONELEVEL, searchRequest.getScope());
    assertEquals(AliasDerefMode.DEREF_ALWAYS, searchRequest.getDerefAliases());
    assertEquals(0, searchRequest.getSizeLimit());
    assertEquals(0, searchRequest.getTimeLimit());
    assertEquals(true, searchRequest.getTypesOnly());
    // (&(...
    ExprNode filter = searchRequest.getFilter();
    AndNode andNode = (AndNode) filter;
    assertNotNull(andNode);
    List<ExprNode> andNodes = andNode.getChildren();
    assertEquals(2, andNodes.size());
    // (&(&(..
    AndNode andNode2 = (AndNode) andNodes.get(0);
    assertNotNull(andNode2);
    List<ExprNode> andNodes2 = andNode2.getChildren();
    assertEquals(1, andNodes2.size());
    // (&(&(a=b))...
    EqualityNode<?> equalityNode = (EqualityNode<?>) andNodes2.get(0);
    assertNotNull(equalityNode);
    assertEquals("a", equalityNode.getAttribute());
    assertEquals("b", equalityNode.getValue().getValue());
    // (&(&(a=b))(c=d))
    equalityNode = (EqualityNode<?>) andNodes.get(1);
    assertNotNull(equalityNode);
    assertEquals("c", equalityNode.getAttribute());
    assertEquals("d", equalityNode.getValue().getValue());
    List<String> attributes = searchRequest.getAttributes();
    assertEquals(0, attributes.size());
    // attributes may have been reordered
    try {
        ByteBuffer bb = encoder.encodeMessage(searchRequest);
        // Check the length
        assertEquals(0x31, bb.limit());
        String encodedPdu = Strings.dumpBytes(bb.array());
        assertEquals(encodedPdu.substring(0, 0x31), decodedPdu.substring(0, 0x31));
    } catch (EncoderException ee) {
        ee.printStackTrace();
        fail(ee.getMessage());
    }
}
Also used : LdapMessageContainer(org.apache.directory.api.ldap.codec.api.LdapMessageContainer) SearchRequest(org.apache.directory.api.ldap.model.message.SearchRequest) AndNode(org.apache.directory.api.ldap.model.filter.AndNode) ByteBuffer(java.nio.ByteBuffer) ExprNode(org.apache.directory.api.ldap.model.filter.ExprNode) DecoderException(org.apache.directory.api.asn1.DecoderException) EncoderException(org.apache.directory.api.asn1.EncoderException) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) EqualityNode(org.apache.directory.api.ldap.model.filter.EqualityNode) SearchRequestDecorator(org.apache.directory.api.ldap.codec.decorators.SearchRequestDecorator) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Example 25 with SearchRequestDecorator

use of org.apache.directory.api.ldap.codec.decorators.SearchRequestDecorator in project directory-ldap-api by apache.

the class SearchRequestTest method testDecodeSearchRequestNotFilterEmptyAndFilter.

/**
 * Test the decoding of a SearchRequest with a Not filter and an empty And
 * filter
 */
@Test
public void testDecodeSearchRequestNotFilterEmptyAndFilter() {
    byte[] asn1BER = new byte[] { 0x30, 0x3D, 0x02, 0x01, // messageID
    0x04, 0x63, 0x38, 0x04, // baseObject LDAPDN,
    0x1F, 'u', 'i', 'd', '=', 'a', 'k', 'a', 'r', 'a', 's', 'u', 'l', 'u', ',', 'd', 'c', '=', 'e', 'x', 'a', 'm', 'p', 'l', 'e', ',', 'd', 'c', '=', 'c', 'o', 'm', 0x0A, 0x01, 0x01, 0x0A, 0x01, 0x03, 0x02, 0x01, 0x00, 0x02, 0x01, 0x00, 0x01, 0x01, (byte) 0xFF, (byte) 0xA2, 0x02, (byte) 0xA0, 0x00, 0x30, // AttributeDescriptionList ::= SEQUENCE OF
    0x02, // AttributeDescription
    0x04, 0x00 };
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(asn1BER.length);
    stream.put(asn1BER);
    stream.flip();
    // Allocate a LdapMessage Container
    LdapMessageContainer<SearchRequestDecorator> ldapMessageContainer = new LdapMessageContainer<SearchRequestDecorator>(codec);
    // Decode a SearchRequest message
    try {
        ldapDecoder.decode(stream, ldapMessageContainer);
    } 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) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) ByteBuffer(java.nio.ByteBuffer) SearchRequestDecorator(org.apache.directory.api.ldap.codec.decorators.SearchRequestDecorator) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Aggregations

SearchRequestDecorator (org.apache.directory.api.ldap.codec.decorators.SearchRequestDecorator)110 DecoderException (org.apache.directory.api.asn1.DecoderException)97 ByteBuffer (java.nio.ByteBuffer)85 Asn1Decoder (org.apache.directory.api.asn1.ber.Asn1Decoder)85 LdapMessageContainer (org.apache.directory.api.ldap.codec.api.LdapMessageContainer)85 AbstractCodecServiceTest (org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)85 Test (org.junit.Test)85 SearchRequest (org.apache.directory.api.ldap.model.message.SearchRequest)48 ExprNode (org.apache.directory.api.ldap.model.filter.ExprNode)37 EncoderException (org.apache.directory.api.asn1.EncoderException)33 AndNode (org.apache.directory.api.ldap.model.filter.AndNode)19 EqualityNode (org.apache.directory.api.ldap.model.filter.EqualityNode)18 TLV (org.apache.directory.api.asn1.ber.tlv.TLV)17 SubstringNode (org.apache.directory.api.ldap.model.filter.SubstringNode)12 OrNode (org.apache.directory.api.ldap.model.filter.OrNode)10 Filter (org.apache.directory.api.ldap.codec.search.Filter)9 PresenceNode (org.apache.directory.api.ldap.model.filter.PresenceNode)9 SubstringFilter (org.apache.directory.api.ldap.codec.search.SubstringFilter)6 GreaterEqNode (org.apache.directory.api.ldap.model.filter.GreaterEqNode)6 NotNode (org.apache.directory.api.ldap.model.filter.NotNode)6