瀏覽代碼

Comment out OpenLDAP tests to allow running in IDEA, and reduce default load configuration of performance test class.

Luke Taylor 15 年之前
父節點
當前提交
ea5f2088b5

+ 3 - 2
itest/context/src/test/java/org/springframework/security/performance/FilterChainPerformanceTests.java

@@ -34,8 +34,9 @@ import org.springframework.util.StopWatch;
 @ContextConfiguration(locations={"/filter-chain-performance-app-context.xml"})
 @RunWith(SpringJUnit4ClassRunner.class)
 public class FilterChainPerformanceTests {
-    private static final int N_INVOCATIONS = 1000;
-    private static final int N_AUTHORITIES = 200;
+    // Adjust as required
+    private static final int N_INVOCATIONS = 1; // 1000
+    private static final int N_AUTHORITIES = 2; // 200
     private static StopWatch sw = new StopWatch("Filter Chain Performance Tests");
 
     private final UsernamePasswordAuthenticationToken user = new UsernamePasswordAuthenticationToken("bob", "bobspassword", createRoles(N_AUTHORITIES));

+ 2 - 2
ldap/src/test/java/org/springframework/security/ldap/ppolicy/OpenLDAPIntegrationTestSuite.java

@@ -21,7 +21,7 @@ import org.springframework.security.ldap.userdetails.LdapUserDetailsImpl;
  */
 public class OpenLDAPIntegrationTestSuite {
     PasswordPolicyAwareContextSource cs;
-
+/*
     @Before
     public void createContextSource() throws Exception {
         cs = new PasswordPolicyAwareContextSource("ldap://localhost:22389/dc=springsource,dc=com");
@@ -62,5 +62,5 @@ public class OpenLDAPIntegrationTestSuite {
         PasswordPolicyData ud = (LdapUserDetailsImpl) a.getPrincipal();
         assertTrue(ud.getTimeBeforeExpiration() < Integer.MAX_VALUE && ud.getTimeBeforeExpiration() > 0);
     }
-
+*/
 }