You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
3.1 KiB
99 lines
3.1 KiB
using System.Collections.Generic;
|
|
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.Commands;
|
|
using NzbDrone.Core.MediaFiles.EpisodeImport;
|
|
using NzbDrone.Core.Parser;
|
|
using NzbDrone.Core.Test.Framework;
|
|
using NzbDrone.Test.Common;
|
|
|
|
namespace NzbDrone.Core.Test.MediaFileTests
|
|
{
|
|
[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<IDiskProvider>().Setup(c => c.FolderExists(It.IsAny<string>()))
|
|
.Returns(true);
|
|
|
|
Mocker.GetMock<IConfigService>().SetupGet(c => c.DownloadedEpisodesFolder)
|
|
.Returns("c:\\drop\\");
|
|
|
|
|
|
}
|
|
|
|
[Test]
|
|
public void should_import_file()
|
|
{
|
|
Subject.Execute(new DownloadedEpisodesScanCommand());
|
|
|
|
VerifyImport();
|
|
}
|
|
|
|
[Test]
|
|
public void should_search_for_series_using_folder_name()
|
|
{
|
|
Subject.Execute(new DownloadedEpisodesScanCommand());
|
|
|
|
|
|
Mocker.GetMock<IParsingService>().Verify(c => c.GetSeries("foldername"), 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<IDiskProvider>().Verify(c => c.GetDirectories(It.IsAny<string>()), Times.Never());
|
|
Mocker.GetMock<IDiskProvider>().Verify(c => c.GetFiles(It.IsAny<string>(), It.IsAny<SearchOption>()), Times.Never());
|
|
|
|
ExceptionVerification.ExpectedWarns(1);
|
|
}
|
|
|
|
[Test]
|
|
public void should_skip_if_file_is_in_use_by_another_process()
|
|
{
|
|
Mocker.GetMock<IDiskProvider>().Setup(c => c.IsFileLocked(It.IsAny<FileInfo>()))
|
|
.Returns(true);
|
|
|
|
Subject.Execute(new DownloadedEpisodesScanCommand());
|
|
|
|
VerifyNoImport();
|
|
}
|
|
|
|
private void VerifyNoImport()
|
|
{
|
|
Mocker.GetMock<IImportApprovedEpisodes>().Verify(c => c.Import(It.IsAny<List<ImportDecision>>(), true),
|
|
Times.Never());
|
|
}
|
|
|
|
private void VerifyImport()
|
|
{
|
|
Mocker.GetMock<IImportApprovedEpisodes>().Verify(c => c.Import(It.IsAny<List<ImportDecision>>(), true),
|
|
Times.Once());
|
|
}
|
|
}
|
|
} |