mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
103 lines
3.2 KiB
C#
103 lines
3.2 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using FizzWare.NBuilder;
|
|
using FluentAssertions;
|
|
using Moq;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Core.MediaFiles.EpisodeImport.Specifications;
|
|
using NzbDrone.Core.Parser.Model;
|
|
using NzbDrone.Core.Providers;
|
|
using NzbDrone.Core.Test.Framework;
|
|
using NzbDrone.Core.Tv;
|
|
using NzbDrone.Test.Common;
|
|
|
|
namespace NzbDrone.Core.Test.MediaFileTests.EpisodeImportTests
|
|
{
|
|
[TestFixture]
|
|
public class FreeSpaceSpecificationFixture : CoreTest<FreeSpaceSpecification>
|
|
{
|
|
private Series _series;
|
|
private LocalEpisode _localEpisode;
|
|
private String _rootFolder;
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
_rootFolder = @"C:\Test\TV".AsOsAgnostic();
|
|
|
|
_series = Builder<Series>.CreateNew()
|
|
.With(s => s.SeriesType = SeriesTypes.Standard)
|
|
.With(s => s.Path = Path.Combine(_rootFolder, "30 Rock"))
|
|
.Build();
|
|
|
|
var episodes = Builder<Episode>.CreateListOfSize(1)
|
|
.All()
|
|
.With(e => e.SeasonNumber = 1)
|
|
.Build()
|
|
.ToList();
|
|
|
|
_localEpisode = new LocalEpisode
|
|
{
|
|
Path = @"C:\Test\30 Rock\30.rock.s01e01.avi",
|
|
Episodes = episodes,
|
|
Series = _series
|
|
};
|
|
}
|
|
|
|
private void GivenFileSize(long size)
|
|
{
|
|
_localEpisode.Size = size;
|
|
}
|
|
|
|
private void GivenFreeSpace(long size)
|
|
{
|
|
Mocker.GetMock<IDiskProvider>()
|
|
.Setup(s => s.GetAvilableSpace(It.IsAny<String>()))
|
|
.Returns(size);
|
|
}
|
|
|
|
[Test]
|
|
public void should_reject_when_there_isnt_enough_disk_space()
|
|
{
|
|
GivenFileSize(100.Megabytes());
|
|
GivenFreeSpace(80.Megabytes());
|
|
|
|
Subject.IsSatisfiedBy(_localEpisode).Should().BeFalse();
|
|
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()
|
|
{
|
|
GivenFileSize(100.Megabytes());
|
|
GivenFreeSpace(1.Gigabytes());
|
|
|
|
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(_rootFolder), Times.Once());
|
|
}
|
|
}
|
|
}
|