Skip to content
Snippets Groups Projects
Commit 86b05df4 authored by felmer's avatar felmer
Browse files

LMS-2136 EagerShufflingTask: logging added

SVN: 20510
parent 0d76ae05
No related branches found
No related tags found
No related merge requests found
...@@ -31,6 +31,7 @@ import ch.systemsx.cisd.common.logging.ISimpleLogger; ...@@ -31,6 +31,7 @@ import ch.systemsx.cisd.common.logging.ISimpleLogger;
import ch.systemsx.cisd.common.logging.Log4jSimpleLogger; import ch.systemsx.cisd.common.logging.Log4jSimpleLogger;
import ch.systemsx.cisd.common.logging.LogCategory; import ch.systemsx.cisd.common.logging.LogCategory;
import ch.systemsx.cisd.common.logging.LogFactory; import ch.systemsx.cisd.common.logging.LogFactory;
import ch.systemsx.cisd.common.logging.LogLevel;
import ch.systemsx.cisd.common.utilities.ClassUtils; import ch.systemsx.cisd.common.utilities.ClassUtils;
import ch.systemsx.cisd.common.utilities.PropertyParametersUtil; import ch.systemsx.cisd.common.utilities.PropertyParametersUtil;
import ch.systemsx.cisd.common.utilities.PropertyUtils; import ch.systemsx.cisd.common.utilities.PropertyUtils;
...@@ -160,6 +161,8 @@ public class EagerShufflingTask extends AbstractPostRegistrationTask ...@@ -160,6 +161,8 @@ public class EagerShufflingTask extends AbstractPostRegistrationTask
shareWithMostFreeOrNull = finder.tryToFindShare(dataSet, shares); shareWithMostFreeOrNull = finder.tryToFindShare(dataSet, shares);
if (shareWithMostFreeOrNull == null) if (shareWithMostFreeOrNull == null)
{ {
logger.log(LogLevel.WARN, "No share found for shuffling data set " + dataSetCode
+ ".");
return new NoCleanupTask(); return new NoCleanupTask();
} }
return new NoCleanupTask(); return new NoCleanupTask();
...@@ -178,6 +181,9 @@ public class EagerShufflingTask extends AbstractPostRegistrationTask ...@@ -178,6 +181,9 @@ public class EagerShufflingTask extends AbstractPostRegistrationTask
dataSetMover.moveDataSetToAnotherShare( dataSetMover.moveDataSetToAnotherShare(
new File(share, dataSet.getDataSetLocation()), new File(share, dataSet.getDataSetLocation()),
shareWithMostFreeOrNull.getShare(), logger); shareWithMostFreeOrNull.getShare(), logger);
logger.log(LogLevel.INFO, "Data set " + dataSetCode
+ " succesffully moved from share " + dataSet.getDataSetShareId() + " to "
+ shareWithMostFreeOrNull.getShareId() + ".");
} }
} }
} }
......
...@@ -39,6 +39,7 @@ import ch.systemsx.cisd.common.filesystem.HostAwareFile; ...@@ -39,6 +39,7 @@ import ch.systemsx.cisd.common.filesystem.HostAwareFile;
import ch.systemsx.cisd.common.filesystem.IFreeSpaceProvider; import ch.systemsx.cisd.common.filesystem.IFreeSpaceProvider;
import ch.systemsx.cisd.common.logging.BufferedAppender; import ch.systemsx.cisd.common.logging.BufferedAppender;
import ch.systemsx.cisd.common.logging.ISimpleLogger; import ch.systemsx.cisd.common.logging.ISimpleLogger;
import ch.systemsx.cisd.common.logging.LogLevel;
import ch.systemsx.cisd.common.test.RecordingMatcher; import ch.systemsx.cisd.common.test.RecordingMatcher;
import ch.systemsx.cisd.etlserver.plugins.IDataSetMover; import ch.systemsx.cisd.etlserver.plugins.IDataSetMover;
import ch.systemsx.cisd.openbis.dss.generic.shared.IEncapsulatedOpenBISService; import ch.systemsx.cisd.openbis.dss.generic.shared.IEncapsulatedOpenBISService;
...@@ -115,6 +116,7 @@ public class EagerShufflingTaskTest extends AbstractFileSystemTestCase ...@@ -115,6 +116,7 @@ public class EagerShufflingTaskTest extends AbstractFileSystemTestCase
prepareFreeSpaceProvider(hostAwareFileMatcher, 200, 100, 300, 400); prepareFreeSpaceProvider(hostAwareFileMatcher, 200, 100, 300, 400);
prepareListDataSets(); prepareListDataSets();
prepareGetShareId(); prepareGetShareId();
RecordingMatcher<String> infoMessageMatcher = prepareLogging(LogLevel.INFO);
context.checking(new Expectations() context.checking(new Expectations()
{ {
{ {
...@@ -126,6 +128,8 @@ public class EagerShufflingTaskTest extends AbstractFileSystemTestCase ...@@ -126,6 +128,8 @@ public class EagerShufflingTaskTest extends AbstractFileSystemTestCase
executor.createCleanupTask(); executor.createCleanupTask();
executor.execute(); executor.execute();
assertEquals("Data set ds-1 succesffully moved from share 1 to 4.",
infoMessageMatcher.recordedObject());
assertHostAwareFile(hostAwareFileMatcher); assertHostAwareFile(hostAwareFileMatcher);
context.assertIsSatisfied(); context.assertIsSatisfied();
} }
...@@ -139,6 +143,7 @@ public class EagerShufflingTaskTest extends AbstractFileSystemTestCase ...@@ -139,6 +143,7 @@ public class EagerShufflingTaskTest extends AbstractFileSystemTestCase
prepareFreeSpaceProvider(hostAwareFileMatcher, 200, 100, 10, 0); prepareFreeSpaceProvider(hostAwareFileMatcher, 200, 100, 10, 0);
prepareListDataSets(); prepareListDataSets();
prepareGetShareId(); prepareGetShareId();
RecordingMatcher<String> infoMessageMatcher = prepareLogging(LogLevel.INFO);
context.checking(new Expectations() context.checking(new Expectations()
{ {
{ {
...@@ -150,6 +155,8 @@ public class EagerShufflingTaskTest extends AbstractFileSystemTestCase ...@@ -150,6 +155,8 @@ public class EagerShufflingTaskTest extends AbstractFileSystemTestCase
executor.createCleanupTask(); executor.createCleanupTask();
executor.execute(); executor.execute();
assertEquals("Data set ds-1 succesffully moved from share 1 to 2.",
infoMessageMatcher.recordedObject());
assertHostAwareFile(hostAwareFileMatcher); assertHostAwareFile(hostAwareFileMatcher);
context.assertIsSatisfied(); context.assertIsSatisfied();
} }
...@@ -162,15 +169,30 @@ public class EagerShufflingTaskTest extends AbstractFileSystemTestCase ...@@ -162,15 +169,30 @@ public class EagerShufflingTaskTest extends AbstractFileSystemTestCase
new RecordingMatcher<HostAwareFile>(); new RecordingMatcher<HostAwareFile>();
prepareFreeSpaceProvider(hostAwareFileMatcher, 200, 10, 10, 0); prepareFreeSpaceProvider(hostAwareFileMatcher, 200, 10, 10, 0);
prepareListDataSets(); prepareListDataSets();
RecordingMatcher<String> logMessageMatcher = prepareLogging(LogLevel.WARN);
IPostRegistrationTaskExecutor executor = task.createExecutor(DATA_SET_CODE1); IPostRegistrationTaskExecutor executor = task.createExecutor(DATA_SET_CODE1);
executor.createCleanupTask(); executor.createCleanupTask();
executor.execute(); executor.execute();
assertEquals("No share found for shuffling data set ds-1.",
logMessageMatcher.recordedObject());
assertHostAwareFile(hostAwareFileMatcher); assertHostAwareFile(hostAwareFileMatcher);
context.assertIsSatisfied(); context.assertIsSatisfied();
} }
private RecordingMatcher<String> prepareLogging(final LogLevel level)
{
final RecordingMatcher<String> logMessageMatcher = new RecordingMatcher<String>();
context.checking(new Expectations()
{
{
one(logger).log(with(level), with(logMessageMatcher));
}
});
return logMessageMatcher;
}
private void prepareListDataSets() private void prepareListDataSets()
{ {
context.checking(new Expectations() context.checking(new Expectations()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment