New: Improved the DownloadedEpisodesScanCommand endpoint to better support external triggers to CDH. (nzbToMedia)
parent
ba38160430
commit
0b48630c00
@ -0,0 +1,173 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using System.IO;
|
||||||
|
using FizzWare.NBuilder;
|
||||||
|
using FluentAssertions;
|
||||||
|
using Moq;
|
||||||
|
using NUnit.Framework;
|
||||||
|
using NzbDrone.Common.Disk;
|
||||||
|
using NzbDrone.Core.Configuration;
|
||||||
|
using NzbDrone.Core.Download;
|
||||||
|
using NzbDrone.Core.MediaFiles;
|
||||||
|
using NzbDrone.Core.MediaFiles.Commands;
|
||||||
|
using NzbDrone.Core.MediaFiles.EpisodeImport;
|
||||||
|
using NzbDrone.Core.Parser.Model;
|
||||||
|
using NzbDrone.Core.Test.Framework;
|
||||||
|
using NzbDrone.Test.Common;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Test.MediaFiles
|
||||||
|
{
|
||||||
|
[TestFixture]
|
||||||
|
public class DownloadedEpisodesCommandServiceFixture : CoreTest<DownloadedEpisodesCommandService>
|
||||||
|
{
|
||||||
|
private string _droneFactory = "c:\\drop\\".AsOsAgnostic();
|
||||||
|
private string _downloadFolder = "c:\\drop_other\\Show.S01E01\\".AsOsAgnostic();
|
||||||
|
|
||||||
|
private TrackedDownload _trackedDownload;
|
||||||
|
|
||||||
|
[SetUp]
|
||||||
|
public void Setup()
|
||||||
|
{
|
||||||
|
Mocker.GetMock<IDiskProvider>().Setup(c => c.FolderExists(It.IsAny<string>()))
|
||||||
|
.Returns(true);
|
||||||
|
|
||||||
|
Mocker.GetMock<IConfigService>().SetupGet(c => c.DownloadedEpisodesFolder)
|
||||||
|
.Returns(_droneFactory);
|
||||||
|
|
||||||
|
Mocker.GetMock<IDownloadedEpisodesImportService>()
|
||||||
|
.Setup(v => v.ProcessRootFolder(It.IsAny<DirectoryInfo>()))
|
||||||
|
.Returns(new List<ImportResult>());
|
||||||
|
|
||||||
|
Mocker.GetMock<IDownloadedEpisodesImportService>()
|
||||||
|
.Setup(v => v.ProcessFolder(It.IsAny<DirectoryInfo>(), It.IsAny<DownloadClientItem>()))
|
||||||
|
.Returns(new List<ImportResult>());
|
||||||
|
|
||||||
|
var downloadItem = Builder<DownloadClientItem>.CreateNew()
|
||||||
|
.With(v => v.DownloadClientId = "sab1")
|
||||||
|
.With(v => v.Status = DownloadItemStatus.Downloading)
|
||||||
|
.Build();
|
||||||
|
|
||||||
|
_trackedDownload = new TrackedDownload
|
||||||
|
{
|
||||||
|
DownloadItem = downloadItem,
|
||||||
|
State = TrackedDownloadState.Downloading
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private void GivenValidQueueItem()
|
||||||
|
{
|
||||||
|
var downloadItem = Builder<DownloadClientItem>.CreateNew()
|
||||||
|
.With(v => v.DownloadClientId = "sab1")
|
||||||
|
.With(v => v.Status = DownloadItemStatus.Downloading)
|
||||||
|
.Build();
|
||||||
|
|
||||||
|
Mocker.GetMock<IDownloadTrackingService>()
|
||||||
|
.Setup(s => s.GetQueuedDownloads())
|
||||||
|
.Returns(new [] { _trackedDownload });
|
||||||
|
}
|
||||||
|
|
||||||
|
private void GivenSuccessfulImport()
|
||||||
|
{
|
||||||
|
Mocker.GetMock<IDownloadedEpisodesImportService>()
|
||||||
|
.Setup(v => v.ProcessFolder(It.IsAny<DirectoryInfo>(), It.IsAny<DownloadClientItem>()))
|
||||||
|
.Returns(new List<ImportResult>() {
|
||||||
|
new ImportResult(new ImportDecision(new LocalEpisode() { Path = @"C:\TestPath\Droned.S01E01.mkv" }))
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private void GivenRejectedImport()
|
||||||
|
{
|
||||||
|
Mocker.GetMock<IDownloadedEpisodesImportService>()
|
||||||
|
.Setup(v => v.ProcessFolder(It.IsAny<DirectoryInfo>(), It.IsAny<DownloadClientItem>()))
|
||||||
|
.Returns(new List<ImportResult>() {
|
||||||
|
new ImportResult(new ImportDecision(new LocalEpisode() { Path = @"C:\TestPath\Droned.S01E01.mkv" }, "Some Rejection"), "I was rejected")
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private void GivenSkippedImport()
|
||||||
|
{
|
||||||
|
Mocker.GetMock<IDownloadedEpisodesImportService>()
|
||||||
|
.Setup(v => v.ProcessFolder(It.IsAny<DirectoryInfo>(), It.IsAny<DownloadClientItem>()))
|
||||||
|
.Returns(new List<ImportResult>() {
|
||||||
|
new ImportResult(new ImportDecision(new LocalEpisode() { Path = @"C:\TestPath\Droned.S01E01.mkv" }), "I was skipped")
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_process_dronefactory_if_path_is_not_specified()
|
||||||
|
{
|
||||||
|
Subject.Execute(new DownloadedEpisodesScanCommand());
|
||||||
|
|
||||||
|
Mocker.GetMock<IDownloadedEpisodesImportService>().Verify(c => c.ProcessRootFolder(It.IsAny<DirectoryInfo>()), Times.Once());
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_skip_import_if_dropfolder_doesnt_exist()
|
||||||
|
{
|
||||||
|
Mocker.GetMock<IDiskProvider>().Setup(c => c.FolderExists(It.IsAny<string>())).Returns(false);
|
||||||
|
|
||||||
|
Subject.Execute(new DownloadedEpisodesScanCommand());
|
||||||
|
|
||||||
|
Mocker.GetMock<IDownloadedEpisodesImportService>().Verify(c => c.ProcessRootFolder(It.IsAny<DirectoryInfo>()), Times.Never());
|
||||||
|
|
||||||
|
ExceptionVerification.ExpectedWarns(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_ignore_downloadclientid_if_path_is_not_specified()
|
||||||
|
{
|
||||||
|
Subject.Execute(new DownloadedEpisodesScanCommand() { DownloadClientId = "sab1" });
|
||||||
|
|
||||||
|
Mocker.GetMock<IDownloadedEpisodesImportService>().Verify(c => c.ProcessRootFolder(It.IsAny<DirectoryInfo>()), Times.Once());
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_process_folder_if_downloadclientid_is_not_specified()
|
||||||
|
{
|
||||||
|
Subject.Execute(new DownloadedEpisodesScanCommand() { Path = _downloadFolder });
|
||||||
|
|
||||||
|
Mocker.GetMock<IDownloadedEpisodesImportService>().Verify(c => c.ProcessFolder(It.IsAny<DirectoryInfo>(), null), Times.Once());
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_process_folder_with_downloadclientitem_if_available()
|
||||||
|
{
|
||||||
|
GivenValidQueueItem();
|
||||||
|
|
||||||
|
Subject.Execute(new DownloadedEpisodesScanCommand() { Path = _downloadFolder, DownloadClientId = "sab1" });
|
||||||
|
|
||||||
|
Mocker.GetMock<ICompletedDownloadService>().Verify(c => c.Import(It.Is<TrackedDownload>(v => v != null), _downloadFolder), Times.Once());
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_process_folder_without_downloadclientitem_if_not_available()
|
||||||
|
{
|
||||||
|
Subject.Execute(new DownloadedEpisodesScanCommand() { Path = _downloadFolder, DownloadClientId = "sab1" });
|
||||||
|
|
||||||
|
Mocker.GetMock<IDownloadedEpisodesImportService>().Verify(c => c.ProcessFolder(It.IsAny<DirectoryInfo>(), null), Times.Once());
|
||||||
|
|
||||||
|
ExceptionVerification.ExpectedWarns(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_not_mark_trackeddownload_as_completed_if_import_rejected()
|
||||||
|
{
|
||||||
|
GivenValidQueueItem();
|
||||||
|
GivenRejectedImport();
|
||||||
|
|
||||||
|
Subject.Execute(new DownloadedEpisodesScanCommand() { Path = _downloadFolder, DownloadClientId = "sab1" });
|
||||||
|
|
||||||
|
_trackedDownload.State.Should().Be(TrackedDownloadState.Downloading);
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_mark_trackeddownload_as_completed_if_import_skipped()
|
||||||
|
{
|
||||||
|
GivenValidQueueItem();
|
||||||
|
GivenRejectedImport();
|
||||||
|
|
||||||
|
Subject.Execute(new DownloadedEpisodesScanCommand() { Path = _downloadFolder, DownloadClientId = "sab1" });
|
||||||
|
|
||||||
|
_trackedDownload.State.Should().Be(TrackedDownloadState.Imported);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue