diff --git a/mvn-build/integration-tests-openldap/pom.xml b/mvn-build/integration-tests-openldap/pom.xml
new file mode 100644
index 00000000..f234c6dc
--- /dev/null
+++ b/mvn-build/integration-tests-openldap/pom.xml
@@ -0,0 +1,64 @@
+
+
+
+
+ org.springframework.ldap
+ spring-ldap-parent
+ 1.3-SNAPSHOT
+
+ 4.0.0
+ spring-ldap-openldap-integration-tests
+ jar
+ Spring LDAP Integration Tests
+
+
+
+
+ maven-compiler-plugin
+
+ 1.5
+ 1.5
+
+
+
+
+
+
+ org.springframework.ldap
+ spring-ldap-test
+
+
+ org.springframework.ldap
+ spring-ldap-core-tiger
+
+
+
+ org.springframework
+ spring-jdbc
+ provided
+
+
+ org.springframework
+ spring-aop
+ test
+
+
+ gsbase
+ gsbase
+ test
+
+
+ junit
+ junit
+ 4.4
+ test
+
+
+ org.springframework
+ spring-test
+ test
+
+
+
diff --git a/mvn-build/integration-tests-openldap/src/test/java/org/springframework/ldap/core/LdapTemplateSearchResultITest.java b/mvn-build/integration-tests-openldap/src/test/java/org/springframework/ldap/core/LdapTemplateSearchResultITest.java
new file mode 100644
index 00000000..813f383d
--- /dev/null
+++ b/mvn-build/integration-tests-openldap/src/test/java/org/springframework/ldap/core/LdapTemplateSearchResultITest.java
@@ -0,0 +1,181 @@
+/*
+ * Copyright 2005-2007 the original author or authors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.springframework.ldap.core;
+
+import static junit.framework.Assert.assertEquals;
+
+import java.util.List;
+
+import javax.naming.Name;
+import javax.naming.directory.SearchControls;
+
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.ldap.core.DistinguishedName;
+import org.springframework.ldap.core.LdapTemplate;
+import org.springframework.ldap.test.AttributeCheckAttributesMapper;
+import org.springframework.ldap.test.AttributeCheckContextMapper;
+import org.springframework.test.context.ContextConfiguration;
+import org.springframework.test.context.junit4.AbstractJUnit4SpringContextTests;
+
+/**
+ * Verifies that LdapTemplate search methods work against OpenLDAP.
+ *
+ * @author Mattias Arthursson
+ */
+@ContextConfiguration(locations = { "/conf/ldapTemplateTestContext.xml" })
+public class LdapTemplateSearchResultITest extends AbstractJUnit4SpringContextTests {
+
+ @Autowired
+ private LdapTemplate tested;
+
+ private AttributeCheckAttributesMapper attributesMapper;
+
+ private AttributeCheckContextMapper contextMapper;
+
+ private static final String[] ALL_ATTRIBUTES = { "cn", "sn", "description", "telephoneNumber" };
+
+ private static final String[] CN_SN_ATTRS = { "cn", "sn" };
+
+ private static final String[] ABSENT_ATTRIBUTES = { "description", "telephoneNumber" };
+
+ private static final String[] CN_SN_VALUES = { "Some Person2", "Person2" };
+
+ private static final String[] ALL_VALUES = { "Some Person2", "Person2", "Sweden, Company1, Some Person2",
+ "+46 555-654321" };
+
+ private static final String BASE_STRING = "";
+
+ private static final String FILTER_STRING = "(&(objectclass=person)(sn=Person2))";
+
+ private static final Name BASE_NAME = new DistinguishedName(BASE_STRING);
+
+ @Before
+ public void prepareTestedInstance() throws Exception {
+ attributesMapper = new AttributeCheckAttributesMapper();
+ contextMapper = new AttributeCheckContextMapper();
+ }
+
+ @After
+ public void cleanup() throws Exception {
+ attributesMapper = null;
+ contextMapper = null;
+ }
+
+ @Test
+ public void testSearch_AttributesMapper() {
+ attributesMapper.setExpectedAttributes(ALL_ATTRIBUTES);
+ attributesMapper.setExpectedValues(ALL_VALUES);
+ List list = tested.search(BASE_STRING, FILTER_STRING, attributesMapper);
+ assertEquals(1, list.size());
+ }
+
+ @Test
+ public void testSearch_SearchScope_AttributesMapper() {
+ attributesMapper.setExpectedAttributes(ALL_ATTRIBUTES);
+ attributesMapper.setExpectedValues(ALL_VALUES);
+ List list = tested.search(BASE_STRING, FILTER_STRING, SearchControls.SUBTREE_SCOPE, attributesMapper);
+ assertEquals(1, list.size());
+ }
+
+ @Test
+ public void testSearch_SearchScope_LimitedAttrs_AttributesMapper() {
+ attributesMapper.setExpectedAttributes(CN_SN_ATTRS);
+ attributesMapper.setExpectedValues(CN_SN_VALUES);
+ attributesMapper.setAbsentAttributes(ABSENT_ATTRIBUTES);
+ List list = tested.search(BASE_STRING, FILTER_STRING, SearchControls.SUBTREE_SCOPE, CN_SN_ATTRS,
+ attributesMapper);
+ assertEquals(1, list.size());
+ }
+
+ @Test
+ public void testSearch_AttributesMapper_Name() {
+ attributesMapper.setExpectedAttributes(ALL_ATTRIBUTES);
+ attributesMapper.setExpectedValues(ALL_VALUES);
+ List list = tested.search(BASE_NAME, FILTER_STRING, attributesMapper);
+ assertEquals(1, list.size());
+ }
+
+ @Test
+ public void testSearch_SearchScope_AttributesMapper_Name() {
+ attributesMapper.setExpectedAttributes(ALL_ATTRIBUTES);
+ attributesMapper.setExpectedValues(ALL_VALUES);
+ List list = tested.search(BASE_NAME, FILTER_STRING, SearchControls.SUBTREE_SCOPE, attributesMapper);
+ assertEquals(1, list.size());
+ }
+
+ @Test
+ public void testSearch_SearchScope_LimitedAttrs_AttributesMapper_Name() {
+ attributesMapper.setExpectedAttributes(CN_SN_ATTRS);
+ attributesMapper.setExpectedValues(CN_SN_VALUES);
+ attributesMapper.setAbsentAttributes(ABSENT_ATTRIBUTES);
+ List list = tested
+ .search(BASE_NAME, FILTER_STRING, SearchControls.SUBTREE_SCOPE, CN_SN_ATTRS, attributesMapper);
+ assertEquals(1, list.size());
+ }
+
+ @Test
+ public void testSearch_ContextMapper() {
+ contextMapper.setExpectedAttributes(ALL_ATTRIBUTES);
+ contextMapper.setExpectedValues(ALL_VALUES);
+ List list = tested.search(BASE_STRING, FILTER_STRING, contextMapper);
+ assertEquals(1, list.size());
+ }
+
+ @Test
+ public void testSearch_SearchScope_ContextMapper() {
+ contextMapper.setExpectedAttributes(ALL_ATTRIBUTES);
+ contextMapper.setExpectedValues(ALL_VALUES);
+ List list = tested.search(BASE_STRING, FILTER_STRING, SearchControls.SUBTREE_SCOPE, contextMapper);
+ assertEquals(1, list.size());
+ }
+
+ @Test
+ public void testSearch_SearchScope_LimitedAttrs_ContextMapper() {
+ contextMapper.setExpectedAttributes(CN_SN_ATTRS);
+ contextMapper.setExpectedValues(CN_SN_VALUES);
+ contextMapper.setAbsentAttributes(ABSENT_ATTRIBUTES);
+ List list = tested.search(BASE_STRING, FILTER_STRING, SearchControls.SUBTREE_SCOPE, CN_SN_ATTRS, contextMapper);
+ assertEquals(1, list.size());
+ }
+
+ @Test
+ public void testSearch_ContextMapper_Name() {
+ contextMapper.setExpectedAttributes(ALL_ATTRIBUTES);
+ contextMapper.setExpectedValues(ALL_VALUES);
+ List list = tested.search(BASE_NAME, FILTER_STRING, contextMapper);
+ assertEquals(1, list.size());
+ }
+
+ @Test
+ public void testSearch_SearchScope_ContextMapper_Name() {
+ contextMapper.setExpectedAttributes(ALL_ATTRIBUTES);
+ contextMapper.setExpectedValues(ALL_VALUES);
+ List list = tested.search(BASE_NAME, FILTER_STRING, SearchControls.SUBTREE_SCOPE, contextMapper);
+ assertEquals(1, list.size());
+ }
+
+ @Test
+ public void testSearch_SearchScope_LimitedAttrs_ContextMapper_Name() {
+ contextMapper.setExpectedAttributes(CN_SN_ATTRS);
+ contextMapper.setExpectedValues(CN_SN_VALUES);
+ contextMapper.setAbsentAttributes(ABSENT_ATTRIBUTES);
+ List list = tested.search(BASE_NAME, FILTER_STRING, SearchControls.SUBTREE_SCOPE, CN_SN_ATTRS, contextMapper);
+ assertEquals(1, list.size());
+ }
+}
diff --git a/mvn-build/integration-tests-openldap/src/test/resources/conf/ldap.properties b/mvn-build/integration-tests-openldap/src/test/resources/conf/ldap.properties
new file mode 100644
index 00000000..29b38fbb
--- /dev/null
+++ b/mvn-build/integration-tests-openldap/src/test/resources/conf/ldap.properties
@@ -0,0 +1,3 @@
+userDn=cn=admin,dc=jayway,dc=se
+password=secret
+base=dc=jayway,dc=se
diff --git a/mvn-build/integration-tests-openldap/src/test/resources/conf/ldapTemplateTestContext.xml b/mvn-build/integration-tests-openldap/src/test/resources/conf/ldapTemplateTestContext.xml
new file mode 100644
index 00000000..bb5b9bd4
--- /dev/null
+++ b/mvn-build/integration-tests-openldap/src/test/resources/conf/ldapTemplateTestContext.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mvn-build/integration-tests-openldap/src/test/resources/log4j.properties b/mvn-build/integration-tests-openldap/src/test/resources/log4j.properties
new file mode 100644
index 00000000..12c4b1c8
--- /dev/null
+++ b/mvn-build/integration-tests-openldap/src/test/resources/log4j.properties
@@ -0,0 +1,6 @@
+log4j.rootCategory=warn, stdout
+log4j.appender.stdout=org.apache.log4j.ConsoleAppender
+log4j.appender.stdout.layout.ConversionPattern=%r [%t] %-5p\: %-15c{2} - %m%n
+log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
+
+log4j.logger.org.apache.directory.server.schema.registries.DefaultSyntaxRegistry=WARN
\ No newline at end of file