Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_changePassword_failure (0.07 sec)

  1. src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java

            assertEquals("newpassword", testLdapManager.changePasswordPassword);
            assertTrue(testLdapManager.changePasswordCalled);
        }
    
        public void test_changePassword_failure() {
            // Test failed password change when LDAP admin sync is disabled
            testLdapManager.changePasswordResult = false;
            testFessConfig.ldapAdminSyncPassword = false;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java

            assertEquals("newpassword123", chain.changePasswordCalls.get(0).getValue());
        }
    
        // Test changePassword with failure
        public void test_changePassword_failure() {
            TestAuthenticationChain chain = new TestAuthenticationChain();
            chain.changePasswordResult = false;
    
            boolean result = chain.changePassword("testuser", "newpassword");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14.6K bytes
    - Viewed (0)
Back to top