Search in sources :

Example 21 with AddResponse

use of org.apache.directory.api.ldap.model.message.AddResponse in project directory-ldap-api by apache.

the class AddResponseTest method testResponseWithMatchedDNAttribute.

/**
 * Test parsing of a response with MatchedDN attribute
 */
@Test
public void testResponseWithMatchedDNAttribute() {
    Dsmlv2ResponseParser parser = null;
    try {
        parser = new Dsmlv2ResponseParser(getCodec());
        parser.setInput(AddResponseTest.class.getResource("response_with_matchedDN_attribute.xml").openStream(), "UTF-8");
        parser.parse();
    } catch (Exception e) {
        fail(e.getMessage());
    }
    AddResponse addResponse = (AddResponse) parser.getBatchResponse().getCurrentResponse();
    LdapResult ldapResult = addResponse.getLdapResult();
    assertTrue(ldapResult.getMatchedDn().equals("cn=Bob Rush,ou=Dev,dc=Example,dc=COM"));
}
Also used : Dsmlv2ResponseParser(org.apache.directory.api.dsmlv2.Dsmlv2ResponseParser) LdapResult(org.apache.directory.api.ldap.model.message.LdapResult) AddResponse(org.apache.directory.api.ldap.model.message.AddResponse) LdapURLEncodingException(org.apache.directory.api.ldap.model.exception.LdapURLEncodingException) Test(org.junit.Test) AbstractResponseTest(org.apache.directory.api.dsmlv2.AbstractResponseTest)

Example 22 with AddResponse

use of org.apache.directory.api.ldap.model.message.AddResponse in project directory-ldap-api by apache.

the class AddResponseTest method testResponseWith2Referrals.

/**
 * Test parsing of a response with 2 Referral elements
 */
@Test
public void testResponseWith2Referrals() {
    Dsmlv2ResponseParser parser = null;
    try {
        parser = new Dsmlv2ResponseParser(getCodec());
        parser.setInput(AddResponseTest.class.getResource("response_with_2_referrals.xml").openStream(), "UTF-8");
        parser.parse();
    } catch (Exception e) {
        fail(e.getMessage());
    }
    AddResponse addResponse = (AddResponse) parser.getBatchResponse().getCurrentResponse();
    LdapResult ldapResult = addResponse.getLdapResult();
    Collection<String> referrals = ldapResult.getReferral().getLdapUrls();
    assertEquals(2, referrals.size());
    assertTrue(referrals.contains("ldap://www.apache.org/"));
    assertTrue(referrals.contains("ldap://www.apple.com/"));
}
Also used : Dsmlv2ResponseParser(org.apache.directory.api.dsmlv2.Dsmlv2ResponseParser) LdapResult(org.apache.directory.api.ldap.model.message.LdapResult) AddResponse(org.apache.directory.api.ldap.model.message.AddResponse) LdapURLEncodingException(org.apache.directory.api.ldap.model.exception.LdapURLEncodingException) Test(org.junit.Test) AbstractResponseTest(org.apache.directory.api.dsmlv2.AbstractResponseTest)

Example 23 with AddResponse

use of org.apache.directory.api.ldap.model.message.AddResponse in project directory-ldap-api by apache.

the class AddResponseTest method testResponseWith2Controls.

/**
 * Test parsing of a response with 2 (optional) Control elements
 */
@Test
public void testResponseWith2Controls() {
    Dsmlv2ResponseParser parser = null;
    try {
        parser = new Dsmlv2ResponseParser(getCodec());
        parser.setInput(AddResponseTest.class.getResource("response_with_2_controls.xml").openStream(), "UTF-8");
        parser.parse();
    } catch (Exception e) {
        fail(e.getMessage());
    }
    AddResponse addResponse = (AddResponse) parser.getBatchResponse().getCurrentResponse();
    Map<String, Control> controls = addResponse.getControls();
    assertEquals(2, addResponse.getControls().size());
    Control control = controls.get("1.2.840.113556.1.4.789");
    assertNotNull(control);
    assertFalse(control.isCritical());
    assertEquals("1.2.840.113556.1.4.789", control.getOid());
    assertEquals("Some other text", Strings.utf8ToString(((DsmlControl<?>) control).getValue()));
}
Also used : DsmlControl(org.apache.directory.api.dsmlv2.DsmlControl) Dsmlv2ResponseParser(org.apache.directory.api.dsmlv2.Dsmlv2ResponseParser) DsmlControl(org.apache.directory.api.dsmlv2.DsmlControl) Control(org.apache.directory.api.ldap.model.message.Control) AddResponse(org.apache.directory.api.ldap.model.message.AddResponse) LdapURLEncodingException(org.apache.directory.api.ldap.model.exception.LdapURLEncodingException) Test(org.junit.Test) AbstractResponseTest(org.apache.directory.api.dsmlv2.AbstractResponseTest)

Example 24 with AddResponse

use of org.apache.directory.api.ldap.model.message.AddResponse in project directory-ldap-api by apache.

the class AddResponseTest method testResponseWith1Control.

