mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
Fix GetAncestorFolders tests under mono
This commit is contained in:
parent
9fbe06ad68
commit
43c5d03f9a
@ -1,7 +1,5 @@
|
|||||||
using FluentAssertions;
|
using NUnit.Framework;
|
||||||
using NUnit.Framework;
|
|
||||||
using NzbDrone.Common.EnsureThat;
|
using NzbDrone.Common.EnsureThat;
|
||||||
using NzbDrone.Common.Extensions;
|
|
||||||
using NzbDrone.Test.Common;
|
using NzbDrone.Test.Common;
|
||||||
|
|
||||||
namespace NzbDrone.Common.Test.EnsureTest
|
namespace NzbDrone.Common.Test.EnsureTest
|
||||||
@ -24,18 +22,5 @@ public void EnsureLinuxPath(string path)
|
|||||||
MonoOnly();
|
MonoOnly();
|
||||||
Ensure.That(path, () => path).IsValidPath();
|
Ensure.That(path, () => path).IsValidPath();
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
|
||||||
public void GetAncestorFolders_should_return_all_ancestors_in_path()
|
|
||||||
{
|
|
||||||
var path = @"C:\Test\TV\Series Title".AsOsAgnostic();
|
|
||||||
var result = path.GetAncestorFolders();
|
|
||||||
|
|
||||||
result.Count.Should().Be(4);
|
|
||||||
result[0].Should().Be(@"C:\".AsOsAgnostic());
|
|
||||||
result[1].Should().Be(@"Test".AsOsAgnostic());
|
|
||||||
result[2].Should().Be(@"TV".AsOsAgnostic());
|
|
||||||
result[3].Should().Be(@"Series Title".AsOsAgnostic());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -243,7 +243,7 @@ public void Config_path_test()
|
|||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void Sanbox()
|
public void Sandbox()
|
||||||
{
|
{
|
||||||
GetIAppDirectoryInfo().GetUpdateSandboxFolder().Should().BeEquivalentTo(@"C:\Temp\nzbdrone_update\".AsOsAgnostic());
|
GetIAppDirectoryInfo().GetUpdateSandboxFolder().Should().BeEquivalentTo(@"C:\Temp\nzbdrone_update\".AsOsAgnostic());
|
||||||
}
|
}
|
||||||
@ -271,5 +271,33 @@ public void GetUpdateLogFolder()
|
|||||||
{
|
{
|
||||||
GetIAppDirectoryInfo().GetUpdateLogFolder().Should().BeEquivalentTo(@"C:\NzbDrone\UpdateLogs\".AsOsAgnostic());
|
GetIAppDirectoryInfo().GetUpdateLogFolder().Should().BeEquivalentTo(@"C:\NzbDrone\UpdateLogs\".AsOsAgnostic());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void GetAncestorFolders_should_return_all_ancestors_in_path_Windows()
|
||||||
|
{
|
||||||
|
WindowsOnly();
|
||||||
|
var path = @"C:\Test\TV\Series Title";
|
||||||
|
var result = path.GetAncestorFolders();
|
||||||
|
|
||||||
|
result.Count.Should().Be(4);
|
||||||
|
result[0].Should().Be(@"C:\");
|
||||||
|
result[1].Should().Be(@"Test");
|
||||||
|
result[2].Should().Be(@"TV");
|
||||||
|
result[3].Should().Be(@"Series Title");
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void GetAncestorFolders_should_return_all_ancestors_in_path_Linux()
|
||||||
|
{
|
||||||
|
MonoOnly();
|
||||||
|
var path = @"/Test/TV/Series Title";
|
||||||
|
var result = path.GetAncestorFolders();
|
||||||
|
|
||||||
|
result.Count.Should().Be(4);
|
||||||
|
result[0].Should().Be(@"/");
|
||||||
|
result[1].Should().Be(@"Test");
|
||||||
|
result[2].Should().Be(@"TV");
|
||||||
|
result[3].Should().Be(@"Series Title");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user