use of org.apache.directory.api.ldap.model.message.ModifyResponse in project directory-ldap-api by apache.
the class ModifyResponseTest method testResponseWith1ReferralAndAnErrorMessage.
/**
* Test parsing of a response with a Referral and an Error Message
*/
@Test
public void testResponseWith1ReferralAndAnErrorMessage() {
Dsmlv2ResponseParser parser = null;
try {
parser = new Dsmlv2ResponseParser(getCodec());
parser.setInput(ModifyResponseTest.class.getResource("response_with_1_referral_and_error_message.xml").openStream(), "UTF-8");
parser.parse();
} catch (Exception e) {
fail(e.getMessage());
}
ModifyResponse modifyResponse = (ModifyResponse) parser.getBatchResponse().getCurrentResponse();
LdapResult ldapResult = modifyResponse.getLdapResult();
Collection<String> referrals = ldapResult.getReferral().getLdapUrls();
assertEquals(1, referrals.size());
try {
assertTrue(referrals.contains(new LdapUrl("ldap://www.apache.org/").toString()));
} catch (LdapURLEncodingException e) {
fail();
}
}
use of org.apache.directory.api.ldap.model.message.ModifyResponse in project directory-ldap-api by apache.
the class ModifyResponseTest 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(ModifyResponseTest.class.getResource("response_with_1_empty_referral.xml").openStream(), "UTF-8");
parser.parse();
} catch (Exception e) {
fail(e.getMessage());
}
ModifyResponse modifyResponse = (ModifyResponse) parser.getBatchResponse().getCurrentResponse();
LdapResult ldapResult = modifyResponse.getLdapResult();
Collection<String> referrals = ldapResult.getReferral().getLdapUrls();
assertEquals(0, referrals.size());
}
use of org.apache.directory.api.ldap.model.message.ModifyResponse in project directory-ldap-api by apache.
the class ModifyResponseTest 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(ModifyResponseTest.class.getResource("response_with_3_controls_without_value.xml").openStream(), "UTF-8");
parser.parse();
} catch (Exception e) {
fail(e.getMessage());
}
ModifyResponse modifyResponse = (ModifyResponse) parser.getBatchResponse().getCurrentResponse();
Map<String, Control> controls = modifyResponse.getControls();
assertEquals(3, modifyResponse.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());
}
use of org.apache.directory.api.ldap.model.message.ModifyResponse in project directory-ldap-api by apache.
the class BatchResponseTest method testResponseWith2ModifyResponse.
/**
* Test parsing of a Response with the 2 ModifyResponse
*/
@Test
public void testResponseWith2ModifyResponse() {
Dsmlv2ResponseParser parser = null;
try {
parser = new Dsmlv2ResponseParser(getCodec());
parser.setInput(BatchResponseTest.class.getResource("response_with_2_ModifyResponse.xml").openStream(), "UTF-8");
parser.parse();
} catch (Exception e) {
fail(e.getMessage());
}
BatchResponseDsml batchResponse = parser.getBatchResponse();
assertEquals(2, batchResponse.getResponses().size());
DsmlDecorator<? extends Response> response = batchResponse.getCurrentResponse();
if (response instanceof ModifyResponse) {
assertTrue(true);
} else {
fail();
}
}
use of org.apache.directory.api.ldap.model.message.ModifyResponse in project directory-ldap-api by apache.
the class BatchResponseTest method testResponseWith1ModifyResponse.
/**
* Test parsing of a Response with the 1 ModifyResponse
*/
@Test
public void testResponseWith1ModifyResponse() {
Dsmlv2ResponseParser parser = null;
try {
parser = new Dsmlv2ResponseParser(getCodec());
parser.setInput(BatchResponseTest.class.getResource("response_with_1_ModifyResponse.xml").openStream(), "UTF-8");
parser.parse();
} catch (Exception e) {
fail(e.getMessage());
}
BatchResponseDsml batchResponse = parser.getBatchResponse();
assertEquals(1, batchResponse.getResponses().size());
DsmlDecorator<? extends Response> response = batchResponse.getCurrentResponse();
if (response instanceof ModifyResponse) {
assertTrue(true);
} else {
fail();
}
}
Aggregations