/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.camel.component.springldap;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.naming.directory.Attributes;
import javax.naming.directory.BasicAttributes;
import javax.naming.directory.SearchControls;
import org.apache.camel.ProducerTemplate;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.test.spring.CamelSpringTestSupport;
import org.junit.Test;
import org.mockito.ArgumentCaptor;
import org.mockito.Mockito;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.support.AbstractApplicationContext;
import org.springframework.ldap.core.AttributesMapper;
import org.springframework.ldap.core.LdapTemplate;
import static org.mockito.Matchers.any;
import static org.mockito.Mockito.when;
public class SpringLdapComponentTest extends CamelSpringTestSupport {
private LdapTemplate ldapTemplate;
private ProducerTemplate producer;
private Map<String, Object> body;
@Test
public void testUnbind() throws Exception {
String dnToUnbind = "some dn to unbind";
initializeTest(dnToUnbind);
producer.sendBody("spring-ldap:"
+ SpringLdapTestConfiguration.LDAP_MOCK_NAME
+ "?operation=unbind", body);
ArgumentCaptor<String> dnCaptor = ArgumentCaptor.forClass(String.class);
Mockito.verify(ldapTemplate).unbind(dnCaptor.capture());
assertEquals(dnToUnbind, dnCaptor.getValue());
}
@Test
public void testBind() throws Exception {
String dnToBind = "some dn to bind";
initializeTest(dnToBind);
Attributes attributes = new BasicAttributes();
attributes.put("some attribute name", "some attribute value");
body.put(SpringLdapProducer.ATTRIBUTES, attributes);
producer.sendBody("spring-ldap:"
+ SpringLdapTestConfiguration.LDAP_MOCK_NAME
+ "?operation=bind", body);
ArgumentCaptor<String> dnCaptor = ArgumentCaptor.forClass(String.class);
ArgumentCaptor<Attributes> attributesCaptor = ArgumentCaptor
.forClass(Attributes.class);
ArgumentCaptor<Object> objectToBindCaptor = ArgumentCaptor
.forClass(Object.class);
Mockito.verify(ldapTemplate).bind(dnCaptor.capture(),
objectToBindCaptor.capture(), attributesCaptor.capture());
assertEquals(dnToBind, dnCaptor.getValue());
assertNull(objectToBindCaptor.getValue());
assertEquals(attributes, attributesCaptor.getValue());
}
@Test
public void testSearch() throws Exception {
String dnToSearch = "some dn to bind";
initializeTest(dnToSearch);
String filter = "some ldap filter";
body.put(SpringLdapProducer.FILTER, filter);
ArgumentCaptor<String> dnCaptor = ArgumentCaptor.forClass(String.class);
ArgumentCaptor<String> filterCaptor = ArgumentCaptor
.forClass(String.class);
ArgumentCaptor<Integer> scopeCaptor = ArgumentCaptor
.forClass(Integer.class);
ArgumentCaptor<AttributesMapper> mapperCaptor = ArgumentCaptor
.forClass(AttributesMapper.class);
List<String> searchResult = Collections
.singletonList("some search result");
when(
ldapTemplate.search(any(String.class), any(String.class),
any(Integer.class), any(AttributesMapper.class)))
.thenReturn(searchResult);
MockEndpoint resultEndpoint = (MockEndpoint) context
.getEndpoint("mock:result");
resultEndpoint.expectedBodiesReceived(Collections
.singletonList(searchResult));
producer.sendBody("direct:start", body);
Mockito.verify(ldapTemplate).search(dnCaptor.capture(),
filterCaptor.capture(), scopeCaptor.capture(),
mapperCaptor.capture());
assertEquals(dnToSearch, dnCaptor.getValue());
assertEquals((Integer) SearchControls.ONELEVEL_SCOPE,
scopeCaptor.getValue());
assertEquals(filter, filterCaptor.getValue());
resultEndpoint.assertIsSatisfied();
}
@Override
protected AbstractApplicationContext createApplicationContext() {
AnnotationConfigApplicationContext springContext = new AnnotationConfigApplicationContext();
springContext.register(SpringLdapTestConfiguration.class);
springContext.refresh();
return springContext;
}
@Override
protected RouteBuilder createRouteBuilder() {
return new RouteBuilder() {
private String ldapUriForSearchTest = "spring-ldap:"
+ SpringLdapTestConfiguration.LDAP_MOCK_NAME
+ "?operation=search&scope=onelevel";
public void configure() {
from("direct:start").to(ldapUriForSearchTest).to("mock:result");
}
};
}
private void initializeTest(String dn) {
ldapTemplate = context.getRegistry().lookupByNameAndType(
SpringLdapTestConfiguration.LDAP_MOCK_NAME, LdapTemplate.class);
producer = context.createProducerTemplate();
body = new HashMap<String, Object>();
body.put(SpringLdapProducer.DN, dn);
}
}