use of org.apache.directory.api.dsmlv2.Dsmlv2ResponseParser in project directory-ldap-api by apache.
the class SearchResultEntryTest 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(SearchResultEntryTest.class.getResource("response_with_requestID_attribute.xml").openStream(), "UTF-8");
parser.parse();
} catch (Exception e) {
fail(e.getMessage());
}
SearchResultEntry searchResultEntry = ((SearchResponse) parser.getBatchResponse().getCurrentResponse().getDecorated()).getCurrentSearchResultEntry();
assertEquals(456, searchResultEntry.getMessageId());
}
use of org.apache.directory.api.dsmlv2.Dsmlv2ResponseParser in project directory-ldap-api by apache.
the class SearchResultEntryTest method testResponseWithDnAttribute.
/**
* Test parsing of a response with dn Attribute
*/
@Test
public void testResponseWithDnAttribute() {
Dsmlv2ResponseParser parser = null;
try {
parser = new Dsmlv2ResponseParser(getCodec());
parser.setInput(SearchResultEntryTest.class.getResource("response_with_dn_attribute.xml").openStream(), "UTF-8");
parser.parse();
} catch (Exception e) {
fail(e.getMessage());
}
SearchResponseDsml searchResponseDsml = (SearchResponseDsml) parser.getBatchResponse().getCurrentResponse();
SearchResponse response = (SearchResponse) searchResponseDsml.getDecorated();
SearchResultEntry searchResultEntry = response.getSearchResultEntryList().get(0);
assertEquals("dc=example,dc=com", searchResultEntry.getObjectName().toString());
}
use of org.apache.directory.api.dsmlv2.Dsmlv2ResponseParser in project directory-ldap-api by apache.
the class SearchResultEntryTest method testResponseWith1Attr1Base64Value.
/**
* Test parsing of a response with 1 Attr 1 Base64 Value
*/
@Test
public void testResponseWith1Attr1Base64Value() {
Dsmlv2ResponseParser parser = null;
try {
parser = new Dsmlv2ResponseParser(getCodec());
parser.setInput(SearchResultEntryTest.class.getResource("response_with_1_attr_1_base64_value.xml").openStream(), "UTF-8");
parser.parse();
} catch (Exception e) {
fail(e.getMessage());
}
SearchResultEntry searchResultEntry = ((SearchResponse) parser.getBatchResponse().getCurrentResponse().getDecorated()).getCurrentSearchResultEntry();
Entry entry = searchResultEntry.getEntry();
assertEquals(1, entry.size());
Iterator<Attribute> attributeIterator = entry.iterator();
Attribute attribute = attributeIterator.next();
assertEquals("cn", attribute.getUpId());
assertEquals(1, attribute.size());
Iterator<Value> valueIterator = attribute.iterator();
assertTrue(valueIterator.hasNext());
Value value = valueIterator.next();
String expected = new String(new byte[] { 'E', 'm', 'm', 'a', 'n', 'u', 'e', 'l', ' ', 'L', (byte) 0xc3, (byte) 0xa9, 'c', 'h', 'a', 'r', 'n', 'y' }, StandardCharsets.UTF_8);
assertEquals(expected, value.getValue());
}
use of org.apache.directory.api.dsmlv2.Dsmlv2ResponseParser in project directory-ldap-api by apache.
the class SearchResultEntryTest method testResponseWith1Attr0Value.
/**
* Test parsing of a response with 1 Attr 0 Value
*/
@Test
public void testResponseWith1Attr0Value() {
Dsmlv2ResponseParser parser = null;
try {
parser = new Dsmlv2ResponseParser(getCodec());
parser.setInput(SearchResultEntryTest.class.getResource("response_with_1_attr_0_value.xml").openStream(), "UTF-8");
parser.parse();
} catch (Exception e) {
fail(e.getMessage());
}
SearchResultEntry searchResultEntry = ((SearchResponse) parser.getBatchResponse().getCurrentResponse().getDecorated()).getCurrentSearchResultEntry();
Entry entry = searchResultEntry.getEntry();
assertEquals(1, entry.size());
Iterator<Attribute> attributeIterator = entry.iterator();
Attribute attribute = attributeIterator.next();
assertEquals("dc", attribute.getUpId());
}
use of org.apache.directory.api.dsmlv2.Dsmlv2ResponseParser in project directory-ldap-api by apache.
the class SearchResultEntryTest method testResponseWith1Attr2Value.
/**
* Test parsing of a response with 1 Attr 2 Value
*/
@Test
public void testResponseWith1Attr2Value() {
Dsmlv2ResponseParser parser = null;
try {
parser = new Dsmlv2ResponseParser(getCodec());
parser.setInput(SearchResultEntryTest.class.getResource("response_with_1_attr_2_value.xml").openStream(), "UTF-8");
parser.parse();
} catch (Exception e) {
fail(e.getMessage());
}
SearchResultEntry searchResultEntry = ((SearchResponse) parser.getBatchResponse().getCurrentResponse().getDecorated()).getCurrentSearchResultEntry();
Entry entry = searchResultEntry.getEntry();
assertEquals(1, entry.size());
Iterator<Attribute> attributeIterator = entry.iterator();
Attribute attribute = attributeIterator.next();
assertEquals("objectclass", attribute.getUpId());
assertEquals(2, attribute.size());
Iterator<Value> valueIterator = attribute.iterator();
assertTrue(valueIterator.hasNext());
Value value = valueIterator.next();
assertEquals("top", value.getValue());
assertTrue(valueIterator.hasNext());
value = valueIterator.next();
assertEquals("domain", value.getValue());
assertFalse(valueIterator.hasNext());
}
Aggregations