Update RootFolderCheckFixture and RootFolderServceFixture

pull/110/head
Qstick 7 years ago
parent c5325f3630
commit bba52cdbc8

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using System.Linq;
using FizzWare.NBuilder;
using Moq;
@ -6,7 +6,7 @@ using NUnit.Framework;
using NzbDrone.Common.Disk;
using NzbDrone.Core.HealthCheck.Checks;
using NzbDrone.Core.Test.Framework;
using NzbDrone.Core.Tv;
using NzbDrone.Core.Music;
namespace NzbDrone.Core.Test.HealthCheck.Checks
{
@ -15,17 +15,17 @@ namespace NzbDrone.Core.Test.HealthCheck.Checks
{
private void GivenMissingRootFolder()
{
var series = Builder<Series>.CreateListOfSize(1)
var artist = Builder<Artist>.CreateListOfSize(1)
.Build()
.ToList();
Mocker.GetMock<ISeriesService>()
.Setup(s => s.GetAllSeries())
.Returns(series);
Mocker.GetMock<IArtistService>()
.Setup(s => s.GetAllArtists())
.Returns(artist);
Mocker.GetMock<IDiskProvider>()
.Setup(s => s.GetParentFolder(series.First().Path))
.Returns(@"C:\TV");
.Setup(s => s.GetParentFolder(artist.First().Path))
.Returns(@"C:\Music");
Mocker.GetMock<IDiskProvider>()
.Setup(s => s.FolderExists(It.IsAny<string>()))
@ -33,17 +33,17 @@ namespace NzbDrone.Core.Test.HealthCheck.Checks
}
[Test]
public void should_not_return_error_when_no_series()
public void should_not_return_error_when_no_artist()
{
Mocker.GetMock<ISeriesService>()
.Setup(s => s.GetAllSeries())
.Returns(new List<Series>());
Mocker.GetMock<IArtistService>()
.Setup(s => s.GetAllArtists())
.Returns(new List<Artist>());
Subject.Check().ShouldBeOk();
}
[Test]
public void should_return_error_if_series_parent_is_missing()
public void should_return_error_if_artist_parent_is_missing()
{
GivenMissingRootFolder();

@ -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))

Loading…
Cancel
Save