mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
147 lines
4.6 KiB
C#
147 lines
4.6 KiB
C#
using System;
|
|
using System.IO;
|
|
using FizzWare.NBuilder;
|
|
using Moq;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Core.Configuration;
|
|
using NzbDrone.Core.MediaFiles;
|
|
using NzbDrone.Core.MediaFiles.Events;
|
|
using NzbDrone.Core.Parser;
|
|
using NzbDrone.Core.Tv;
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
namespace NzbDrone.Core.Test.ProviderTests.PostDownloadProviderTests
|
|
{
|
|
[TestFixture]
|
|
public class DropFolderImportServiceFixture : CoreTest<DownloadedEpisodesImportService>
|
|
{
|
|
private EpisodeFile _fakeEpisodeFile;
|
|
|
|
private string[] _subFolders = new[] { "c:\\root\\foldername" };
|
|
private string[] _videoFiles = new[] { "c:\\root\\foldername\\video.ext" };
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
_fakeEpisodeFile = Builder<EpisodeFile>.CreateNew().Build();
|
|
|
|
|
|
Mocker.GetMock<IDiskScanService>().Setup(c => c.GetVideoFiles(It.IsAny<string>(), It.IsAny<bool>()))
|
|
.Returns(_videoFiles);
|
|
|
|
Mocker.GetMock<IDiskProvider>().Setup(c => c.GetDirectories(It.IsAny<string>()))
|
|
.Returns(_subFolders);
|
|
|
|
Mocker.GetMock<IConfigService>().SetupGet(c => c.DownloadedEpisodesFolder)
|
|
.Returns("c:\\drop\\");
|
|
}
|
|
|
|
private void WithOldWrite()
|
|
{
|
|
Mocker.GetMock<IDiskProvider>()
|
|
.Setup(c => c.GetLastFolderWrite(It.IsAny<String>()))
|
|
.Returns(DateTime.Now.AddDays(-5));
|
|
}
|
|
|
|
private void WithRecentFolderWrite()
|
|
{
|
|
Mocker.GetMock<IDiskProvider>()
|
|
.Setup(c => c.GetLastFolderWrite(It.IsAny<String>()))
|
|
.Returns(DateTime.UtcNow);
|
|
|
|
Mocker.GetMock<IDiskProvider>()
|
|
.Setup(c => c.GetLastFileWrite(It.IsAny<String>()))
|
|
.Returns(DateTime.UtcNow);
|
|
}
|
|
|
|
[Test]
|
|
public void should_import_file()
|
|
{
|
|
Subject.ProcessDownloadedEpisodesFolder();
|
|
|
|
VerifyImport();
|
|
}
|
|
|
|
[Test]
|
|
public void should_search_for_series_using_folder_name()
|
|
{
|
|
WithOldWrite();
|
|
|
|
Subject.ProcessDownloadedEpisodesFolder();
|
|
|
|
Mocker.GetMock<IParsingService>().Verify(c => c.GetSeries("foldername"), Times.Once());
|
|
|
|
}
|
|
|
|
[Test]
|
|
public void all_imported_files_should_be_moved()
|
|
{
|
|
Mocker.GetMock<IDiskScanService>().Setup(c => c.ImportFile(It.IsAny<Series>(), It.IsAny<string>()))
|
|
.Returns(_fakeEpisodeFile);
|
|
|
|
Subject.ProcessDownloadedEpisodesFolder();
|
|
|
|
Mocker.GetMock<IMoveEpisodeFiles>().Verify(c => c.MoveEpisodeFile(_fakeEpisodeFile, true), Times.Once());
|
|
}
|
|
|
|
[Test]
|
|
public void should_trigger_import_event_on_import()
|
|
{
|
|
Mocker.GetMock<IDiskScanService>().Setup(c => c.ImportFile(It.IsAny<Series>(), It.IsAny<string>()))
|
|
.Returns(_fakeEpisodeFile);
|
|
|
|
Subject.ProcessDownloadedEpisodesFolder();
|
|
|
|
VerifyEventPublished<EpisodeImportedEvent>();
|
|
|
|
}
|
|
|
|
[Test]
|
|
public void should_not_attempt_move_if_nothing_is_imported()
|
|
{
|
|
Mocker.GetMock<IDiskScanService>().Setup(c => c.ImportFile(It.IsAny<Series>(), It.IsAny<string>()))
|
|
.Returns<EpisodeFile>(null);
|
|
|
|
Subject.ProcessDownloadedEpisodesFolder();
|
|
|
|
Mocker.GetMock<IMoveEpisodeFiles>().Verify(c => c.MoveEpisodeFile(It.IsAny<EpisodeFile>(), It.IsAny<bool>()), Times.Never());
|
|
}
|
|
|
|
|
|
[Test]
|
|
public void should_not_publish_import_event_if_nothing_is_imported()
|
|
{
|
|
Mocker.GetMock<IDiskScanService>().Setup(c => c.ImportFile(It.IsAny<Series>(), It.IsAny<string>()))
|
|
.Returns<EpisodeFile>(null);
|
|
|
|
Subject.ProcessDownloadedEpisodesFolder();
|
|
|
|
|
|
VerifyEventNotPublished<EpisodeImportedEvent>();
|
|
}
|
|
|
|
[Test]
|
|
public void should_skip_if_folder_is_in_use_by_another_process()
|
|
{
|
|
|
|
Mocker.GetMock<IDiskProvider>().Setup(c => c.IsFileLocked(It.IsAny<FileInfo>()))
|
|
.Returns(true);
|
|
|
|
Subject.ProcessDownloadedEpisodesFolder();
|
|
VerifyNoImport();
|
|
}
|
|
|
|
private void VerifyNoImport()
|
|
{
|
|
Mocker.GetMock<IDiskScanService>().Verify(c => c.ImportFile(It.IsAny<Series>(), It.IsAny<string>()),
|
|
Times.Never());
|
|
}
|
|
|
|
private void VerifyImport()
|
|
{
|
|
Mocker.GetMock<IDiskScanService>().Verify(c => c.ImportFile(It.IsAny<Series>(), It.IsAny<string>()),
|
|
Times.Once());
|
|
}
|
|
}
|
|
} |