use of org.apache.directory.api.ldap.model.message.DeleteResponse in project directory-ldap-api by apache.
the class DelResponseTest method testDecodeDelResponseSuccess.
/**
* Test the decoding of a DelResponse
*/
@Test
public void testDecodeDelResponseSuccess() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x2D);
stream.put(new byte[] { 0x30, // LDAPMessage ::=SEQUENCE {
0x2B, 0x02, 0x01, // messageID MessageID
0x01, 0x6B, // CHOICE { ..., delResponse DelResponse, ...
0x26, // DelResponse ::= [APPLICATION 11] LDAPResult
0x0A, 0x01, // LDAPResult ::= SEQUENCE {
0x21, // },
0x04, // matchedDN LDAPDN,
0x1F, 'u', 'i', 'd', '=', 'a', 'k', 'a', 'r', 'a', 's', 'u', 'l', 'u', ',', 'd', 'c', '=', 'e', 'x', 'a', 'm', 'p', 'l', 'e', ',', 'd', 'c', '=', 'c', 'o', 'm', 0x04, // errorMessage
0x00 // LDAPString,
// referral [3] Referral OPTIONAL }
// }
});
String decodedPdu = Strings.dumpBytes(stream.array());
stream.flip();
// Allocate a LdapMessage Container
LdapMessageContainer<DeleteResponseDecorator> container = new LdapMessageContainer<DeleteResponseDecorator>(codec);
// Decode the DelResponse PDU
try {
ldapDecoder.decode(stream, container);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
// Check the decoded DelResponse PDU
DeleteResponse delResponse = container.getMessage();
assertEquals(1, delResponse.getMessageId());
assertEquals(ResultCodeEnum.ALIAS_PROBLEM, delResponse.getLdapResult().getResultCode());
assertEquals("uid=akarasulu,dc=example,dc=com", delResponse.getLdapResult().getMatchedDn().getName());
assertEquals("", delResponse.getLdapResult().getDiagnosticMessage());
// Check the encoding
try {
ByteBuffer bb = encoder.encodeMessage(delResponse);
// Check the length
assertEquals(0x2D, bb.limit());
String encodedPdu = Strings.dumpBytes(bb.array());
assertEquals(encodedPdu, decodedPdu);
} catch (EncoderException ee) {
ee.printStackTrace();
fail(ee.getMessage());
}
}
use of org.apache.directory.api.ldap.model.message.DeleteResponse in project directory-ldap-api by apache.
the class DelResponseTest method testDecodeDelResponseSuccessWithControls.
/**
* Test the decoding of a DelResponse with controls
*/
@Test
public void testDecodeDelResponseSuccessWithControls() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x4A);
stream.put(new byte[] { // LDAPMessage ::=SEQUENCE {
0x30, // LDAPMessage ::=SEQUENCE {
0x48, 0x02, 0x01, // messageID MessageID
0x01, 0x6B, // CHOICE { ..., delResponse DelResponse, ...
0x26, // DelResponse ::= [APPLICATION 11] LDAPResult
0x0A, 0x01, // LDAPResult ::= SEQUENCE {
0x21, // },
0x04, // matchedDN LDAPDN,
0x1F, 'u', 'i', 'd', '=', 'a', 'k', 'a', 'r', 'a', 's', 'u', 'l', 'u', ',', 'd', 'c', '=', 'e', 'x', 'a', 'm', 'p', 'l', 'e', ',', 'd', 'c', '=', 'c', 'o', 'm', 0x04, // errorMessage
0x00, // }
(byte) 0xA0, // A control
0x1B, 0x30, 0x19, 0x04, 0x17, 0x32, 0x2E, 0x31, 0x36, 0x2E, 0x38, 0x34, 0x30, 0x2E, 0x31, 0x2E, 0x31, 0x31, 0x33, 0x37, 0x33, 0x30, 0x2E, 0x33, 0x2E, 0x34, 0x2E, 0x32 });
String decodedPdu = Strings.dumpBytes(stream.array());
stream.flip();
// Allocate a LdapMessage Container
LdapMessageContainer<DeleteResponseDecorator> container = new LdapMessageContainer<DeleteResponseDecorator>(codec);
// Decode the DelResponse PDU
try {
ldapDecoder.decode(stream, container);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
// Check the decoded DelResponse PDU
DeleteResponse delResponse = container.getMessage();
assertEquals(1, delResponse.getMessageId());
assertEquals(ResultCodeEnum.ALIAS_PROBLEM, delResponse.getLdapResult().getResultCode());
assertEquals("uid=akarasulu,dc=example,dc=com", delResponse.getLdapResult().getMatchedDn().getName());
assertEquals("", delResponse.getLdapResult().getDiagnosticMessage());
// Check the Control
Map<String, Control> controls = delResponse.getControls();
assertEquals(1, controls.size());
@SuppressWarnings("unchecked") CodecControl<Control> control = (org.apache.directory.api.ldap.codec.api.CodecControl<Control>) controls.get("2.16.840.1.113730.3.4.2");
assertEquals("2.16.840.1.113730.3.4.2", control.getOid());
assertEquals("", Strings.dumpBytes((byte[]) control.getValue()));
// Check the encoding
try {
ByteBuffer bb = encoder.encodeMessage(delResponse);
// Check the length
assertEquals(0x4A, bb.limit());
String encodedPdu = Strings.dumpBytes(bb.array());
assertEquals(encodedPdu, decodedPdu);
} catch (EncoderException ee) {
ee.printStackTrace();
fail(ee.getMessage());
}
}
use of org.apache.directory.api.ldap.model.message.DeleteResponse in project directory-ldap-api by apache.
the class BatchResponseTest method testResponseWith1DelResponse.
/**
* Test parsing of a Response with the 1 DelResponse
*/
@Test
public void testResponseWith1DelResponse() {
Dsmlv2ResponseParser parser = null;
try {
parser = new Dsmlv2ResponseParser(getCodec());
parser.setInput(BatchResponseTest.class.getResource("response_with_1_DelResponse.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 DeleteResponse) {
assertTrue(true);
} else {
fail();
}
}
use of org.apache.directory.api.ldap.model.message.DeleteResponse 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.DeleteResponse in project directory-ldap-api by apache.
the class DelResponseTest method testResponseWithRequestId.
/**
* Test parsing of a Response with the (optional) requestID attribute
*/
@Test
public void testResponseWithRequestId() {
Dsmlv2ResponseParser parser = null;
try {
parser = new Dsmlv2ResponseParser(getCodec());
parser.setInput(DelResponseTest.class.getResource("response_with_requestID_attribute.xml").openStream(), "UTF-8");
parser.parse();
} catch (Exception e) {
fail(e.getMessage());
}
DeleteResponse delResponse = (DeleteResponse) parser.getBatchResponse().getCurrentResponse();
assertEquals(456, delResponse.getMessageId());
}
Aggregations