use of org.apache.directory.api.asn1.DecoderException in project directory-ldap-api by apache.
the class CompareRequestTest method testDecodeCompareRequestWithControls.
/**
* Test the decoding of an compare request with controls
*/
@Test
public void testDecodeCompareRequestWithControls() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x55);
stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
0x53, 0x02, 0x01, // messageID MessageID
0x01, // CHOICE { ..., compareRequest CompareRequest, ...
0x6E, // CompareRequest ::= [APPLICATION 14] SEQUENCE {
0x31, // entry LDAPDN,
0x04, 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', // ava AttributeValueAssertion }
0x30, // AttributeValueAssertion ::= SEQUENCE {
0x0D, // attributeDesc AttributeDescription,
0x04, 0x04, 't', 'e', 's', 't', // assertionValue AssertionValue }
0x04, 0x05, 'v', 'a', 'l', 'u', 'e', (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<CompareRequestDecorator> container = new LdapMessageContainer<CompareRequestDecorator>(codec);
// Decode the CompareRequest PDU
try {
ldapDecoder.decode(stream, container);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
// Ceck the decoded CompareRequest PDU
CompareRequest compareRequest = container.getMessage();
assertEquals(1, compareRequest.getMessageId());
assertEquals("cn=testModify,ou=users,ou=system", compareRequest.getName().toString());
assertEquals("test", compareRequest.getAttributeId());
assertEquals("value", compareRequest.getAssertionValue().toString());
// Check the Control
Map<String, Control> controls = compareRequest.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(compareRequest);
// Check the length
assertEquals(0x55, 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.asn1.DecoderException in project directory-ldap-api by apache.
the class CompareResponseTest method testDecodeCompareResponseSuccessWithControls.
/**
* Test the decoding of a CompareResponse with controls
*/
@Test
public void testDecodeCompareResponseSuccessWithControls() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x2B);
stream.put(new byte[] { 0x30, // LDAPMessage ::=SEQUENCE {
0x29, 0x02, 0x01, // messageID MessageID
0x01, 0x6F, // CHOICE { ..., compareResponse CompareResponse,
0x07, // CompareResponse ::= [APPLICATION 15] LDAPResult
0x0A, 0x01, // LDAPResult ::= SEQUENCE {
0x00, // },
0x04, // matchedDN LDAPDN,
0x00, 0x04, // errorMessage LDAPString,
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<CompareResponseDecorator> container = new LdapMessageContainer<CompareResponseDecorator>(codec);
// Decode the CompareResponse PDU
try {
ldapDecoder.decode(stream, container);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
// Check the decoded CompareResponse PDU
CompareResponse compareResponse = container.getMessage();
assertEquals(1, compareResponse.getMessageId());
assertEquals(ResultCodeEnum.SUCCESS, compareResponse.getLdapResult().getResultCode());
assertEquals("", compareResponse.getLdapResult().getMatchedDn().getName());
assertEquals("", compareResponse.getLdapResult().getDiagnosticMessage());
// Check the Control
Map<String, Control> controls = compareResponse.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(compareResponse);
// Check the length
assertEquals(0x2B, 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.asn1.DecoderException in project directory-ldap-api by apache.
the class CompareResponseTest method testDecodeCompareResponseSuccess.
/**
* Test the decoding of a CompareResponse
*/
@Test
public void testDecodeCompareResponseSuccess() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x0E);
stream.put(new byte[] { // LDAPMessage ::=SEQUENCE {
0x30, // LDAPMessage ::=SEQUENCE {
0x0C, 0x02, 0x01, // messageID MessageID
0x01, 0x6F, // CHOICE { ..., compareResponse CompareResponse,
0x07, // CompareResponse ::= [APPLICATION 15] LDAPResult
0x0A, 0x01, // LDAPResult ::= SEQUENCE {
0x00, // },
0x04, // matchedDN LDAPDN,
0x00, 0x04, // errorMessage LDAPString,
0x00 // referral [3] Referral OPTIONAL }
// }
});
String decodedPdu = Strings.dumpBytes(stream.array());
stream.flip();
// Allocate a LdapMessage Container
LdapMessageContainer<CompareResponseDecorator> container = new LdapMessageContainer<CompareResponseDecorator>(codec);
// Decode the CompareResponse PDU
try {
ldapDecoder.decode(stream, container);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
// Check the decoded CompareResponse PDU
CompareResponse compareResponse = container.getMessage();
assertEquals(1, compareResponse.getMessageId());
assertEquals(ResultCodeEnum.SUCCESS, compareResponse.getLdapResult().getResultCode());
assertEquals("", compareResponse.getLdapResult().getMatchedDn().getName());
assertEquals("", compareResponse.getLdapResult().getDiagnosticMessage());
// Check the encoding
try {
ByteBuffer bb = encoder.encodeMessage(compareResponse);
// Check the length
assertEquals(0x0E, 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.asn1.DecoderException in project directory-ldap-api by apache.
the class ExtendedResponseTest method testDecodeExtendedResponseEmptyResponse.
/**
* Test the decoding of an ExtendedResponse with an empty response
*/
@Test
public void testDecodeExtendedResponseEmptyResponse() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x1F);
stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
0x1D, 0x02, 0x01, // messageID MessageID
0x01, // CHOICE { ..., extendedResp Response, ...
0x78, // ExtendedResponse ::= [APPLICATION 24] SEQUENCE {
0x18, // COMPONENTS OF LDAPResult,
0x0A, 0x01, // LDAPResult ::= SEQUENCE {
0x00, // },
0x04, // matchedDN LDAPDN,
0x00, 0x04, // errorMessage LDAPString,
0x00, // responseName [0] LDAPOID,
(byte) 0x8A, 0x0D, '1', '.', '3', '.', '6', '.', '1', '.', '5', '.', '5', '.', '2', (byte) 0x8B, 0x00 });
String decodedPdu = Strings.dumpBytes(stream.array());
stream.flip();
// Allocate a LdapMessage Container
LdapMessageContainer<ExtendedResponseDecorator<?>> container = new LdapMessageContainer<ExtendedResponseDecorator<?>>(codec);
// Decode the ExtendedResponse PDU
try {
ldapDecoder.decode(stream, container);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
// Check the decoded ExtendedResponse PDU
ExtendedResponseDecorator<?> extendedResponse = container.getMessage();
assertEquals(1, extendedResponse.getMessageId());
assertEquals(ResultCodeEnum.SUCCESS, extendedResponse.getLdapResult().getResultCode());
assertEquals(Dn.EMPTY_DN, extendedResponse.getLdapResult().getMatchedDn());
assertEquals("", extendedResponse.getLdapResult().getDiagnosticMessage());
assertEquals("1.3.6.1.5.5.2", extendedResponse.getResponseName());
assertEquals("", Strings.utf8ToString(extendedResponse.getResponseValue()));
// Check the encoding
try {
ByteBuffer bb = encoder.encodeMessage(extendedResponse);
// Check the length
assertEquals(0x1F, 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.asn1.DecoderException in project directory-ldap-api by apache.
the class ExtendedResponseTest method testDecodeExtendedResponseEmptyResponseWithControls.
/**
* Test the decoding of an ExtendedResponse with an empty response with
* controls
*/
@Test
public void testDecodeExtendedResponseEmptyResponseWithControls() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x3C);
stream.put(new byte[] { 0x30, // LDAPMessage ::= SEQUENCE {
0x3A, 0x02, 0x01, // messageID MessageID
0x01, // CHOICE { ..., extendedResp Response, ...
0x78, // ExtendedResponse ::= [APPLICATION 24] SEQUENCE {
0x18, // COMPONENTS OF LDAPResult,
0x0A, 0x01, // LDAPResult ::= SEQUENCE {
0x00, // },
0x04, // matchedDN LDAPDN,
0x00, 0x04, // errorMessage LDAPString,
0x00, // responseName [0] LDAPOID,
(byte) 0x8A, 0x0D, '1', '.', '3', '.', '6', '.', '1', '.', '5', '.', '5', '.', '2', (byte) 0x8B, 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<ExtendedResponseDecorator<?>> container = new LdapMessageContainer<ExtendedResponseDecorator<?>>(codec);
// Decode the ExtendedResponse PDU
try {
ldapDecoder.decode(stream, container);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
// Check the decoded ExtendedResponse PDU
ExtendedResponseDecorator<?> extendedResponse = container.getMessage();
assertEquals(1, extendedResponse.getMessageId());
assertEquals(ResultCodeEnum.SUCCESS, extendedResponse.getLdapResult().getResultCode());
assertEquals(Dn.EMPTY_DN, extendedResponse.getLdapResult().getMatchedDn());
assertEquals("", extendedResponse.getLdapResult().getDiagnosticMessage());
assertEquals("1.3.6.1.5.5.2", extendedResponse.getResponseName());
assertEquals("", Strings.utf8ToString(extendedResponse.getResponseValue()));
// Check the Control
Map<String, Control> controls = extendedResponse.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(control.getValue()));
// Check the encoding
try {
ByteBuffer bb = encoder.encodeMessage(extendedResponse);
// Check the length
assertEquals(0x3C, bb.limit());
String encodedPdu = Strings.dumpBytes(bb.array());
assertEquals(encodedPdu, decodedPdu);
} catch (EncoderException ee) {
ee.printStackTrace();
fail(ee.getMessage());
}
}
Aggregations