use of org.apache.directory.api.ldap.model.message.DeleteResponseImpl in project directory-ldap-api by apache.
the class DelRequestTest method testDecodeDelRequestBadDN.
/**
* Test the decoding of a full DelRequest
*/
@Test
public void testDecodeDelRequestBadDN() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x27);
stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
0x25, 0x02, 0x01, // messageID MessageID
0x01, // DelRequest ::= [APPLICATION 10] LDAPDN;
0x4A, 0x20, 'c', 'n', ':', 't', 'e', 's', 't', 'M', 'o', 'd', 'i', 'f', 'y', ',', 'o', 'u', '=', 'u', 's', 'e', 'r', 's', ',', 'o', 'u', '=', 's', 'y', 's', 't', 'e', 'm' });
stream.flip();
// Allocate a LdapMessage Container
LdapMessageContainer<DeleteRequestDecorator> container = new LdapMessageContainer<DeleteRequestDecorator>(codec);
// Decode a DelRequest PDU
try {
ldapDecoder.decode(stream, container);
} catch (DecoderException de) {
assertTrue(de instanceof ResponseCarryingException);
Message response = ((ResponseCarryingException) de).getResponse();
assertTrue(response instanceof DeleteResponseImpl);
assertEquals(ResultCodeEnum.INVALID_DN_SYNTAX, ((DeleteResponseImpl) response).getLdapResult().getResultCode());
return;
}
fail("We should not reach this point");
}
use of org.apache.directory.api.ldap.model.message.DeleteResponseImpl in project directory-ldap-api by apache.
the class InitDelRequest method action.
/**
* {@inheritDoc}
*/
public void action(LdapMessageContainer<DeleteRequestDecorator> container) throws DecoderException {
// Create the DeleteRequest LdapMessage instance and store it in the container
DeleteRequest internaldelRequest = new DeleteRequestImpl();
internaldelRequest.setMessageId(container.getMessageId());
DeleteRequestDecorator delRequest = new DeleteRequestDecorator(container.getLdapCodecService(), internaldelRequest);
container.setMessage(delRequest);
// And store the Dn into it
// Get the Value and store it in the DelRequest
TLV tlv = container.getCurrentTLV();
// We have to handle the special case of a 0 length matched
// Dn
Dn entry;
if (tlv.getLength() == 0) {
// This will generate a PROTOCOL_ERROR
throw new DecoderException(I18n.err(I18n.ERR_04073));
} else {
byte[] dnBytes = tlv.getValue().getData();
String dnStr = Strings.utf8ToString(dnBytes);
try {
entry = new Dn(dnStr);
} catch (LdapInvalidDnException ine) {
String msg = I18n.err(I18n.ERR_04074, dnStr, Strings.dumpBytes(dnBytes), ine.getLocalizedMessage());
LOG.error(msg);
DeleteResponseImpl response = new DeleteResponseImpl(delRequest.getMessageId());
throw new ResponseCarryingException(msg, response, ResultCodeEnum.INVALID_DN_SYNTAX, Dn.EMPTY_DN, ine);
}
delRequest.setName(entry);
}
// We can have an END transition
container.setGrammarEndAllowed(true);
if (IS_DEBUG) {
LOG.debug("Deleting Dn {}", entry);
}
}
use of org.apache.directory.api.ldap.model.message.DeleteResponseImpl in project directory-ldap-api by apache.
the class InitDelResponse method action.
/**
* {@inheritDoc}
*/
public void action(LdapMessageContainer<DeleteResponseDecorator> container) {
// Now, we can allocate the DelResponse Object
DeleteResponseDecorator delResponse = new DeleteResponseDecorator(container.getLdapCodecService(), new DeleteResponseImpl(container.getMessageId()));
container.setMessage(delResponse);
LOG.debug("Del response ");
}
Aggregations