Radarr/NzbDrone.Test.Common/TestBase.cs

160 lines
3.9 KiB
C#
Raw Normal View History

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