Search in sources :

Example 1 with ModifyDnRequestDecorator

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

the class ModifyDNRequestTest method testDecodeModifyDNRequestWithoutSuperiorWithControls.

/**
 * Test the decoding of a ModifyDNRequest without a superior with controls
 */
@Test
public void testDecodeModifyDNRequestWithoutSuperiorWithControls() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x5A);
    stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
    0x58, 0x02, 0x01, // messageID MessageID
    0x01, 0x6C, // CHOICE { ..., modifyDNRequest ModifyDNRequest,
    0x36, // 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', // newrdn RelativeLDAPDN,
    0x04, 0x0F, 'c', 'n', '=', 't', 'e', 's', 't', 'D', 'N', 'M', 'o', 'd', 'i', 'f', 'y', 0x01, 0x01, // deleteoldrdn BOOLEAN,
    0x00, // newSuperior [0] LDAPDN OPTIONAL }
    (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 ModifyRequest Container
    LdapMessageContainer<ModifyDnRequestDecorator> ldapMessageContainer = new LdapMessageContainer<ModifyDnRequestDecorator>(codec);
    try {
        ldapDecoder.decode(stream, ldapMessageContainer);
    } catch (DecoderException de) {
        de.printStackTrace();
        fail(de.getMessage());
    }
    ModifyDnRequest modifyDnRequest = ldapMessageContainer.getMessage();
    assertEquals(1, modifyDnRequest.getMessageId());
    assertEquals("cn=testModify,ou=users,ou=system", modifyDnRequest.getName().toString());
    assertEquals(false, modifyDnRequest.getDeleteOldRdn());
    assertEquals("cn=testDNModify", modifyDnRequest.getNewRdn().toString());
    // Check the Control
    Map<String, Control> controls = modifyDnRequest.getControls();
    assertEquals(1, controls.size());
    assertTrue(modifyDnRequest.hasControl("2.16.840.1.113730.3.4.2"));
    @SuppressWarnings("unchecked") CodecControl<Control> control = (org.apache.directory.api.ldap.codec.api.CodecControl<Control>) modifyDnRequest.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(modifyDnRequest);
        // Check the length
        assertEquals(0x5A, 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) ModifyDnRequest(org.apache.directory.api.ldap.model.message.ModifyDnRequest) 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) ModifyDnRequestDecorator(org.apache.directory.api.ldap.codec.decorators.ModifyDnRequestDecorator) CodecControl(org.apache.directory.api.ldap.codec.api.CodecControl) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Example 2 with ModifyDnRequestDecorator

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

the class ModifyDNRequestTest method testDecodeModifyDNRequestEmptyBody.

// Defensive tests
/**
 * Test the decoding of a ModifyDNRequest with an empty body
 */
@Test
public void testDecodeModifyDNRequestEmptyBody() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x07);
    stream.put(new byte[] { // LDAPMessage ::= SEQUENCE {
    0x30, // LDAPMessage ::= SEQUENCE {
    0x05, 0x02, 0x01, // messageID MessageID
    0x01, 0x6C, // CHOICE { ..., modifyDNRequest ModifyDNRequest,
    0x00 // ...
    });
    stream.flip();
    // Allocate a LdapMessage Container
    LdapMessageContainer<ModifyDnRequestDecorator> ldapMessageContainer = new LdapMessageContainer<ModifyDnRequestDecorator>(codec);
    // Decode a ModifyDNRequest PDU
    try {
        ldapDecoder.decode(stream, ldapMessageContainer);
        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) ModifyDnRequestDecorator(org.apache.directory.api.ldap.codec.decorators.ModifyDnRequestDecorator) ByteBuffer(java.nio.ByteBuffer) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Example 3 with ModifyDnRequestDecorator

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

the class ModifyDNRequestTest method testDecodeModifyDNRequestEmptyDeleteOldRdnn.

/**
 * Test the decoding of a ModifyDNRequest with an empty deleteOldRdn
 */
@Test
public void testDecodeModifyDNRequestEmptyDeleteOldRdnn() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x3C);
    stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
    0x3A, 0x02, 0x01, // messageID MessageID
    0x01, 0x6C, // CHOICE { ..., modifyDNRequest ModifyDNRequest,
    0x35, // ...
    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', 0x04, 0x0F, 'c', 'n', '=', 't', 'e', 's', 't', 'D', 'N', 'M', 'o', 'd', 'i', 'f', 'y', 0x01, // deleteoldrdn BOOLEAN
    0x00 });
    stream.flip();
    // Allocate a LdapMessage Container
    LdapMessageContainer<ModifyDnRequestDecorator> ldapMessageContainer = new LdapMessageContainer<ModifyDnRequestDecorator>(codec);
    // Decode a ModifyDNRequest PDU
    try {
        ldapDecoder.decode(stream, ldapMessageContainer);
        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) ModifyDnRequestDecorator(org.apache.directory.api.ldap.codec.decorators.ModifyDnRequestDecorator) ByteBuffer(java.nio.ByteBuffer) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Example 4 with ModifyDnRequestDecorator

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

the class ModifyDNRequestTest method testDecodeModifyDNRequestBadDN.

/**
 * Test the decoding of a bad Dn ModifyDNRequest
 */
