use of org.apache.directory.api.ldap.codec.decorators.SearchResultDoneDecorator in project directory-ldap-api by apache.
the class SearchResultDoneTest method testDecodeSearchResultDoneSuccess.
/**
* Test the decoding of a SearchResultDone
*/
@Test
public void testDecodeSearchResultDoneSuccess() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x0E);
stream.put(new byte[] { // LDAPMessage ::=SEQUENCE {
0x30, // LDAPMessage ::=SEQUENCE {
0x0C, 0x02, 0x01, // messageID MessageID
0x01, 0x65, // CHOICE { ..., searchResDone SearchResultDone, ...
0x07, // SearchResultDone ::= [APPLICATION 5] 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 SearchResultDone Container
LdapMessageContainer<SearchResultDoneDecorator> ldapMessageContainer = new LdapMessageContainer<SearchResultDoneDecorator>(codec);
try {
ldapDecoder.decode(stream, ldapMessageContainer);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
SearchResultDone searchResultDone = ldapMessageContainer.getMessage();
assertEquals(1, searchResultDone.getMessageId());
assertEquals(ResultCodeEnum.SUCCESS, searchResultDone.getLdapResult().getResultCode());
assertEquals("", searchResultDone.getLdapResult().getMatchedDn().getName());
assertEquals("", searchResultDone.getLdapResult().getDiagnosticMessage());
// Check the encoding
try {
ByteBuffer bb = encoder.encodeMessage(searchResultDone);
// Check the length
assertEquals(0x0E, bb.limit());
String encodedPdu = Strings.dumpBytes(bb.array());
assertEquals(encodedPdu, decodedPdu);
} catch (EncoderException ee) {
ee.printStackTrace();
fail(ee.getMessage());
}
}
Aggregations