From faa142b05c54527b7202ca5c4115034d4b427b5b Mon Sep 17 00:00:00 2001
From: felmer <felmer>
Date: Thu, 28 Jun 2007 11:52:35 +0000
Subject: [PATCH] bug in test fixed: reset recorder

SVN: 730
---
 .../crowd/CrowdAuthenticationServiceTest.java               | 6 ++++++
 1 file changed, 6 insertions(+)

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 ff856edad4e..7aced698974 100644
--- a/authentication/sourceTest/java/ch/systemsx/cisd/authentication/crowd/CrowdAuthenticationServiceTest.java
+++ b/authentication/sourceTest/java/ch/systemsx/cisd/authentication/crowd/CrowdAuthenticationServiceTest.java
@@ -119,6 +119,7 @@ public class CrowdAuthenticationServiceTest
 
         });
         
+        logRecorder.reset();
         String result = authenticationService.authenticateApplication();
         assertEquals(APPLICATION_TOKEN, result);
         assertEquals(createDebugLogEntry("CROWD: application '" + APPLICATION + "' successfully authenticated."), 
@@ -140,6 +141,7 @@ public class CrowdAuthenticationServiceTest
             }
         });
         
+        logRecorder.reset();
         String result = authenticationService.authenticateApplication();
         assertEquals(null, result);
         assertEquals(createDebugLogEntry("Element '" + CrowdSoapElements.TOKEN + "' could not be found in 'error'.") 
@@ -163,6 +165,7 @@ public class CrowdAuthenticationServiceTest
             }
         });
         
+        logRecorder.reset();
         boolean result = authenticationService.authenticateUser(APPLICATION_TOKEN, USER, USER_PASSWORD);
         assertEquals(true, result);
         assertEquals(createInfoLogEntry("CROWD: authentication of user '" + USER + "', application '" + APPLICATION 
@@ -185,6 +188,7 @@ public class CrowdAuthenticationServiceTest
             }
         });
         
+        logRecorder.reset();
         boolean result = authenticationService.authenticateUser(APPLICATION_TOKEN, USER, USER_PASSWORD);
         assertEquals(false, result);
         assertEquals(createDebugLogEntry("Element '" + CrowdSoapElements.OUT + "' could not be found in 'error'.") 
@@ -219,6 +223,7 @@ public class CrowdAuthenticationServiceTest
             }
         });
         
+        logRecorder.reset();
         Principal result = authenticationService.getPrincipal(APPLICATION_TOKEN, USER);
         assertEquals("Justen", result.getFirstName());
         assertEquals("Stepka", result.getLastName());
@@ -245,6 +250,7 @@ public class CrowdAuthenticationServiceTest
             }
         });
         
+        logRecorder.reset();
         try
         {
             authenticationService.getPrincipal(APPLICATION_TOKEN, USER);
-- 
GitLab