mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
78 lines
1.9 KiB
C#
78 lines
1.9 KiB
C#
using System;
|
|
using System.IO;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Core.Model.Notification;
|
|
using NzbDrone.Core.Providers.Core;
|
|
using NzbDrone.Test.Common;
|
|
using PetaPoco;
|
|
|
|
namespace NzbDrone.Core.Test.Framework
|
|
{
|
|
public class CoreTest : TestBase
|
|
{
|
|
static CoreTest()
|
|
{
|
|
//Delete old db files
|
|
var oldDbFiles = Directory.GetFiles(Directory.GetCurrentDirectory(), "*.sdf", SearchOption.AllDirectories);
|
|
foreach (var file in oldDbFiles)
|
|
{
|
|
try
|
|
{
|
|
File.Delete(file);
|
|
}
|
|
catch { }
|
|
}
|
|
|
|
//Delete App_data folder
|
|
var appData = new EnvironmentProvider().GetAppDataPath();
|
|
|
|
if (Directory.Exists(appData))
|
|
{
|
|
Directory.Delete(appData, true);
|
|
}
|
|
|
|
TestDbHelper.CreateDataBaseTemplate();
|
|
}
|
|
|
|
|
|
private IDatabase _db;
|
|
protected IDatabase Db
|
|
{
|
|
get
|
|
{
|
|
if (_db == null)
|
|
throw new InvalidOperationException("Test db doesn't exists. Make sure you call WithRealDb() if you intend to use an actual database.");
|
|
|
|
return _db;
|
|
}
|
|
}
|
|
|
|
protected void WithRealDb()
|
|
{
|
|
_db = TestDbHelper.GetEmptyDatabase();
|
|
Mocker.SetConstant(Db);
|
|
}
|
|
|
|
|
|
protected static ProgressNotification MockNotification
|
|
{
|
|
get
|
|
{
|
|
return new ProgressNotification("Mock notification");
|
|
}
|
|
}
|
|
|
|
protected static void ThrowException()
|
|
{
|
|
throw new ApplicationException("This is a message for test exception");
|
|
}
|
|
|
|
[TearDown]
|
|
public void CoreTestTearDown()
|
|
{
|
|
ConfigProvider.ClearCache();
|
|
}
|
|
}
|
|
}
|