Ripme no longer downloads whole files during unittests if the file is over 10mb
This commit is contained in:
parent
5bb1e0debe
commit
75908f4b0f
@ -47,7 +47,7 @@ public abstract class AbstractRipper
|
||||
// Everytime addUrlToDownload skips a already downloaded url this increases by 1
|
||||
public int alreadyDownloadedUrls = 0;
|
||||
private boolean shouldStop = false;
|
||||
private boolean thisIsATest = false;
|
||||
private static boolean thisIsATest = false;
|
||||
|
||||
public void stop() {
|
||||
shouldStop = true;
|
||||
@ -611,7 +611,7 @@ public abstract class AbstractRipper
|
||||
LOGGER.debug("THIS IS A TEST RIP");
|
||||
thisIsATest = true;
|
||||
}
|
||||
protected boolean isThisATest() {
|
||||
protected static boolean isThisATest() {
|
||||
return thisIsATest;
|
||||
}
|
||||
|
||||
|
@ -23,6 +23,7 @@ import org.jsoup.HttpStatusException;
|
||||
|
||||
import com.rarchives.ripme.ui.RipStatusMessage.STATUS;
|
||||
import com.rarchives.ripme.utils.Utils;
|
||||
import com.rarchives.ripme.ripper.AbstractRipper;
|
||||
|
||||
/**
|
||||
* Thread for downloading files.
|
||||
@ -222,6 +223,14 @@ class DownloadFileThread extends Thread {
|
||||
observer.setBytesCompleted(bytesDownloaded);
|
||||
observer.sendUpdate(STATUS.COMPLETED_BYTES, bytesDownloaded);
|
||||
}
|
||||
// If this is a test and we're downloading a large file
|
||||
if (AbstractRipper.isThisATest() && bytesTotal / 10000000 >= 10) {
|
||||
logger.debug("Not downloading whole file because it is over 10mb and this is a test");
|
||||
bis.close();
|
||||
fos.close();
|
||||
break;
|
||||
|
||||
}
|
||||
}
|
||||
bis.close();
|
||||
fos.close();
|
||||
|
Loading…
Reference in New Issue
Block a user