use of org.apache.directory.api.ldap.model.message.LdapResult in project directory-ldap-api by apache.
the class CompareResponseTest 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(CompareResponseTest.class.getResource("response_with_2_referrals.xml").openStream(), "UTF-8");
parser.parse();
} catch (Exception e) {
fail(e.getMessage());
}
CompareResponse compareResponse = (CompareResponse) parser.getBatchResponse().getCurrentResponse();
LdapResult ldapResult = compareResponse.getLdapResult();
Collection<String> referrals = ldapResult.getReferral().getLdapUrls();
assertEquals(2, referrals.size());
try {
assertTrue(referrals.contains(new LdapUrl("ldap://www.apache.org/").toString()));
} catch (LdapURLEncodingException e) {
fail();
}
try {
assertTrue(referrals.contains(new LdapUrl("ldap://www.apple.com/").toString()));
} catch (LdapURLEncodingException e) {
fail();
}
}
use of org.apache.directory.api.ldap.model.message.LdapResult in project directory-ldap-api by apache.
the class CompareResponseTest method testResponseWithEmptyErrorMessage.
/**
* Test parsing of a response with empty Error Message
*/
@Test
public void testResponseWithEmptyErrorMessage() {
Dsmlv2ResponseParser parser = null;
try {
parser = new Dsmlv2ResponseParser(getCodec());
parser.setInput(CompareResponseTest.class.getResource("response_with_empty_error_message.xml").openStream(), "UTF-8");
parser.parse();
} catch (Exception e) {
fail(e.getMessage());
}
CompareResponse compareResponse = (CompareResponse) parser.getBatchResponse().getCurrentResponse();
LdapResult ldapResult = compareResponse.getLdapResult();
assertNull(ldapResult.getDiagnosticMessage());
}
use of org.apache.directory.api.ldap.model.message.LdapResult in project directory-ldap-api by apache.
the class DelResponseTest method testResponseWithErrorMessage.
/**
* Test parsing of a response with Error Message
*/
@Test
public void testResponseWithErrorMessage() {
Dsmlv2ResponseParser parser = null;
try {
parser = new Dsmlv2ResponseParser(getCodec());
parser.setInput(DelResponseTest.class.getResource("response_with_error_message.xml").openStream(), "UTF-8");
parser.parse();
} catch (Exception e) {
fail(e.getMessage());
}
DeleteResponse delResponse = (DeleteResponse) parser.getBatchResponse().getCurrentResponse();
LdapResult ldapResult = delResponse.getLdapResult();
assertEquals("Unrecognized extended operation EXTENSION_OID: 1.2.6.1.4.1.18060.1.1.1.100.2", ldapResult.getDiagnosticMessage());
}
use of org.apache.directory.api.ldap.model.message.LdapResult in project directory-ldap-api by apache.
the class DelResponseTest method testResponseWith1EmptyReferral.
/**
* Test parsing of a response with an empty Referral
*/
@Test
public void testResponseWith1EmptyReferral() {
Dsmlv2ResponseParser parser = null;
try {
parser = new Dsmlv2ResponseParser(getCodec());
parser.setInput(DelResponseTest.class.getResource("response_with_1_empty_referral.xml").openStream(), "UTF-8");
parser.parse();
} catch (Exception e) {
fail(e.getMessage());
}
DeleteResponse delResponse = (DeleteResponse) parser.getBatchResponse().getCurrentResponse();
LdapResult ldapResult = delResponse.getLdapResult();
Collection<String> referrals = ldapResult.getReferral().getLdapUrls();
assertEquals(0, referrals.size());
}
use of org.apache.directory.api.ldap.model.message.LdapResult in project directory-ldap-api by apache.
the class DelResponseTest method testResponseWithResultCode.
/**
* Test parsing of a response with Result Code
*/
@Test
public void testResponseWithResultCode() {
Dsmlv2ResponseParser parser = null;
try {
parser = new Dsmlv2ResponseParser(getCodec());
parser.setInput(DelResponseTest.class.getResource("response_with_result_code.xml").openStream(), "UTF-8");
parser.parse();
} catch (Exception e) {
fail(e.getMessage());
}
DeleteResponse delResponse = (DeleteResponse) parser.getBatchResponse().getCurrentResponse();
LdapResult ldapResult = delResponse.getLdapResult();
assertEquals(ResultCodeEnum.PROTOCOL_ERROR, ldapResult.getResultCode());
}
Aggregations