Skip to content
Snippets Groups Projects
Commit 9b091c05 authored by tpylak's avatar tpylak
Browse files

minor: DMV remove a test of termination before copy has started (this...

minor: DMV remove a test of termination before copy has started (this functionality has been removed)

SVN: 6566
parent 9a56b6bb
No related branches found
No related tags found
No related merge requests found
...@@ -224,19 +224,6 @@ public final class RsyncCopierTest ...@@ -224,19 +224,6 @@ public final class RsyncCopierTest
assertEquals(RsyncCopier.TERMINATED_STATUS, status); assertEquals(RsyncCopier.TERMINATED_STATUS, status);
} }
@Test(groups =
{ "requires_unix" })
public void testRsyncTerminationBeforeCopy() throws IOException, InterruptedException
{
final File sleepyRsyncBinary = createSleepProcess(100);
final RsyncCopier copier = new RsyncCopier(sleepyRsyncBinary, null, false, false);
// copy monitor can call this method before the copy starts
boolean wasRunning = copier.terminate();
assertEquals(false, wasRunning);
final Status status = copier.copy(sourceFile, destinationDirectory);
assertEquals(RsyncCopier.TERMINATED_STATUS, status);
}
private File createSleepProcess(int seconds) throws IOException, InterruptedException private File createSleepProcess(int seconds) throws IOException, InterruptedException
{ {
return createRsync("2.6.9", "/bin/sleep " + seconds); return createRsync("2.6.9", "/bin/sleep " + seconds);
......
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