2011-12-15 05:15:53 +01:00
|
|
|
|
using System;
|
2011-11-13 08:27:16 +01:00
|
|
|
|
using System.IO;
|
2013-04-16 06:52:41 +02:00
|
|
|
|
using FluentAssertions;
|
2011-11-13 08:27:16 +01:00
|
|
|
|
using Moq;
|
2013-02-18 08:59:43 +01:00
|
|
|
|
using NLog;
|
2011-11-13 08:27:16 +01:00
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using NzbDrone.Common;
|
2013-05-23 07:12:01 +02:00
|
|
|
|
using NzbDrone.Common.Cache;
|
2013-06-28 02:04:52 +02:00
|
|
|
|
using NzbDrone.Common.EnvironmentInfo;
|
2013-04-24 03:56:00 +02:00
|
|
|
|
using NzbDrone.Common.Messaging;
|
2011-11-14 01:22:18 +01:00
|
|
|
|
using NzbDrone.Test.Common.AutoMoq;
|
2011-11-13 08:27:16 +01:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Test.Common
|
|
|
|
|
{
|
2013-03-30 00:00:38 +01:00
|
|
|
|
public abstract class TestBase<TSubject> : TestBase where TSubject : class
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
private TSubject _subject;
|
|
|
|
|
|
|
|
|
|
[SetUp]
|
|
|
|
|
public void CoreTestSetup()
|
|
|
|
|
{
|
|
|
|
|
_subject = null;
|
2013-05-23 07:12:01 +02:00
|
|
|
|
|
2013-03-30 00:00:38 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected TSubject Subject
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (_subject == null)
|
|
|
|
|
{
|
|
|
|
|
_subject = Mocker.Resolve<TSubject>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _subject;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2013-04-30 02:04:14 +02:00
|
|
|
|
|
2013-03-30 00:00:38 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-02 20:39:27 +01:00
|
|
|
|
public abstract class TestBase : LoggingTest
|
2011-11-13 08:27:16 +01:00
|
|
|
|
{
|
2011-12-15 05:15:53 +01:00
|
|
|
|
private AutoMoqer _mocker;
|
|
|
|
|
protected AutoMoqer Mocker
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (_mocker == null)
|
|
|
|
|
{
|
|
|
|
|
_mocker = new AutoMoqer();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _mocker;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-11-13 08:27:16 +01:00
|
|
|
|
|
2012-02-05 07:34:36 +01:00
|
|
|
|
protected Mock<RestProvider> MockedRestProvider { get; private set; }
|
|
|
|
|
|
2013-01-19 21:59:36 +01:00
|
|
|
|
private string VirtualPath
|
2011-11-13 08:27:16 +01:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
var virtualPath = Path.Combine(TempFolder, "VirtualNzbDrone");
|
|
|
|
|
if (!Directory.Exists(virtualPath)) Directory.CreateDirectory(virtualPath);
|
|
|
|
|
|
|
|
|
|
return virtualPath;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-19 21:59:36 +01:00
|
|
|
|
protected string TempFolder { get; private set; }
|
|
|
|
|
|
2011-11-13 08:27:16 +01:00
|
|
|
|
[SetUp]
|
2011-11-13 20:15:40 +01:00
|
|
|
|
public void TestBaseSetup()
|
2011-11-13 08:27:16 +01:00
|
|
|
|
{
|
2013-06-28 02:04:52 +02:00
|
|
|
|
|
2013-04-16 06:52:41 +02:00
|
|
|
|
GetType().IsPublic.Should().BeTrue("All Test fixtures should be public to work in mono.");
|
|
|
|
|
|
2013-05-30 07:10:26 +02:00
|
|
|
|
Mocker.SetConstant<ICacheManger>(new CacheManger());
|
2013-01-19 21:59:36 +01:00
|
|
|
|
|
2013-02-18 08:59:43 +01:00
|
|
|
|
Mocker.SetConstant(LogManager.GetLogger("TestLogger"));
|
|
|
|
|
|
2013-03-04 06:53:02 +01:00
|
|
|
|
LogManager.ReconfigExistingLoggers();
|
|
|
|
|
|
2013-01-19 21:59:36 +01:00
|
|
|
|
TempFolder = Path.Combine(Directory.GetCurrentDirectory(), "_temp_" + DateTime.Now.Ticks);
|
|
|
|
|
|
2012-02-05 07:34:36 +01:00
|
|
|
|
MockedRestProvider = new Mock<RestProvider>();
|
2012-04-23 01:14:02 +02:00
|
|
|
|
|
2011-11-13 08:27:16 +01:00
|
|
|
|
Directory.CreateDirectory(TempFolder);
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-13 20:15:40 +01:00
|
|
|
|
[TearDown]
|
|
|
|
|
public void TestBaseTearDown()
|
|
|
|
|
{
|
2011-12-15 05:15:53 +01:00
|
|
|
|
_mocker = null;
|
2013-01-19 21:59:36 +01:00
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
if (Directory.Exists(TempFolder))
|
|
|
|
|
{
|
|
|
|
|
Directory.Delete(TempFolder, true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception)
|
|
|
|
|
{
|
|
|
|
|
}
|
2013-06-28 03:03:04 +02:00
|
|
|
|
}
|
2013-04-30 02:04:14 +02:00
|
|
|
|
|
|
|
|
|
|
2013-07-05 06:43:28 +02:00
|
|
|
|
protected IAppFolderInfo TestFolderInfo { get; private set; }
|
2013-04-30 02:39:25 +02:00
|
|
|
|
|
|
|
|
|
protected void WindowsOnly()
|
|
|
|
|
{
|
2013-06-28 02:04:52 +02:00
|
|
|
|
if (OsInfo.IsLinux)
|
2013-04-30 02:39:25 +02:00
|
|
|
|
{
|
|
|
|
|
throw new IgnoreException("windows specific test");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected void LinuxOnly()
|
|
|
|
|
{
|
2013-06-28 02:04:52 +02:00
|
|
|
|
if (!OsInfo.IsLinux)
|
2013-04-30 02:39:25 +02:00
|
|
|
|
{
|
|
|
|
|
throw new IgnoreException("linux specific test");
|
2013-04-30 02:04:14 +02:00
|
|
|
|
}
|
2011-11-13 08:27:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void WithTempAsAppPath()
|
|
|
|
|
{
|
2013-07-05 06:43:28 +02:00
|
|
|
|
Mocker.GetMock<IAppFolderInfo>()
|
|
|
|
|
.SetupGet(c => c.AppDataFolder)
|
2011-11-13 08:27:16 +01:00
|
|
|
|
.Returns(VirtualPath);
|
2013-06-28 03:03:04 +02:00
|
|
|
|
|
2013-07-05 06:43:28 +02:00
|
|
|
|
TestFolderInfo = Mocker.GetMock<IAppFolderInfo>().Object;
|
2011-11-13 08:27:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected string GetTestFilePath(string fileName)
|
|
|
|
|
{
|
2013-02-17 20:19:38 +01:00
|
|
|
|
return Path.Combine(Directory.GetCurrentDirectory(), "Files", fileName);
|
2011-11-13 08:27:16 +01:00
|
|
|
|
}
|
2013-02-24 20:18:48 +01:00
|
|
|
|
|
2013-05-13 04:52:55 +02:00
|
|
|
|
protected void VerifyEventPublished<TEvent>() where TEvent : class, IEvent
|
2013-02-24 20:18:48 +01:00
|
|
|
|
{
|
2013-03-07 05:34:56 +01:00
|
|
|
|
VerifyEventPublished<TEvent>(Times.Once());
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-13 04:52:55 +02:00
|
|
|
|
protected void VerifyEventPublished<TEvent>(Times times) where TEvent : class, IEvent
|
2013-03-07 05:34:56 +01:00
|
|
|
|
{
|
2013-04-27 04:03:34 +02:00
|
|
|
|
Mocker.GetMock<IMessageAggregator>().Verify(c => c.PublishEvent(It.IsAny<TEvent>()), times);
|
2013-02-24 20:18:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-13 04:52:55 +02:00
|
|
|
|
protected void VerifyEventNotPublished<TEvent>() where TEvent : class, IEvent
|
2013-02-24 20:18:48 +01:00
|
|
|
|
{
|
2013-04-27 04:03:34 +02:00
|
|
|
|
Mocker.GetMock<IMessageAggregator>().Verify(c => c.PublishEvent(It.IsAny<TEvent>()), Times.Never());
|
2013-02-24 20:18:48 +01:00
|
|
|
|
}
|
2011-11-13 08:27:16 +01:00
|
|
|
|
}
|
|
|
|
|
}
|