use of org.apache.directory.api.dsmlv2.response.BatchResponseDsml 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();
}
}
use of org.apache.directory.api.dsmlv2.response.BatchResponseDsml in project directory-ldap-api by apache.
the class BatchResponseTest method testResponseWith1AddResponse.
/**
* Test parsing of a Response with the 1 AddResponse
*/
@Test
public void testResponseWith1AddResponse() {
Dsmlv2ResponseParser parser = null;
try {
parser = new Dsmlv2ResponseParser(getCodec());
parser.setInput(BatchResponseTest.class.getResource("response_with_1_AddResponse.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 AddResponse) {
assertTrue(true);
} else {
fail();
}
}
use of org.apache.directory.api.dsmlv2.response.BatchResponseDsml in project directory-ldap-api by apache.
the class BatchResponseTest method testResponseWith2ErrorResponse.
/**
* Test parsing of a Response with the 2 ErrorResponse
*/
@Test
public void testResponseWith2ErrorResponse() {
Dsmlv2ResponseParser parser = null;
try {
parser = new Dsmlv2ResponseParser(getCodec());
parser.setInput(BatchResponseTest.class.getResource("response_with_2_ErrorResponse.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 ErrorResponse) {
assertTrue(true);
} else {
fail();
}
}
use of org.apache.directory.api.dsmlv2.response.BatchResponseDsml in project directory-ldap-api by apache.
the class BatchResponseTest method testResponseWith2DelResponse.
/**
* Test parsing of a Response with the 2 DelResponse
*/
@Test
public void testResponseWith2DelResponse() {
Dsmlv2ResponseParser parser = null;
try {
parser = new Dsmlv2ResponseParser(getCodec());
parser.setInput(BatchResponseTest.class.getResource("response_with_2_DelResponse.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 DeleteResponse) {
assertTrue(true);
} else {
fail();
}
}
use of org.apache.directory.api.dsmlv2.response.BatchResponseDsml in project directory-ldap-api by apache.
the class BatchResponseTest method testResponseWith1ModDNResponse.
/**
* Test parsing of a Response with the 1 ModDNResponse
*/
@Test
public void testResponseWith1ModDNResponse() {
Dsmlv2ResponseParser parser = null;
try {
parser = new Dsmlv2ResponseParser(getCodec());
parser.setInput(BatchResponseTest.class.getResource("response_with_1_ModDNResponse.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 ModifyDnResponse) {
assertTrue(true);
} else {
fail();
}
}
Aggregations