/**
 * Test parsing of a response with a (optional) Control element
 */
@Test
public void testResponseWith1Control() {
    Dsmlv2ResponseParser parser = null;
    try {
        parser = new Dsmlv2ResponseParser(getCodec());
        parser.setInput(AddResponseTest.class.getResource("response_with_1_control.xml").openStream(), "UTF-8");
        parser.parse();
    } catch (Exception e) {
        fail(e.getMessage());
    }
    AddResponse addResponse = (AddResponse) parser.getBatchResponse().getCurrentResponse();
    Map<String, Control> controls = addResponse.getControls();
    assertEquals(1, addResponse.getControls().size());
    Control control = controls.get("1.2.840.113556.1.4.643");
    assertNotNull(control);
    assertTrue(control.isCritical());
    assertEquals("1.2.840.113556.1.4.643", control.getOid());
    assertEquals("Some text", Strings.utf8ToString(((DsmlControl<?>) control).getValue()));
}
Also used : DsmlControl(org.apache.directory.api.dsmlv2.DsmlControl) Dsmlv2ResponseParser(org.apache.directory.api.dsmlv2.Dsmlv2ResponseParser) DsmlControl(org.apache.directory.api.dsmlv2.DsmlControl) Control(org.apache.directory.api.ldap.model.message.Control) AddResponse(org.apache.directory.api.ldap.model.message.AddResponse) LdapURLEncodingException(org.apache.directory.api.ldap.model.exception.LdapURLEncodingException) Test(org.junit.Test) AbstractResponseTest(org.apache.directory.api.dsmlv2.AbstractResponseTest)

Example 25 with AddResponse

use of org.apache.directory.api.ldap.model.message.AddResponse in project directory-ldap-api by apache.

the class AddResponseTest method testResponseWith3ControlsWithoutValue.

/**
 * Test parsing of a response with 3 (optional) Control elements without value
 */
@Test
public void testResponseWith3ControlsWithoutValue() {
    Dsmlv2ResponseParser parser = null;
    try {
        parser = new Dsmlv2ResponseParser(getCodec());
        parser.setInput(AddResponseTest.class.getResource("response_with_3_controls_without_value.xml").openStream(), "UTF-8");
        parser.parse();
    } catch (Exception e) {
        fail(e.getMessage());
    }
    AddResponse addResponse = (AddResponse) parser.getBatchResponse().getCurrentResponse();
    Map<String, Control> controls = addResponse.getControls();
    assertEquals(3, addResponse.getControls().size());
    Control control = controls.get("1.2.840.113556.1.4.456");
    assertNotNull(control);
    assertTrue(control.isCritical());
    assertEquals("1.2.840.113556.1.4.456", control.getOid());
    assertFalse(((DsmlControl<?>) control).hasValue());
}
Also used : Dsmlv2ResponseParser(org.apache.directory.api.dsmlv2.Dsmlv2ResponseParser) DsmlControl(org.apache.directory.api.dsmlv2.DsmlControl) Control(org.apache.directory.api.ldap.model.message.Control) AddResponse(org.apache.directory.api.ldap.model.message.AddResponse) LdapURLEncodingException(org.apache.directory.api.ldap.model.exception.LdapURLEncodingException) Test(org.junit.Test) AbstractResponseTest(org.apache.directory.api.dsmlv2.AbstractResponseTest)

Aggregations

AddResponse (org.apache.directory.api.ldap.model.message.AddResponse)28 Test (org.junit.Test)21 AbstractResponseTest (org.apache.directory.api.dsmlv2.AbstractResponseTest)15 Dsmlv2ResponseParser (org.apache.directory.api.dsmlv2.Dsmlv2ResponseParser)15 LdapURLEncodingException (org.apache.directory.api.ldap.model.exception.LdapURLEncodingException)13 LdapResult (org.apache.directory.api.ldap.model.message.LdapResult)8 DecoderException (org.apache.directory.api.asn1.DecoderException)7 AddResponseDecorator (org.apache.directory.api.ldap.codec.decorators.AddResponseDecorator)7 ByteBuffer (java.nio.ByteBuffer)6 EncoderException (org.apache.directory.api.asn1.EncoderException)6 Asn1Decoder (org.apache.directory.api.asn1.ber.Asn1Decoder)6 LdapMessageContainer (org.apache.directory.api.ldap.codec.api.LdapMessageContainer)6 AbstractCodecServiceTest (org.apache.directory.api.ldap.codec.osgi.AbstractCodecServiceTest)6 Control (org.apache.directory.api.ldap.model.message.Control)6 DsmlControl (org.apache.directory.api.dsmlv2.DsmlControl)4 AddRequest (org.apache.directory.api.ldap.model.message.AddRequest)3 BindResponse (org.apache.directory.api.ldap.model.message.BindResponse)3 BatchResponseDsml (org.apache.directory.api.dsmlv2.response.BatchResponseDsml)2 DefaultEntry (org.apache.directory.api.ldap.model.entry.DefaultEntry)2 LdapException (org.apache.directory.api.ldap.model.exception.LdapException)2