当前位置: 首页>>代码示例>>Java>>正文


Java LdapTestUtils.shutdownEmbeddedServer方法代码示例

本文整理汇总了Java中org.springframework.ldap.test.LdapTestUtils.shutdownEmbeddedServer方法的典型用法代码示例。如果您正苦于以下问题:Java LdapTestUtils.shutdownEmbeddedServer方法的具体用法?Java LdapTestUtils.shutdownEmbeddedServer怎么用?Java LdapTestUtils.shutdownEmbeddedServer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.springframework.ldap.test.LdapTestUtils的用法示例。


在下文中一共展示了LdapTestUtils.shutdownEmbeddedServer方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: tearDown

import org.springframework.ldap.test.LdapTestUtils; //导入方法依赖的package包/类
@After
public void tearDown() throws Exception {
    LdapTestUtils.shutdownEmbeddedServer();

    contextSource=null;
    converterManager=null;
}
 
开发者ID:spring-projects,项目名称:spring-ldap,代码行数:8,代码来源:TestSchemaToJava.java

示例2: verifyThatInvalidConnectionIsAutomaticallyPurged

import org.springframework.ldap.test.LdapTestUtils; //导入方法依赖的package包/类
/**
 * This method depends on a DirObjectFactory (
 * {@link org.springframework.ldap.core.support.DefaultDirObjectFactory})
 * being set in the ContextSource.
 */
@Test
public void verifyThatInvalidConnectionIsAutomaticallyPurged() throws Exception {
       LdapTestUtils.startEmbeddedServer(1888, "dc=261consulting,dc=com", "jayway");
       LdapTestUtils.cleanAndSetup(contextSource, LdapUtils.emptyLdapName(), new ClassPathResource("/setup_data.ldif"));

	DirContextOperations result = tested.lookupContext("cn=Some Person2, ou=company1,ou=Sweden");
       assertThat(result.getStringAttribute("cn")).isEqualTo("Some Person2");
       assertThat(result.getStringAttribute("sn")).isEqualTo("Person2");
       assertThat(result.getStringAttribute("description")).isEqualTo("Sweden, Company1, Some Person2");

       // Shutdown server and kill all existing connections
       LdapTestUtils.shutdownEmbeddedServer();
       LdapTestUtils.startEmbeddedServer(1888, "dc=261consulting,dc=com", "jayway");

       try {
           tested.lookup("cn=Some Person2, ou=company1,ou=Sweden");
           fail("Exception expected");
       } catch (Exception expected) {
           // This should fail because the target connection was closed
           assertThat(true).isTrue();
       }

       LdapTestUtils.cleanAndSetup(contextSource, LdapUtils.emptyLdapName(), new ClassPathResource("/setup_data.ldif"));
       // But this should be OK, because the dirty connection should have been automatically purged.
       tested.lookup("cn=Some Person2, ou=company1,ou=Sweden");
   }
 
开发者ID:spring-projects,项目名称:spring-ldap,代码行数:32,代码来源:LdapTemplatePooledITest.java

示例3: tearDownClass

import org.springframework.ldap.test.LdapTestUtils; //导入方法依赖的package包/类
@AfterClass
public static void tearDownClass() throws Exception
{
    LdapTestUtils.shutdownEmbeddedServer();
}
 
开发者ID:geoserver,项目名称:geofence,代码行数:6,代码来源:BaseDAOTest.java

示例4: tearDownClass

import org.springframework.ldap.test.LdapTestUtils; //导入方法依赖的package包/类
@AfterClass
public static void tearDownClass() throws Exception {
    LdapTestUtils.shutdownEmbeddedServer();
}
 
开发者ID:spring-projects,项目名称:spring-ldap,代码行数:5,代码来源:TestSchemaViewer.java

示例5: tearDownClass

import org.springframework.ldap.test.LdapTestUtils; //导入方法依赖的package包/类
@AfterClass
public static void tearDownClass() throws Exception {
    // Stop the in process LDAP server
    LdapTestUtils.shutdownEmbeddedServer();
}
 
开发者ID:spring-projects,项目名称:spring-ldap,代码行数:6,代码来源:TestSchemaToJava.java

示例6: cleanup

import org.springframework.ldap.test.LdapTestUtils; //导入方法依赖的package包/类
@After
public void cleanup() throws Exception {
    LdapTestUtils.shutdownEmbeddedServer();
}
 
开发者ID:spring-projects,项目名称:spring-ldap,代码行数:5,代码来源:LdapTemplatePooledITest.java


注:本文中的org.springframework.ldap.test.LdapTestUtils.shutdownEmbeddedServer方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。