mirror of https://github.com/lidarr/Lidarr
Create series folder when it doesn't exist
This commit is contained in:
parent
05c7b4f4ef
commit
9af5dbdc05
|
@ -421,19 +421,28 @@ namespace NzbDrone.Core.Test.ProviderTests.PostDownloadProviderTests
|
|||
}
|
||||
|
||||
[Test]
|
||||
public void should_return_if_series_path_does_not_exist()
|
||||
public void should_create_series_directory_if_series_path_does_not_exist()
|
||||
{
|
||||
var downloadName = new DirectoryInfo(@"C:\Test\Drop\30.Rock.S01E01.Pilot");
|
||||
|
||||
WithValidSeries();
|
||||
WithLotsOfFreeDiskSpace();
|
||||
WithImportedFiles(downloadName.FullName);
|
||||
|
||||
Mocker.GetMock<DiskProvider>()
|
||||
.Setup(s => s.FolderExists(fakeSeries.Path))
|
||||
.Returns(false);
|
||||
|
||||
Mocker.GetMock<ISeriesRepository>().Setup(s => s.GetByTitle("office")).Returns(fakeSeries);
|
||||
Mocker.GetMock<DiskScanProvider>().Setup(s => s.CleanUpDropFolder(downloadName.FullName));
|
||||
Mocker.GetMock<IMoveEpisodeFiles>().Setup(s => s.MoveEpisodeFile(It.IsAny<EpisodeFile>(), true)).Returns(new EpisodeFile());
|
||||
Mocker.GetMock<DiskProvider>().Setup(s => s.GetDirectorySize(downloadName.FullName)).Returns(Constants.IgnoreFileSize - 1.Megabytes());
|
||||
Mocker.GetMock<DiskProvider>().Setup(s => s.DeleteFolder(downloadName.FullName, true));
|
||||
Mocker.GetMock<DiskProvider>().Setup(s => s.IsFolderLocked(downloadName.FullName)).Returns(false);
|
||||
|
||||
Mocker.Resolve<PostDownloadProvider>().ProcessDownload(downloadName);
|
||||
|
||||
Mocker.GetMock<DiskProvider>().Verify(c => c.GetDirectorySize(It.IsAny<String>()), Times.Never());
|
||||
Mocker.GetMock<DiskProvider>().Verify(c => c.CreateDirectory(fakeSeries.Path), Times.Once());
|
||||
ExceptionVerification.ExpectedWarns(1);
|
||||
}
|
||||
|
||||
|
|
|
@ -88,8 +88,8 @@ namespace NzbDrone.Core.Providers
|
|||
|
||||
if (!_diskProvider.FolderExists(series.Path))
|
||||
{
|
||||
Logger.Warn("Series Folder doesn't exist: {0}", series.Path);
|
||||
return;
|
||||
Logger.Warn("Series Folder doesn't exist: {0}, creating it", series.Path);
|
||||
_diskProvider.CreateDirectory(series.Path);
|
||||
}
|
||||
|
||||
var size = _diskProvider.GetDirectorySize(subfolderInfo.FullName);
|
||||
|
|
Loading…
Reference in New Issue