Search in sources :

Example 71 with DecoderException

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

the class BindRequestTest method testDecodeBindRequestEmptyMechanismWithControls.

/**
 * Test the decoding of a BindRequest with an empty mechanisms with controls
 */
@Test
public void testDecodeBindRequestEmptyMechanismWithControls() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x2D);
    stream.put(new byte[] { 0x30, // LDAPMessage ::=SEQUENCE {
    0x2B, 0x02, 0x01, // messageID MessageID
    0x01, 0x60, // CHOICE { ..., bindRequest BindRequest, ...
    0x09, 0x02, 0x01, // version INTEGER (1..127),
    0x03, 0x04, 0x00, (byte) 0xA3, 0x02, 0x04, 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<BindRequestDecorator> container = new LdapMessageContainer<BindRequestDecorator>(codec);
    // Decode the BindRequest PDU
    try {
        ldapDecoder.decode(stream, container);
    } catch (DecoderException de) {
        de.printStackTrace();
        fail(de.getMessage());
    }
    // Check the decoded BindRequest
    BindRequest bindRequest = container.getMessage();
    assertEquals(1, bindRequest.getMessageId());
    assertTrue(bindRequest.isVersion3());
    assertEquals("", bindRequest.getName());
    assertFalse(bindRequest.isSimple());
    assertEquals("", bindRequest.getSaslMechanism());
    assertEquals("", Strings.utf8ToString(bindRequest.getCredentials()));
    // Check the Control
    Map<String, Control> controls = bindRequest.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(bindRequest);
        // Check the length
        assertEquals(0x2D, 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) BindRequest(org.apache.directory.api.ldap.model.message.BindRequest) 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) BindRequestDecorator(org.apache.directory.api.ldap.codec.decorators.BindRequestDecorator) 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)

Example 72 with DecoderException

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

the class BindRequestTest method testDecodeBindRequestEmptyName.

/**
 * Test the decoding of a BindRequest with an empty name
 */
@Test
public void testDecodeBindRequestEmptyName() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x0C);
    stream.put(new byte[] { // LDAPMessage ::=SEQUENCE {
    0x30, // LDAPMessage ::=SEQUENCE {
    0x0A, 0x02, 0x01, // messageID MessageID
    0x01, 0x60, // CHOICE { ..., bindRequest BindRequest, ...
    0x05, 0x02, 0x01, // version INTEGER (1..127),
    0x03, 0x04, 0x00 });
    stream.flip();
    // Allocate a LdapMessage Container
    LdapMessageContainer<BindRequestDecorator> container = new LdapMessageContainer<BindRequestDecorator>(codec);
    // Decode a BindRequest 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) BindRequestDecorator(org.apache.directory.api.ldap.codec.decorators.BindRequestDecorator) 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 73 with DecoderException

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

the class BindRequestTest method testDecodeBindRequestEmptySimple.

/**
 * Test the decoding of a BindRequest with an empty simple
 */
@Test
public void testDecodeBindRequestEmptySimple() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x0E);
    stream.put(new byte[] { // LDAPMessage ::=SEQUENCE {
    0x30, // LDAPMessage ::=SEQUENCE {
    0x0C, 0x02, 0x01, // messageID MessageID
    0x01, 0x60, // CHOICE { ..., bindRequest BindRequest, ...
    0x07, 0x02, 0x01, // version INTEGER (1..127),
    0x03, 0x04, 0x00, (byte) 0x80, 0x00 });
    String decodedPdu = Strings.dumpBytes(stream.array());
    stream.flip();
    // Allocate a LdapMessage Container
    LdapMessageContainer<BindRequestDecorator> container = new LdapMessageContainer<BindRequestDecorator>(codec);
    // Decode the BindRequest PDU
    try {
        ldapDecoder.decode(stream, container);
    } catch (DecoderException de) {
        de.printStackTrace();
        fail(de.getMessage());
    }
    // Check the decoded BindRequest
    BindRequest bindRequest = container.getMessage();
    assertEquals(1, bindRequest.getMessageId());
    assertTrue(bindRequest.isVersion3());
    assertEquals("", bindRequest.getName());
    assertTrue(bindRequest.isSimple());
    assertEquals("", Strings.utf8ToString(bindRequest.getCredentials()));
    // Check the encoding
    try {
        ByteBuffer bb = encoder.encodeMessage(bindRequest);
        // 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) BindRequestDecorator(org.apache.directory.api.ldap.codec.decorators.BindRequestDecorator) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) BindRequest(org.apache.directory.api.ldap.model.message.BindRequest) ByteBuffer(java.nio.ByteBuffer) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Example 74 with DecoderException

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

the class BindRequestTest method testDecodeBindRequestBadVersion4.

/**
 * Test the decoding of a BindRequest with a bad version (4)
 */
@Test
public void testDecodeBindRequestBadVersion4() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x0A);
    stream.put(new byte[] { // LDAPMessage ::=SEQUENCE {
    0x30, // LDAPMessage ::=SEQUENCE {
    0x08, 0x02, 0x01, // messageID MessageID
    0x01, 0x60, // CHOICE { ..., bindRequest BindRequest, ...
    0x03, 0x02, 0x01, // version INTEGER (1..127),
    0x04 });
    stream.flip();
    // Allocate a LdapMessage Container
    LdapMessageContainer<BindRequestDecorator> container = new LdapMessageContainer<BindRequestDecorator>(codec);
    // Decode a BindRequest 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) BindRequestDecorator(org.apache.directory.api.ldap.codec.decorators.BindRequestDecorator) 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 75 with DecoderException

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

the class BindRequestTest method testDecodeBindRequestBadVersion0.

/**
 * Test the decoding of a BindRequest with a bad version (0)
 */
@Test
public void testDecodeBindRequestBadVersion0() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x0A);
    stream.put(new byte[] { // LDAPMessage ::=SEQUENCE {
    0x30, // LDAPMessage ::=SEQUENCE {
    0x08, 0x02, 0x01, // messageID MessageID
    0x01, 0x60, // CHOICE { ..., bindRequest BindRequest, ...
    0x03, 0x02, 0x01, // version INTEGER (1..127),
    0x00 });
    stream.flip();
    // Allocate a LdapMessage Container
    LdapMessageContainer<BindRequestDecorator> container = new LdapMessageContainer<BindRequestDecorator>(codec);
    // Decode a BindRequest 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) BindRequestDecorator(org.apache.directory.api.ldap.codec.decorators.BindRequestDecorator) 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)

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