mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-28 21:12:43 +02:00
Require 100MB extra for import
This commit is contained in:
@@ -63,6 +63,16 @@ namespace NzbDrone.Core.Test.MediaFileTests.EpisodeImportTests
|
|||||||
ExceptionVerification.ExpectedWarns(1);
|
ExceptionVerification.ExpectedWarns(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_reject_when_there_isnt_enough_space_for_file_plus_100mb_padding()
|
||||||
|
{
|
||||||
|
GivenFileSize(100.Megabytes());
|
||||||
|
GivenFreeSpace(150.Megabytes());
|
||||||
|
|
||||||
|
Subject.IsSatisfiedBy(_localEpisode).Should().BeFalse();
|
||||||
|
ExceptionVerification.ExpectedWarns(1);
|
||||||
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void should_accept_when_there_is_enough_disk_space()
|
public void should_accept_when_there_is_enough_disk_space()
|
||||||
{
|
{
|
||||||
|
@@ -29,7 +29,7 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport.Specifications
|
|||||||
|
|
||||||
var freeSpace = _diskProvider.GetAvilableSpace(destinationFilename);
|
var freeSpace = _diskProvider.GetAvilableSpace(destinationFilename);
|
||||||
|
|
||||||
if (freeSpace < localEpisode.Size)
|
if (freeSpace < localEpisode.Size + 100.Megabytes())
|
||||||
{
|
{
|
||||||
_logger.Warn("Not enough free space to import: {0}", localEpisode);
|
_logger.Warn("Not enough free space to import: {0}", localEpisode);
|
||||||
return false;
|
return false;
|
||||||
|
Reference in New Issue
Block a user