1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Require 100MB extra for import

This commit is contained in:
Mark McDowall 2013-08-08 09:24:23 -07:00
parent fca4d20046
commit 5fe78ba7bf
2 changed files with 11 additions and 1 deletions

View File

@ -63,6 +63,16 @@ public void should_reject_when_there_isnt_enough_disk_space()
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]
public void should_accept_when_there_is_enough_disk_space()
{

View File

@ -29,7 +29,7 @@ public bool IsSatisfiedBy(LocalEpisode localEpisode)
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);
return false;