mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
Free space check should use series' parent directory
This commit is contained in:
parent
f23c7e94ff
commit
4ea35ae626
@ -1,4 +1,5 @@
|
|||||||
using System;
|
using System;
|
||||||
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using FizzWare.NBuilder;
|
using FizzWare.NBuilder;
|
||||||
using FluentAssertions;
|
using FluentAssertions;
|
||||||
@ -19,12 +20,14 @@ public class FreeSpaceSpecificationFixture : CoreTest<FreeSpaceSpecification>
|
|||||||
{
|
{
|
||||||
private Series _series;
|
private Series _series;
|
||||||
private LocalEpisode _localEpisode;
|
private LocalEpisode _localEpisode;
|
||||||
|
private const String ROOT_FOLDER = @"C:\Test\TV";
|
||||||
|
|
||||||
[SetUp]
|
[SetUp]
|
||||||
public void Setup()
|
public void Setup()
|
||||||
{
|
{
|
||||||
_series = Builder<Series>.CreateNew()
|
_series = Builder<Series>.CreateNew()
|
||||||
.With(s => s.SeriesType = SeriesTypes.Standard)
|
.With(s => s.SeriesType = SeriesTypes.Standard)
|
||||||
|
.With(s => s.Path = Path.Combine(ROOT_FOLDER, "30 Rock"))
|
||||||
.Build();
|
.Build();
|
||||||
|
|
||||||
var episodes = Builder<Episode>.CreateListOfSize(1)
|
var episodes = Builder<Episode>.CreateListOfSize(1)
|
||||||
@ -81,5 +84,17 @@ public void should_accept_when_there_is_enough_disk_space()
|
|||||||
|
|
||||||
Subject.IsSatisfiedBy(_localEpisode).Should().BeTrue();
|
Subject.IsSatisfiedBy(_localEpisode).Should().BeTrue();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_use_series_paths_parent_for_free_space_check()
|
||||||
|
{
|
||||||
|
GivenFileSize(100.Megabytes());
|
||||||
|
GivenFreeSpace(1.Gigabytes());
|
||||||
|
|
||||||
|
Subject.IsSatisfiedBy(_localEpisode).Should().BeTrue();
|
||||||
|
|
||||||
|
Mocker.GetMock<IDiskProvider>()
|
||||||
|
.Verify(v => v.GetAvilableSpace(ROOT_FOLDER), Times.Once());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -21,8 +21,9 @@ public FreeSpaceSpecification(IDiskProvider diskProvider, Logger logger)
|
|||||||
public string RejectionReason { get { return "Not enough free space"; } }
|
public string RejectionReason { get { return "Not enough free space"; } }
|
||||||
|
|
||||||
public bool IsSatisfiedBy(LocalEpisode localEpisode)
|
public bool IsSatisfiedBy(LocalEpisode localEpisode)
|
||||||
{
|
{
|
||||||
var freeSpace = _diskProvider.GetAvilableSpace(localEpisode.Series.Path);
|
var path = Directory.GetParent(localEpisode.Series.Path);
|
||||||
|
var freeSpace = _diskProvider.GetAvilableSpace(path.FullName);
|
||||||
|
|
||||||
if (freeSpace < localEpisode.Size + 100.Megabytes())
|
if (freeSpace < localEpisode.Size + 100.Megabytes())
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user