@Test
public void testDecodeModifyDNRequestBadDN() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x48);
    stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
    0x46, 0x02, 0x01, // messageID MessageID
    0x01, 0x6C, // CHOICE { ..., modifyDNRequest ModifyDNRequest,
    0x41, // 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', // newrdn RelativeLDAPDN,
    0x04, 0x0F, 'c', 'n', '=', 't', 'e', 's', 't', 'D', 'N', 'M', 'o', 'd', 'i', 'f', 'y', 0x01, 0x01, // deleteoldrdn BOOLEAN,
    0x00, // newSuperior [0] LDAPDN OPTIONAL }
    (byte) 0x80, 0x09, 'o', 'u', '=', 's', 'y', 's', 't', 'e', 'm' });
    stream.flip();
    // Allocate a ModifyRequest Container
    LdapMessageContainer<ModifyDnRequestDecorator> ldapMessageContainer = new LdapMessageContainer<ModifyDnRequestDecorator>(codec);
    try {
        ldapDecoder.decode(stream, ldapMessageContainer);
    } catch (DecoderException de) {
        assertTrue(de instanceof ResponseCarryingException);
        Message response = ((ResponseCarryingException) de).getResponse();
        assertTrue(response instanceof ModifyDnResponseImpl);
        assertEquals(ResultCodeEnum.INVALID_DN_SYNTAX, ((ModifyDnResponseImpl) response).getLdapResult().getResultCode());
        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) ResponseCarryingException(org.apache.directory.api.ldap.codec.api.ResponseCarryingException) Message(org.apache.directory.api.ldap.model.message.Message) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) ModifyDnResponseImpl(org.apache.directory.api.ldap.model.message.ModifyDnResponseImpl) ModifyDnRequestDecorator(org.apache.directory.api.ldap.codec.decorators.ModifyDnRequestDecorator) ByteBuffer(java.nio.ByteBuffer) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Example 5 with ModifyDnRequestDecorator

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

the class ModifyDNRequestTest method testDecodeModifyDNRequestWithoutSuperior.

/**
 * Test the decoding of a ModifyDNRequest without a superior
 */
@Test
public void testDecodeModifyDNRequestWithoutSuperior() {
    Asn1Decoder ldapDecoder = new Asn1Decoder();
    ByteBuffer stream = ByteBuffer.allocate(0x3D);
    stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
    0x3B, 0x02, 0x01, // messageID MessageID
    0x01, 0x6C, // CHOICE { ..., modifyDNRequest ModifyDNRequest,
    0x36, // 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', // newrdn RelativeLDAPDN,
    0x04, 0x0F, 'c', 'n', '=', 't', 'e', 's', 't', 'D', 'N', 'M', 'o', 'd', 'i', 'f', 'y', 0x01, 0x01, // deleteoldrdn BOOLEAN,
    0x00 // newSuperior [0] LDAPDN OPTIONAL }
    });
    String decodedPdu = Strings.dumpBytes(stream.array());
    stream.flip();
    // Allocate a ModifyRequest Container
    LdapMessageContainer<ModifyDnRequestDecorator> ldapMessageContainer = new LdapMessageContainer<ModifyDnRequestDecorator>(codec);
    try {
        ldapDecoder.decode(stream, ldapMessageContainer);
    } catch (DecoderException de) {
        de.printStackTrace();
        fail(de.getMessage());
    }
    ModifyDnRequest modifyDnRequest = ldapMessageContainer.getMessage();
    assertEquals(1, modifyDnRequest.getMessageId());
    assertEquals("cn=testModify,ou=users,ou=system", modifyDnRequest.getName().toString());
    assertEquals(false, modifyDnRequest.getDeleteOldRdn());
    assertEquals("cn=testDNModify", modifyDnRequest.getNewRdn().toString());
    // Check the encoding
    try {
        ByteBuffer bb = encoder.encodeMessage(modifyDnRequest);
        // Check the length
        assertEquals(0x3D, 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) Asn1Decoder(org.apache.directory.api.asn1.ber.Asn1Decoder) ModifyDnRequestDecorator(org.apache.directory.api.ldap.codec.decorators.ModifyDnRequestDecorator) ModifyDnRequest(org.apache.directory.api.ldap.model.message.ModifyDnRequest) ByteBuffer(java.nio.ByteBuffer) Test(org.junit.Test) AbstractCodecServiceTest(org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)

Aggregations

ModifyDnRequestDecorator (org.apache.directory.api.ldap.codec.decorators.ModifyDnRequestDecorator)13 ByteBuffer (java.nio.ByteBuffer)11 DecoderException (org.apache.directory.api.asn1.DecoderException)11 Asn1Decoder (org.apache.directory.api.asn1.ber.Asn1Decoder)11 LdapMessageContainer (org.apache.directory.api.ldap.codec.api.LdapMessageContainer)11 AbstractCodecServiceTest (org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)11 Test (org.junit.Test)11 ModifyDnRequest (org.apache.directory.api.ldap.model.message.ModifyDnRequest)6 EncoderException (org.apache.directory.api.asn1.EncoderException)4 ResponseCarryingException (org.apache.directory.api.ldap.codec.api.ResponseCarryingException)3 Control (org.apache.directory.api.ldap.model.message.Control)3 CodecControl (org.apache.directory.api.ldap.codec.api.CodecControl)2 Message (org.apache.directory.api.ldap.model.message.Message)2 ModifyDnResponseImpl (org.apache.directory.api.ldap.model.message.ModifyDnResponseImpl)2 AbandonRequestDecorator (org.apache.directory.api.ldap.codec.decorators.AbandonRequestDecorator)1 AddRequestDecorator (org.apache.directory.api.ldap.codec.decorators.AddRequestDecorator)1 AddResponseDecorator (org.apache.directory.api.ldap.codec.decorators.AddResponseDecorator)1 BindRequestDecorator (org.apache.directory.api.ldap.codec.decorators.BindRequestDecorator)1 BindResponseDecorator (org.apache.directory.api.ldap.codec.decorators.BindResponseDecorator)1 CompareRequestDecorator (org.apache.directory.api.ldap.codec.decorators.CompareRequestDecorator)1