From 63a911a9a549749b5460c2b9fea48a25e78c52a4 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Thu, 3 Aug 2023 20:12:33 -0700 Subject: [PATCH] Fix GetBestRootFolderPath tests --- .../GetBestRootFolderPathFixture.cs | 31 ++++++++++++++----- .../RootFolders/RootFolderService.cs | 2 +- 2 files changed, 25 insertions(+), 8 deletions(-) diff --git a/src/NzbDrone.Core.Test/RootFolderTests/GetBestRootFolderPathFixture.cs b/src/NzbDrone.Core.Test/RootFolderTests/GetBestRootFolderPathFixture.cs index cd5eced52..5baa71218 100644 --- a/src/NzbDrone.Core.Test/RootFolderTests/GetBestRootFolderPathFixture.cs +++ b/src/NzbDrone.Core.Test/RootFolderTests/GetBestRootFolderPathFixture.cs @@ -1,8 +1,6 @@ -using System.Linq; +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; @@ -34,15 +32,34 @@ namespace NzbDrone.Core.Test.RootFolderTests } [Test] - public void should_get_parent_path_from_diskProvider_if_matching_root_folder_is_not_found() + public void should_get_parent_path_from_os_path_if_matching_root_folder_is_not_found() { var seriesPath = @"T:\Test\TV\Series Title".AsOsAgnostic(); GivenRootFolders(@"C:\Test\TV".AsOsAgnostic(), @"D:\Test\TV".AsOsAgnostic()); - Subject.GetBestRootFolderPath(seriesPath); + Subject.GetBestRootFolderPath(seriesPath).Should().Be(@"T:\Test\TV".AsOsAgnostic()); + } + + [Test] + public void should_get_parent_path_from_os_path_if_matching_root_folder_is_not_found_for_posix_path() + { + WindowsOnly(); - Mocker.GetMock() - .Verify(v => v.GetParentFolder(seriesPath), Times.Once); + var seriesPath = "/mnt/tv/Series Title"; + + GivenRootFolders(@"C:\Test\TV".AsOsAgnostic(), @"D:\Test\TV".AsOsAgnostic()); + Subject.GetBestRootFolderPath(seriesPath).Should().Be(@"/mnt/tv".AsOsAgnostic()); + } + + [Test] + public void should_get_parent_path_from_os_path_if_matching_root_folder_is_not_found_for_windows_path() + { + PosixOnly(); + + var seriesPath = @"T:\Test\TV\Series Title"; + + GivenRootFolders(@"C:\Test\TV".AsOsAgnostic(), @"D:\Test\TV".AsOsAgnostic()); + Subject.GetBestRootFolderPath(seriesPath).Should().Be(@"T:\Test\TV".AsOsAgnostic()); } } } diff --git a/src/NzbDrone.Core/RootFolders/RootFolderService.cs b/src/NzbDrone.Core/RootFolders/RootFolderService.cs index ab7d49cf5..da039e967 100644 --- a/src/NzbDrone.Core/RootFolders/RootFolderService.cs +++ b/src/NzbDrone.Core/RootFolders/RootFolderService.cs @@ -192,7 +192,7 @@ namespace NzbDrone.Core.RootFolders { var osPath = new OsPath(path); - return osPath.Directory.ToString(); + return osPath.Directory.ToString().TrimEnd(osPath.IsUnixPath ? '/' : '\\'); } return possibleRootFolder?.Path;