Search in sources :

Example 41 with SearchResponse

use of org.apache.directory.api.dsmlv2.response.SearchResponse in project directory-ldap-api by apache.

the class SearchResultReferenceTest method testResponseWith1EmptyRef.

/**
 * Test parsing of a Response with 1 Ref
 */
@Test
public void testResponseWith1EmptyRef() {
    Dsmlv2ResponseParser parser = null;
    try {
        parser = new Dsmlv2ResponseParser(getCodec());
        parser.setInput(SearchResultReferenceTest.class.getResource("response_with_1_empty_ref.xml").openStream(), "UTF-8");
        parser.parse();
    } catch (Exception e) {
        fail(e.getMessage());
    }
    SearchResultReference searchResultReference = ((SearchResponse) parser.getBatchResponse().getCurrentResponse().getDecorated()).getCurrentSearchResultReference();
    Collection<String> references = searchResultReference.getReferral().getLdapUrls();
    assertEquals(0, references.size());
}
Also used : Dsmlv2ResponseParser(org.apache.directory.api.dsmlv2.Dsmlv2ResponseParser) SearchResultReference(org.apache.directory.api.ldap.model.message.SearchResultReference) LdapURLEncodingException(org.apache.directory.api.ldap.model.exception.LdapURLEncodingException) SearchResponse(org.apache.directory.api.dsmlv2.response.SearchResponse) Test(org.junit.Test) AbstractResponseTest(org.apache.directory.api.dsmlv2.AbstractResponseTest)

Example 42 with SearchResponse

use of org.apache.directory.api.dsmlv2.response.SearchResponse in project directory-ldap-api by apache.

the class SearchResultReferenceTest 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(SearchResultReferenceTest.class.getResource("response_with_3_controls_without_value.xml").openStream(), "UTF-8");
        parser.parse();
    } catch (Exception e) {
        fail(e.getMessage());
    }
    SearchResultReference searchResultReference = ((SearchResponse) parser.getBatchResponse().getCurrentResponse().getDecorated()).getCurrentSearchResultReference();
    Map<String, Control> controls = searchResultReference.getControls();
    assertEquals(3, searchResultReference.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) SearchResultReference(org.apache.directory.api.ldap.model.message.SearchResultReference) LdapURLEncodingException(org.apache.directory.api.ldap.model.exception.LdapURLEncodingException) SearchResponse(org.apache.directory.api.dsmlv2.response.SearchResponse) Test(org.junit.Test) AbstractResponseTest(org.apache.directory.api.dsmlv2.AbstractResponseTest)

Example 43 with SearchResponse

use of org.apache.directory.api.dsmlv2.response.SearchResponse in project directory-ldap-api by apache.

the class SearchResultReferenceTest method testResponseWith1Ref.

/**
 * Test parsing of a Response with 1 Ref
 */
@Test
public void testResponseWith1Ref() {
    Dsmlv2ResponseParser parser = null;
    try {
        parser = new Dsmlv2ResponseParser(getCodec());
        parser.setInput(SearchResultReferenceTest.class.getResource("response_with_1_ref.xml").openStream(), "UTF-8");
        parser.parse();
    } catch (Exception e) {
        fail(e.getMessage());
    }
    SearchResultReference searchResultReference = ((SearchResponse) parser.getBatchResponse().getCurrentResponse().getDecorated()).getCurrentSearchResultReference();
    Collection<String> references = searchResultReference.getReferral().getLdapUrls();
    assertEquals(1, references.size());
    try {
        assertTrue(references.contains(new LdapUrl("ldap://localhost").toString()));
    } catch (LdapURLEncodingException e) {
        fail();
    }
}
Also used : LdapUrl(org.apache.directory.api.ldap.model.url.LdapUrl) LdapURLEncodingException(org.apache.directory.api.ldap.model.exception.LdapURLEncodingException) Dsmlv2ResponseParser(org.apache.directory.api.dsmlv2.Dsmlv2ResponseParser) SearchResultReference(org.apache.directory.api.ldap.model.message.SearchResultReference) LdapURLEncodingException(org.apache.directory.api.ldap.model.exception.LdapURLEncodingException) SearchResponse(org.apache.directory.api.dsmlv2.response.SearchResponse) Test(org.junit.Test) AbstractResponseTest(org.apache.directory.api.dsmlv2.AbstractResponseTest)

Example 44 with SearchResponse

use of org.apache.directory.api.dsmlv2.response.SearchResponse in project directory-ldap-api by apache.

the class SearchResultReferenceTest method testResponseWith2Ref.

/**
 * Test parsing of a Response with 2 Ref
 */
