|
|
|
@ -10,7 +10,7 @@ using NzbDrone.Common.Disk;
|
|
|
|
|
using NzbDrone.Core.Configuration;
|
|
|
|
|
using NzbDrone.Core.RootFolders;
|
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
|
using NzbDrone.Core.Tv;
|
|
|
|
|
using NzbDrone.Core.Music;
|
|
|
|
|
using NzbDrone.Test.Common;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Test.RootFolderTests
|
|
|
|
@ -42,7 +42,7 @@ namespace NzbDrone.Core.Test.RootFolderTests
|
|
|
|
|
.Returns(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestCase("D:\\TV Shows\\")]
|
|
|
|
|
[TestCase("D:\\Music\\")]
|
|
|
|
|
[TestCase("//server//folder")]
|
|
|
|
|
public void should_be_able_to_add_root_dir(string path)
|
|
|
|
|
{
|
|
|
|
@ -81,9 +81,9 @@ namespace NzbDrone.Core.Test.RootFolderTests
|
|
|
|
|
[Test]
|
|
|
|
|
public void adding_duplicated_root_folder_should_throw()
|
|
|
|
|
{
|
|
|
|
|
Mocker.GetMock<IRootFolderRepository>().Setup(c => c.All()).Returns(new List<RootFolder> { new RootFolder { Path = "C:\\TV".AsOsAgnostic() } });
|
|
|
|
|
Mocker.GetMock<IRootFolderRepository>().Setup(c => c.All()).Returns(new List<RootFolder> { new RootFolder { Path = "C:\\Music".AsOsAgnostic() } });
|
|
|
|
|
|
|
|
|
|
Assert.Throws<InvalidOperationException>(() => Subject.Add(new RootFolder { Path = @"C:\TV".AsOsAgnostic() }));
|
|
|
|
|
Assert.Throws<InvalidOperationException>(() => Subject.Add(new RootFolder { Path = @"C:\Music".AsOsAgnostic() }));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
@ -93,7 +93,7 @@ namespace NzbDrone.Core.Test.RootFolderTests
|
|
|
|
|
.Setup(m => m.FolderWritable(It.IsAny<string>()))
|
|
|
|
|
.Returns(false);
|
|
|
|
|
|
|
|
|
|
Assert.Throws<UnauthorizedAccessException>(() => Subject.Add(new RootFolder { Path = @"C:\TV".AsOsAgnostic() }));
|
|
|
|
|
Assert.Throws<UnauthorizedAccessException>(() => Subject.Add(new RootFolder { Path = @"C:\Music".AsOsAgnostic() }));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestCase("$recycle.bin")]
|
|
|
|
@ -107,16 +107,16 @@ namespace NzbDrone.Core.Test.RootFolderTests
|
|
|
|
|
[TestCase(".grab")]
|
|
|
|
|
public void should_get_root_folder_with_subfolders_excluding_special_sub_folders(string subFolder)
|
|
|
|
|
{
|
|
|
|
|
var rootFolderPath = @"C:\Test\TV".AsOsAgnostic();
|
|
|
|
|
var rootFolderPath = @"C:\Test\Music".AsOsAgnostic();
|
|
|
|
|
var rootFolder = Builder<RootFolder>.CreateNew()
|
|
|
|
|
.With(r => r.Path = rootFolderPath)
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
var subFolders = new[]
|
|
|
|
|
{
|
|
|
|
|
"Series1",
|
|
|
|
|
"Series2",
|
|
|
|
|
"Series3",
|
|
|
|
|
"Artist1",
|
|
|
|
|
"Artist2",
|
|
|
|
|
"Artist3",
|
|
|
|
|
subFolder
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@ -126,9 +126,9 @@ namespace NzbDrone.Core.Test.RootFolderTests
|
|
|
|
|
.Setup(s => s.Get(It.IsAny<int>()))
|
|
|
|
|
.Returns(rootFolder);
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<ISeriesService>()
|
|
|
|
|
.Setup(s => s.GetAllSeries())
|
|
|
|
|
.Returns(new List<Series>());
|
|
|
|
|
Mocker.GetMock<IArtistService>()
|
|
|
|
|
.Setup(s => s.GetAllArtists())
|
|
|
|
|
.Returns(new List<Artist>());
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<IDiskProvider>()
|
|
|
|
|
.Setup(s => s.GetDirectories(rootFolder.Path))
|
|
|
|
|