mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
Improve root folder health check
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
parent
998a2df7f0
commit
9b934e9cf2
3 changed files with 59 additions and 7 deletions
|
@ -0,0 +1,48 @@
|
||||||
|
using System.Linq;
|
||||||
|
using FluentAssertions;
|
||||||
|
using Moq;
|
||||||
|
using NUnit.Framework;
|
||||||
|
using NzbDrone.Common.Disk;
|
||||||
|
using NzbDrone.Core.RootFolders;
|
||||||
|
using NzbDrone.Core.Test.Framework;
|
||||||
|
using NzbDrone.Test.Common;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Test.RootFolderTests
|
||||||
|
{
|
||||||
|
[TestFixture]
|
||||||
|
public class GetBestRootFolderPathFixture : CoreTest<RootFolderService>
|
||||||
|
{
|
||||||
|
private void GivenRootFolders(params string[] paths)
|
||||||
|
{
|
||||||
|
Mocker.GetMock<IRootFolderRepository>()
|
||||||
|
.Setup(s => s.All())
|
||||||
|
.Returns(paths.Select(p => new RootFolder { Path = p }));
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_return_root_folder_that_is_parent_path()
|
||||||
|
{
|
||||||
|
GivenRootFolders(@"C:\Test\Music".AsOsAgnostic(), @"D:\Test\Music".AsOsAgnostic());
|
||||||
|
Subject.GetBestRootFolderPath(@"C:\Test\Music\Series Title".AsOsAgnostic()).Should().Be(@"C:\Test\Music".AsOsAgnostic());
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_return_root_folder_that_is_grandparent_path()
|
||||||
|
{
|
||||||
|
GivenRootFolders(@"C:\Test\Music".AsOsAgnostic(), @"D:\Test\Music".AsOsAgnostic());
|
||||||
|
Subject.GetBestRootFolderPath(@"C:\Test\Music\S\Series Title".AsOsAgnostic()).Should().Be(@"C:\Test\Music".AsOsAgnostic());
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_get_parent_path_from_diskProvider_if_matching_root_folder_is_not_found()
|
||||||
|
{
|
||||||
|
var seriesPath = @"T:\Test\Music\Series Title".AsOsAgnostic();
|
||||||
|
|
||||||
|
GivenRootFolders(@"C:\Test\Music".AsOsAgnostic(), @"D:\Test\Music".AsOsAgnostic());
|
||||||
|
Subject.GetBestRootFolderPath(seriesPath);
|
||||||
|
|
||||||
|
Mocker.GetMock<IDiskProvider>()
|
||||||
|
.Verify(v => v.GetParentFolder(seriesPath), Times.Once);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -4,6 +4,7 @@ using NzbDrone.Core.ImportLists;
|
||||||
using NzbDrone.Core.MediaFiles.Events;
|
using NzbDrone.Core.MediaFiles.Events;
|
||||||
using NzbDrone.Core.Music;
|
using NzbDrone.Core.Music;
|
||||||
using NzbDrone.Core.Music.Events;
|
using NzbDrone.Core.Music.Events;
|
||||||
|
using NzbDrone.Core.RootFolders;
|
||||||
|
|
||||||
namespace NzbDrone.Core.HealthCheck.Checks
|
namespace NzbDrone.Core.HealthCheck.Checks
|
||||||
{
|
{
|
||||||
|
@ -16,20 +17,23 @@ namespace NzbDrone.Core.HealthCheck.Checks
|
||||||
private readonly IArtistService _artistService;
|
private readonly IArtistService _artistService;
|
||||||
private readonly IImportListFactory _importListFactory;
|
private readonly IImportListFactory _importListFactory;
|
||||||
private readonly IDiskProvider _diskProvider;
|
private readonly IDiskProvider _diskProvider;
|
||||||
|
private readonly IRootFolderService _rootFolderService;
|
||||||
|
|
||||||
public RootFolderCheck(IArtistService artistService, IImportListFactory importListFactory, IDiskProvider diskProvider)
|
public RootFolderCheck(IArtistService artistService, IImportListFactory importListFactory, IDiskProvider diskProvider, IRootFolderService rootFolderService)
|
||||||
{
|
{
|
||||||
_artistService = artistService;
|
_artistService = artistService;
|
||||||
_importListFactory = importListFactory;
|
_importListFactory = importListFactory;
|
||||||
_diskProvider = diskProvider;
|
_diskProvider = diskProvider;
|
||||||
|
_rootFolderService = rootFolderService;
|
||||||
}
|
}
|
||||||
|
|
||||||
public override HealthCheck Check()
|
public override HealthCheck Check()
|
||||||
{
|
{
|
||||||
var missingRootFolders = _artistService.GetAllArtists()
|
var rootFolders = _artistService.GetAllArtists()
|
||||||
.Select(s => _diskProvider.GetParentFolder(s.Path))
|
.Select(s => _rootFolderService.GetBestRootFolderPath(s.Path))
|
||||||
.Distinct()
|
.Distinct();
|
||||||
.Where(s => !_diskProvider.FolderExists(s))
|
|
||||||
|
var missingRootFolders = rootFolders.Where(s => !_diskProvider.FolderExists(s))
|
||||||
.ToList();
|
.ToList();
|
||||||
|
|
||||||
missingRootFolders.AddRange(_importListFactory.All()
|
missingRootFolders.AddRange(_importListFactory.All()
|
||||||
|
|
|
@ -153,7 +153,7 @@ namespace NzbDrone.Core.RootFolders
|
||||||
|
|
||||||
if (possibleRootFolder == null)
|
if (possibleRootFolder == null)
|
||||||
{
|
{
|
||||||
return Path.GetDirectoryName(path);
|
return _diskProvider.GetParentFolder(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
return possibleRootFolder.Path;
|
return possibleRootFolder.Path;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue