5

单元测试中的 Spring 嵌入式 ldap 服务器是类似的,但是没有给出适合我的答案。

我可以毫无问题地使用 spring 和 spring-security 的嵌入式 ldap 服务器运行我的集成测试。但是,我还没有找到清除嵌入式 ldap 服务器并再次加载 ldif 以提供通用测试环境的方法。

spring-ldap 的 LdapTestUtils 提供了一个 cleanAndSetup() 方法。但是,这不适用于 apache-ds 的建议版本 (1.5.5),因为 LdifFileLoader 现在需要CoreSession而不是 LdapTestUtils 提供的DirContext。这会导致

java.lang.NoSuchMethodError:
org.apache.directory.server.protocol.shared.store.LdifFileLoader.<init>(Ljavax/naming/directory/DirContext;Ljava/lang/String;)

我只想要一种清除嵌入式 ldap 服务器并再次用 ldif 文件填充它的方法(就像在启动时所做的那样)。有人对此有任何想法吗?

版本:spring 3.1、spring-ldap 1.3、spring-security 3.1、apache-ds 1.5.5

解决方案(感谢 Luke Taylor):

@Inject
private ApplicationContext applicationContext;

@Before
public void reloadLdapDirectory() throws NamingException, IOException{
    ApacheDSContainer apacheDSContainer = (ApacheDSContainer) applicationContext.getBean(BeanIds.EMBEDDED_APACHE_DS);
    LdapTestUtils.clearSubContexts(contextSource, DistinguishedName.EMPTY_PATH);

    ClassPathResource classPathResource = new ClassPathResource("ldap.ldif");

    File tempFile = File.createTempFile("spring_ldap_test", ".ldif");
    try {
        InputStream inputStream = classPathResource.getInputStream();
        IOUtils.copy(inputStream, new FileOutputStream(tempFile));
        LdifFileLoader fileLoader = new LdifFileLoader(apacheDSContainer.getService().getAdminSession(), tempFile.getAbsolutePath());
        fileLoader.execute();
    }
    finally {
        try {
            tempFile.delete();
        }
        catch (Exception e) {
            // Ignore this
        }
    }
}
4

1 回答 1

4

为什么不看看 Spring Security 的LDAP 集成测试并将其用作指南?

目前,这些只是使用 LDAP 模板来清除每个测试在必要时创建的数据(为了速度),但是还有一个注释掉的Junit@After方法可以重新加载 LDIF 文件。CoreSession是通过调用getAdminSession()服务器实例 (a ) 获得的DefaultDirectoryService

如果您确实必须使用 XML 应用程序上下文运行测试,请使用该<ldap-server />元素,您可以使用:

getBeanByName(BeanIds.EMBEDDED_APACHE_DS).getService()

访问DefaultDirectoryService实例。

于 2012-11-16T18:16:26.273 回答