diff --git a/authentication/sourceTest/java/ch/systemsx/cisd/authentication/crowd/CrowdAuthenticationServiceTest.java b/authentication/sourceTest/java/ch/systemsx/cisd/authentication/crowd/CrowdAuthenticationServiceTest.java index 6772aac71c5e8038e8600f4bb7e057159dd14ed5..ad518362a434b880c4affcd05154a7916ff97d7f 100644 --- a/authentication/sourceTest/java/ch/systemsx/cisd/authentication/crowd/CrowdAuthenticationServiceTest.java +++ b/authentication/sourceTest/java/ch/systemsx/cisd/authentication/crowd/CrowdAuthenticationServiceTest.java @@ -115,8 +115,7 @@ public class CrowdAuthenticationServiceTest final boolean result = authenticationService.authenticateUser(USER, USER_PASSWORD); assertEquals(true, result); - assertEquals(createDebugLogEntry("CROWD: application '" + APPLICATION - + "' successfully authenticated.") + assertEquals(createAuthenticatedSuccessfullyLog() + OSUtilities.LINE_SEPARATOR + createInfoLogEntry("CROWD: authentication of user '" + USER + "', application '" + APPLICATION + "': SUCCESS."), logRecorder.getLogContent()); @@ -150,8 +149,7 @@ public class CrowdAuthenticationServiceTest final boolean result = authenticationService.authenticateUser(USER, USER_PASSWORD); assertEquals(false, result); - assertEquals(createDebugLogEntry("CROWD: application '" + APPLICATION - + "' successfully authenticated.") + assertEquals(createAuthenticatedSuccessfullyLog() + OSUtilities.LINE_SEPARATOR + createDebugLogEntry("Element '" + CrowdSoapElements.OUT + "' could not be found in 'error'.") @@ -205,8 +203,7 @@ public class CrowdAuthenticationServiceTest assertEquals("false", result.getProperty("requiresPasswordChange")); assertEquals("1169440408520", result.getProperty("lastAuthenticated")); assertEquals("1168995491407", result.getProperty("passwordLastChanged")); - assertEquals(createDebugLogEntry("CROWD: application '" + APPLICATION - + "' successfully authenticated."), logRecorder.getLogContent()); + assertEquals(createAuthenticatedSuccessfullyLog(), logRecorder.getLogContent()); context.assertIsSatisfied(); } @@ -241,8 +238,7 @@ public class CrowdAuthenticationServiceTest } assertEquals( - createDebugLogEntry("CROWD: application '" + APPLICATION - + "' successfully authenticated.") + createAuthenticatedSuccessfullyLog() + OSUtilities.LINE_SEPARATOR + createDebugLogEntry("No SOAPAttribute element could be found in the SOAP XML response."), logRecorder.getLogContent()); @@ -250,6 +246,17 @@ public class CrowdAuthenticationServiceTest context.assertIsSatisfied(); } + private String createAuthenticatedSuccessfullyLog() + { + final String authenticateLogs = + createInfoLogEntry("CROWD: Attempting to authenticate as application " + + APPLICATION + "...") + + OSUtilities.LINE_SEPARATOR + + createInfoLogEntry("CROWD: application '" + APPLICATION + + "' successfully authenticated."); + return authenticateLogs; + } + private String createDebugLogEntry(final String message) { return createLogEntry("DEBUG", message);