use of org.apache.directory.api.ldap.model.filter.SubstringNode in project directory-ldap-api by apache.
the class ClassesItemTest method initNames.
/**
* Initialize classesItem instances
*/
@Before
public void initNames() throws Exception {
classesItemA = new ClassesItem(new SubstringNode("aa"));
classesItemACopy = new ClassesItem(new SubstringNode("aa"));
classesItemB = new ClassesItem(new SubstringNode("aa"));
classesItemC = new ClassesItem(new SubstringNode("cc"));
}
use of org.apache.directory.api.ldap.model.filter.SubstringNode in project directory-ldap-api by apache.
the class SearchRequestSubstringTest method testDecodeSearchRequestSubstringFinal.
/**
* Test the decoding of a SearchRequest with a substring filter. Test the
* initial filter : (objectclass=*t*t*t*)
*/
@Test
public void testDecodeSearchRequestSubstringFinal() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x67);
stream.put(new byte[] { 0x30, // LDAPMessage ::=SEQUENCE {
0x65, 0x02, 0x01, // messageID MessageID
0x01, 0x63, // CHOICE { ..., searchRequest SearchRequest, ...
0x60, // SearchRequest ::= APPLICATION[3] SEQUENCE {
0x04, // baseObject 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', 0x0A, 0x01, // scope
0x01, // wholeSubtree (2) },
0x0A, 0x01, // derefAliases ENUMERATED {
0x03, // sizeLimit INTEGER (0 .. maxInt), (1000)
0x02, 0x02, 0x03, (byte) 0xE8, // timeLimit INTEGER (0 .. maxInt), (1000)
0x02, 0x02, 0x03, (byte) 0xE8, 0x01, 0x01, // typesOnly
(byte) 0xFF, // filter Filter,
(byte) 0xA4, // Filter ::= CHOICE {
0x15, // SubstringFilter ::= SEQUENCE {
0x04, // type AttributeDescription,
0x0B, 'o', 'b', 'j', 'e', 'c', 't', 'c', 'l', 'a', 's', 's', 0x30, 0x06, (byte) 0x82, 0x04, 'A', 'm', 'o', //
's', 0x30, // AttributeDescriptionList ::= SEQUENCE OF
0x15, // AttributeDescription
0x04, 0x05, 'a', 't', 't', 'r', // AttributeDescription
'0', // ::= LDAPString
0x04, 0x05, 'a', 't', 't', 'r', // AttributeDescription
'1', // ::= LDAPString
0x04, 0x05, 'a', 't', 't', 'r', // AttributeDescription ::=
'2' // LDAPString
});
String decodedPdu = Strings.dumpBytes(stream.array());
stream.flip();
// Allocate a BindRequest Container
LdapMessageContainer<SearchRequestDecorator> ldapMessageContainer = new LdapMessageContainer<SearchRequestDecorator>(codec);
try {
ldapDecoder.decode(stream, ldapMessageContainer);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
SearchRequest searchRequest = ldapMessageContainer.getMessage();
assertEquals(1, searchRequest.getMessageId());
assertEquals("uid=akarasulu,dc=example,dc=com", searchRequest.getBase().toString());
assertEquals(SearchScope.ONELEVEL, searchRequest.getScope());
assertEquals(AliasDerefMode.DEREF_ALWAYS, searchRequest.getDerefAliases());
assertEquals(1000, searchRequest.getSizeLimit());
assertEquals(1000, searchRequest.getTimeLimit());
assertEquals(true, searchRequest.getTypesOnly());
// (objectclass=t*)
ExprNode node = searchRequest.getFilter();
SubstringNode substringNode = (SubstringNode) node;
assertNotNull(substringNode);
assertEquals("objectclass", substringNode.getAttribute());
assertEquals(null, substringNode.getInitial());
assertEquals(0, substringNode.getAny().size());
assertEquals("Amos", substringNode.getFinal());
// The attributes
List<String> attributes = searchRequest.getAttributes();
for (String attribute : attributes) {
assertNotNull(attribute);
}
// attributes may have been reordered
try {
ByteBuffer bb = encoder.encodeMessage(searchRequest);
// Check the length
assertEquals(0x67, bb.limit());
String encodedPdu = Strings.dumpBytes(bb.array());
assertEquals(encodedPdu.substring(0, 0x5B), decodedPdu.substring(0, 0x5B));
} catch (EncoderException ee) {
ee.printStackTrace();
fail(ee.getMessage());
}
}
use of org.apache.directory.api.ldap.model.filter.SubstringNode in project directory-ldap-api by apache.
the class SearchRequestSubstringTest method testDecodeSearchRequestSubstringInitialAnyAny.
/**
* Test the decoding of a SearchRequest with a substring filter. Test the
* initial filter : (objectclass=t*)
*/
@Test
public void testDecodeSearchRequestSubstringInitialAnyAny() {
Asn1Decoder ldapDecoder = new Asn1Decoder();
ByteBuffer stream = ByteBuffer.allocate(0x67);
stream.put(new byte[] { 0x30, // LDAPMessage ::=SEQUENCE {
0x65, 0x02, 0x01, // messageID MessageID
0x01, 0x63, // CHOICE { ..., searchRequest SearchRequest, ...
0x60, // SearchRequest ::= APPLICATION[3] SEQUENCE {
0x04, // baseObject 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', 0x0A, 0x01, // scope
0x01, // wholeSubtree (2) },
0x0A, 0x01, // derefAliases ENUMERATED {
0x03, // sizeLimit INTEGER (0 .. maxInt), (1000)
0x02, 0x02, 0x03, (byte) 0xE8, // timeLimit INTEGER (0 .. maxInt), (1000)
0x02, 0x02, 0x03, (byte) 0xE8, 0x01, 0x01, // typesOnly
(byte) 0xFF, // filter Filter,
(byte) 0xA4, // Filter ::= CHOICE {
0x15, // SubstringFilter ::= SEQUENCE {
0x04, // type AttributeDescription,
0x0B, 'o', 'b', 'j', 'e', 'c', 't', 'c', 'l', 'a', 's', 's', 0x30, 0x06, (byte) 0x80, 0x01, //
't', (byte) 0x81, 0x01, //
'*', 0x30, // AttributeDescriptionList ::= SEQUENCE OF
0x15, // AttributeDescription
0x04, 0x05, 'a', 't', 't', 'r', // AttributeDescription
'0', // ::= LDAPString
0x04, 0x05, 'a', 't', 't', 'r', // AttributeDescription
'1', // ::= LDAPString
0x04, 0x05, 'a', 't', 't', 'r', // AttributeDescription ::=
'2' // LDAPString
});
String decodedPdu = Strings.dumpBytes(stream.array());
stream.flip();
// Allocate a BindRequest Container
LdapMessageContainer<SearchRequestDecorator> ldapMessageContainer = new LdapMessageContainer<SearchRequestDecorator>(codec);
try {
ldapDecoder.decode(stream, ldapMessageContainer);
} catch (DecoderException de) {
de.printStackTrace();
fail(de.getMessage());
}
SearchRequest searchRequest = ldapMessageContainer.getMessage();
assertEquals(1, searchRequest.getMessageId());
assertEquals("uid=akarasulu,dc=example,dc=com", searchRequest.getBase().toString());
assertEquals(SearchScope.ONELEVEL, searchRequest.getScope());
assertEquals(AliasDerefMode.DEREF_ALWAYS, searchRequest.getDerefAliases());
assertEquals(1000, searchRequest.getSizeLimit());
assertEquals(1000, searchRequest.getTimeLimit());
assertEquals(true, searchRequest.getTypesOnly());
// (objectclass=t*)
ExprNode node = searchRequest.getFilter();
SubstringNode substringNode = (SubstringNode) node;
assertNotNull(substringNode);
assertEquals("objectclass", substringNode.getAttribute());
assertEquals("t", substringNode.getInitial());
assertEquals("*", substringNode.getAny().get(0));
// The attributes
List<String> attributes = searchRequest.getAttributes();
for (String attribute : attributes) {
assertNotNull(attribute);
}
// attributes may have been reordered
try {
ByteBuffer bb = encoder.encodeMessage(searchRequest);
// Check the length
assertEquals(0x67, bb.limit());
String encodedPdu = Strings.dumpBytes(bb.array());
assertEquals(encodedPdu.substring(0, 0x58), decodedPdu.substring(0, 0x58));
} catch (EncoderException ee) {
ee.printStackTrace();
fail(ee.getMessage());
}
}
use of org.apache.directory.api.ldap.model.filter.SubstringNode in project directory-ldap-api by apache.
the class SearchRequestDsml method toDsml.
/**
* Recursively converts the filter of the Search Request into a DSML representation and adds
* it to the XML Element corresponding to the Search Request
*
* @param element
* the parent Element
* @param filter
* the filter to convert
*/
private void toDsml(Element element, ExprNode filter) {
// AND FILTER
if (filter instanceof AndNode) {
Element newElement = element.addElement("and");
List<ExprNode> filterList = ((AndNode) filter).getChildren();
for (int i = 0; i < filterList.size(); i++) {
toDsml(newElement, filterList.get(i));
}
} else // OR FILTER
if (filter instanceof OrNode) {
Element newElement = element.addElement("or");
List<ExprNode> filterList = ((OrNode) filter).getChildren();
for (int i = 0; i < filterList.size(); i++) {
toDsml(newElement, filterList.get(i));
}
} else // NOT FILTER
if (filter instanceof NotNode) {
Element newElement = element.addElement("not");
toDsml(newElement, ((NotNode) filter).getFirstChild());
} else // SUBSTRING FILTER
if (filter instanceof SubstringNode) {
Element newElement = element.addElement("substrings");
SubstringNode substringFilter = (SubstringNode) filter;
newElement.addAttribute(NAME, substringFilter.getAttribute());
String initial = substringFilter.getInitial();
if ((initial != null) && (!"".equals(initial))) {
newElement.addElement("initial").setText(initial);
}
List<String> anyList = substringFilter.getAny();
for (int i = 0; i < anyList.size(); i++) {
newElement.addElement("any").setText(anyList.get(i));
}
String finalString = substringFilter.getFinal();
if ((finalString != null) && (!"".equals(finalString))) {
newElement.addElement("final").setText(finalString);
}
} else // APPROXMATCH, EQUALITYMATCH, GREATEROREQUALS & LESSOREQUAL FILTERS
if (filter instanceof SimpleNode) {
Element newElement;
if (filter instanceof ApproximateNode) {
newElement = element.addElement("approxMatch");
} else if (filter instanceof EqualityNode) {
newElement = element.addElement("equalityMatch");
} else if (filter instanceof GreaterEqNode) {
newElement = element.addElement("greaterOrEqual");
} else // it is a LessEqNode )
{
newElement = element.addElement("lessOrEqual");
}
String attributeName = ((SimpleNode<?>) filter).getAttribute();
newElement.addAttribute(NAME, attributeName);
Value value = ((SimpleNode<?>) filter).getValue();
if (value != null) {
if (ParserUtils.needsBase64Encoding(value)) {
Namespace xsdNamespace = new Namespace("xsd", ParserUtils.XML_SCHEMA_URI);
Namespace xsiNamespace = new Namespace("xsi", ParserUtils.XML_SCHEMA_INSTANCE_URI);
element.getDocument().getRootElement().add(xsdNamespace);
element.getDocument().getRootElement().add(xsiNamespace);
Element valueElement = newElement.addElement(VALUE).addText(ParserUtils.base64Encode(value));
valueElement.addAttribute(new QName("type", xsiNamespace), "xsd:" + ParserUtils.BASE64BINARY);
} else {
newElement.addElement(VALUE).setText(value.getValue());
}
}
} else // PRESENT FILTER
if (filter instanceof PresenceNode) {
Element newElement = element.addElement("present");
newElement.addAttribute(NAME, ((PresenceNode) filter).getAttribute());
} else // EXTENSIBLEMATCH
if (filter instanceof ExtensibleNode) {
Element newElement = element.addElement("extensibleMatch");
Value value = ((ExtensibleNode) filter).getValue();
if (value != null) {
if (ParserUtils.needsBase64Encoding(value)) {
Namespace xsdNamespace = new Namespace("xsd", ParserUtils.XML_SCHEMA_URI);
Namespace xsiNamespace = new Namespace("xsi", ParserUtils.XML_SCHEMA_INSTANCE_URI);
element.getDocument().getRootElement().add(xsdNamespace);
element.getDocument().getRootElement().add(xsiNamespace);
Element valueElement = newElement.addElement(VALUE).addText(ParserUtils.base64Encode(value.getValue()));
valueElement.addAttribute(new QName("type", xsiNamespace), "xsd:" + ParserUtils.BASE64BINARY);
} else {
newElement.addElement(VALUE).setText(value.getValue());
}
}
if (((ExtensibleNode) filter).hasDnAttributes()) {
newElement.addAttribute("dnAttributes", "true");
}
String matchingRule = ((ExtensibleNode) filter).getMatchingRuleId();
if ((matchingRule != null) && ("".equals(matchingRule))) {
newElement.addAttribute("matchingRule", matchingRule);
}
}
}
use of org.apache.directory.api.ldap.model.filter.SubstringNode in project directory-ldap-api by apache.
the class SearchRequestTest method testRequestWithSubstrings1Any.
/**
* Test parsing of a request with a Substrings Filter with 1 Any element
*/
@Test
public void testRequestWithSubstrings1Any() {
Dsmlv2Parser parser = null;
try {
parser = newParser();
parser.setInput(SearchRequestTest.class.getResource("filters/request_with_substrings_1_any.xml").openStream(), "UTF-8");
parser.parse();
} catch (Exception e) {
fail(e.getMessage());
}
SearchRequest searchRequest = (SearchRequest) parser.getBatchRequest().getCurrentRequest();
ExprNode filter = searchRequest.getFilter();
assertTrue(filter instanceof SubstringNode);
SubstringNode substringFilter = (SubstringNode) filter;
List<String> initials = substringFilter.getAny();
assertEquals(1, initials.size());
assertEquals("kate", initials.get(0));
}
Aggregations