Lidarr/NzbDrone.Core.Test/ProviderTests/RootDirProviderTests/RootDirProviderFixture.cs

106 lines
3.2 KiB
C#
Raw Normal View History

2011-05-22 16:53:21 +00:00
// ReSharper disable RedundantUsingDirective
2011-05-22 16:53:21 +00:00
using System;
2013-02-04 04:18:59 +00:00
using System.Collections.Generic;
using System.IO;
using System.Linq;
2011-06-02 21:06:46 +00:00
using FluentAssertions;
using Moq;
2011-06-02 21:06:46 +00:00
using NUnit.Framework;
2011-11-13 04:07:06 +00:00
using NzbDrone.Common;
2011-04-09 21:35:13 +00:00
using NzbDrone.Core.Providers;
using NzbDrone.Core.Providers.Core;
2011-04-09 21:35:13 +00:00
using NzbDrone.Core.Repository;
2013-02-04 04:18:59 +00:00
using NzbDrone.Core.RootFolders;
using NzbDrone.Core.Test.Framework;
using NzbDrone.Test.Common.AutoMoq;
2011-04-09 21:35:13 +00:00
namespace NzbDrone.Core.Test.ProviderTests.RootDirProviderTests
2011-04-09 21:35:13 +00:00
{
[TestFixture]
// ReSharper disable InconsistentNaming
2013-02-04 04:18:59 +00:00
public class RootDirProviderFixture : CoreTest<RootFolderService>
2011-04-09 21:35:13 +00:00
{
[SetUp]
public void Setup()
{
Mocker.GetMock<DiskProvider>()
.Setup(m => m.FolderExists(It.IsAny<string>()))
.Returns(true);
}
2011-06-02 21:06:46 +00:00
private void WithNoneExistingFolder()
2011-04-09 21:35:13 +00:00
{
Mocker.GetMock<DiskProvider>()
.Setup(m => m.FolderExists(It.IsAny<string>()))
.Returns(false);
}
2011-04-09 21:35:13 +00:00
[TestCase("D:\\TV Shows\\")]
[TestCase("//server//folder")]
public void should_be_able_to_add_root_dir(string path)
2011-04-09 21:35:13 +00:00
{
2013-02-04 04:18:59 +00:00
var root = new RootDir { Path = path };
Subject.Add(root);
2011-04-09 21:35:13 +00:00
2013-02-04 04:18:59 +00:00
Mocker.GetMock<IRootFolderRepository>().Verify(c => c.Add(root), Times.Once());
2011-04-09 21:35:13 +00:00
}
[Test]
public void should_throw_if_folder_being_added_doesnt_exist()
2011-04-09 21:35:13 +00:00
{
WithNoneExistingFolder();
2011-04-09 21:35:13 +00:00
2013-02-04 04:18:59 +00:00
Assert.Throws<DirectoryNotFoundException>(() => Subject.Add(new RootDir { Path = "C:\\TEST" }));
2011-04-09 21:35:13 +00:00
}
[Test]
public void should_be_able_to_remove_root_dir()
2011-04-09 21:35:13 +00:00
{
2013-02-04 04:18:59 +00:00
Subject.Remove(1);
Mocker.GetMock<IRootFolderRepository>().Verify(c => c.Delete(1), Times.Once());
2011-04-09 21:35:13 +00:00
}
public void None_existing_folder_returns_empty_list()
{
WithNoneExistingFolder();
2013-02-04 04:18:59 +00:00
Mocker.GetMock<IRootFolderRepository>().Setup(c => c.All()).Returns(new List<RootDir>());
const string path = "d:\\bad folder";
2013-02-04 04:18:59 +00:00
var result = Subject.GetUnmappedFolders(path);
2011-06-23 06:56:17 +00:00
result.Should().NotBeNull();
result.Should().BeEmpty();
Mocker.GetMock<DiskProvider>().Verify(c => c.GetDirectories(It.IsAny<String>()), Times.Never());
}
[Test]
public void GetUnmappedFolders_throw_on_empty_folders()
{
2013-02-04 04:18:59 +00:00
Assert.Throws<ArgumentException>(() => Mocker.Resolve<RootFolderService>().GetUnmappedFolders(""));
}
[TestCase("")]
[TestCase(null)]
[TestCase("BAD PATH")]
public void invalid_folder_path_throws_on_add(string path)
{
Assert.Throws<ArgumentException>(() =>
2013-02-04 04:18:59 +00:00
Mocker.Resolve<RootFolderService>().Add(new RootDir { Id = 0, Path = path })
);
}
[Test]
public void adding_duplicated_root_folder_should_throw()
{
2013-02-04 04:18:59 +00:00
Mocker.GetMock<IRootFolderRepository>().Setup(c => c.All()).Returns(new List<RootDir> { new RootDir { Path = "C:\\TV" } });
2013-02-04 04:18:59 +00:00
Subject.Add(new RootDir { Path = @"C:\TV" });
Assert.Throws<InvalidOperationException>(() => Subject.Add(new RootDir { Path = @"C:\TV" }));
}
2011-04-09 21:35:13 +00:00
}
2011-04-10 02:44:01 +00:00
}