You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
39 lines
1.0 KiB
using System;
|
|
using AutoMoq;
|
|
using MbUnit.Framework;
|
|
using Moq;
|
|
using NzbDrone.Core.Providers;
|
|
using NzbDrone.Core.Providers.Core;
|
|
|
|
namespace NzbDrone.Core.Test
|
|
{
|
|
[TestFixture]
|
|
// ReSharper disable InconsistentNaming
|
|
public class SyncProviderTest
|
|
{
|
|
[Test]
|
|
public void None_existing_folder_returns_empty_list()
|
|
{
|
|
string path = "d:\\bad folder";
|
|
|
|
var mocker = new AutoMoqer();
|
|
mocker.GetMock<DiskProvider>(MockBehavior.Strict)
|
|
.Setup(m => m.FolderExists(path)).Returns(false);
|
|
|
|
var result = mocker.Resolve<SyncProvider>().GetUnmappedFolders(path);
|
|
|
|
Assert.IsNotNull(result);
|
|
Assert.IsEmpty(result);
|
|
|
|
mocker.VerifyAllMocks();
|
|
}
|
|
|
|
[Test]
|
|
[ExpectedException(typeof (ArgumentException))]
|
|
public void empty_folder_path_throws()
|
|
{
|
|
var mocker = new AutoMoqer();
|
|
mocker.Resolve<SyncProvider>().GetUnmappedFolders("");
|
|
}
|
|
}
|
|
} |