@Test
public void testResponseWith2Ref() {
    Dsmlv2ResponseParser parser = null;
    try {
        parser = new Dsmlv2ResponseParser(getCodec());
        parser.setInput(SearchResultReferenceTest.class.getResource("response_with_2_ref.xml").openStream(), "UTF-8");
        parser.parse();
    } catch (Exception e) {
        fail(e.getMessage());
    }
    SearchResultReference searchResultReference = ((SearchResponse) parser.getBatchResponse().getCurrentResponse().getDecorated()).getCurrentSearchResultReference();
    Collection<String> references = searchResultReference.getReferral().getLdapUrls();
    assertEquals(2, references.size());
    try {
        assertTrue(references.contains(new LdapUrl("ldap://localhost").toString()));
    } catch (LdapURLEncodingException e) {
        fail();
    }
    try {
        assertTrue(references.contains(new LdapUrl("ldap://www.apache.org").toString()));
    } catch (LdapURLEncodingException e) {
        fail();
    }
}
Also used : LdapUrl(org.apache.directory.api.ldap.model.url.LdapUrl) LdapURLEncodingException(org.apache.directory.api.ldap.model.exception.LdapURLEncodingException) Dsmlv2ResponseParser(org.apache.directory.api.dsmlv2.Dsmlv2ResponseParser) SearchResultReference(org.apache.directory.api.ldap.model.message.SearchResultReference) LdapURLEncodingException(org.apache.directory.api.ldap.model.exception.LdapURLEncodingException) SearchResponse(org.apache.directory.api.dsmlv2.response.SearchResponse) Test(org.junit.Test) AbstractResponseTest(org.apache.directory.api.dsmlv2.AbstractResponseTest)

Example 45 with SearchResponse

use of org.apache.directory.api.dsmlv2.response.SearchResponse in project directory-ldap-api by apache.

the class SearchResultReferenceTest method testResponseWith1ControlEmptyValue.

/**
 * Test parsing of a response with a (optional) Control element with empty value
 */
@Test
public void testResponseWith1ControlEmptyValue() {
    Dsmlv2ResponseParser parser = null;
    try {
        parser = new Dsmlv2ResponseParser(getCodec());
        parser.setInput(SearchResultReferenceTest.class.getResource("response_with_1_control_empty_value.xml").openStream(), "UTF-8");
        parser.parse();
    } catch (Exception e) {
        fail(e.getMessage());
    }
    SearchResultReference searchResultReference = ((SearchResponse) parser.getBatchResponse().getCurrentResponse().getDecorated()).getCurrentSearchResultReference();
    Map<String, Control> controls = searchResultReference.getControls();
    assertEquals(1, searchResultReference.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());
    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) SearchResultReference(org.apache.directory.api.ldap.model.message.SearchResultReference) LdapURLEncodingException(org.apache.directory.api.ldap.model.exception.LdapURLEncodingException) SearchResponse(org.apache.directory.api.dsmlv2.response.SearchResponse) Test(org.junit.Test) AbstractResponseTest(org.apache.directory.api.dsmlv2.AbstractResponseTest)

Aggregations

AbstractResponseTest (org.apache.directory.api.dsmlv2.AbstractResponseTest)44 Dsmlv2ResponseParser (org.apache.directory.api.dsmlv2.Dsmlv2ResponseParser)44 SearchResponse (org.apache.directory.api.dsmlv2.response.SearchResponse)44 Test (org.junit.Test)44 LdapURLEncodingException (org.apache.directory.api.ldap.model.exception.LdapURLEncodingException)21 SearchResultDone (org.apache.directory.api.ldap.model.message.SearchResultDone)14 SearchResultEntry (org.apache.directory.api.ldap.model.message.SearchResultEntry)13 DsmlControl (org.apache.directory.api.dsmlv2.DsmlControl)12 Control (org.apache.directory.api.ldap.model.message.Control)12 SearchResultReference (org.apache.directory.api.ldap.model.message.SearchResultReference)9 LdapResult (org.apache.directory.api.ldap.model.message.LdapResult)8 Attribute (org.apache.directory.api.ldap.model.entry.Attribute)6 Entry (org.apache.directory.api.ldap.model.entry.Entry)6 Value (org.apache.directory.api.ldap.model.entry.Value)5 LdapUrl (org.apache.directory.api.ldap.model.url.LdapUrl)5 BatchResponseDsml (org.apache.directory.api.dsmlv2.response.BatchResponseDsml)2 SearchResponseDsml (org.apache.directory.api.dsmlv2.response.SearchResponseDsml)2 AddResponseDsml (org.apache.directory.api.dsmlv2.response.AddResponseDsml)1 BindResponseDsml (org.apache.directory.api.dsmlv2.response.BindResponseDsml)1 CompareResponseDsml (org.apache.directory.api.dsmlv2.response.CompareResponseDsml)1