2011-11-13 07:27:16 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using AutoMoq;
|
|
|
|
|
using Moq;
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using NzbDrone.Common;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Test.Common
|
|
|
|
|
{
|
|
|
|
|
public class TestBase : LoggingTest
|
|
|
|
|
// ReSharper disable InconsistentNaming
|
|
|
|
|
{
|
|
|
|
|
protected AutoMoqer Mocker;
|
|
|
|
|
|
|
|
|
|
protected string VirtualPath
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
var virtualPath = Path.Combine(TempFolder, "VirtualNzbDrone");
|
|
|
|
|
if (!Directory.Exists(virtualPath)) Directory.CreateDirectory(virtualPath);
|
|
|
|
|
|
|
|
|
|
return virtualPath;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[SetUp]
|
2011-11-13 19:15:40 +00:00
|
|
|
|
public void TestBaseSetup()
|
2011-11-13 07:27:16 +00:00
|
|
|
|
{
|
|
|
|
|
if (Directory.Exists(TempFolder))
|
|
|
|
|
{
|
|
|
|
|
Directory.Delete(TempFolder, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Directory.CreateDirectory(TempFolder);
|
|
|
|
|
|
|
|
|
|
Mocker = new AutoMoqer();
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-13 19:15:40 +00:00
|
|
|
|
[TearDown]
|
|
|
|
|
public void TestBaseTearDown()
|
|
|
|
|
{
|
|
|
|
|
Mocker.VerifyAllMocks();
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-13 07:27:16 +00:00
|
|
|
|
protected virtual void WithStrictMocker()
|
|
|
|
|
{
|
|
|
|
|
Mocker = new AutoMoqer(MockBehavior.Strict);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected void WithTempAsAppPath()
|
|
|
|
|
{
|
|
|
|
|
Mocker.GetMock<EnviromentProvider>()
|
|
|
|
|
.SetupGet(c => c.ApplicationPath)
|
|
|
|
|
.Returns(VirtualPath);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected string TempFolder
|
|
|
|
|
{
|
|
|
|
|
get { return Path.Combine(Directory.GetCurrentDirectory(), "temp"); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected string GetTestFilePath(string fileName)
|
|
|
|
|
{
|
|
|
|
|
return Path.Combine(@".\Files\", fileName);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected string ReadTestFile(string fileName)
|
|
|
|
|
{
|
|
|
|
|
return File.ReadAllText(GetTestFilePath(fileName));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|