Lidarr/src/NzbDrone.Core.Test/Framework/DbTest.cs

139 lines
3.8 KiB
C#
Raw Normal View History

2013-02-04 00:10:15 +00:00
using System;
2013-02-23 19:38:25 +00:00
using System.Collections.Generic;
2019-08-22 20:15:25 +00:00
using System.Data.SQLite;
2013-02-04 00:10:15 +00:00
using System.Linq;
2019-10-28 21:12:26 +00:00
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Abstractions;
2013-02-04 00:10:15 +00:00
using NUnit.Framework;
using NzbDrone.Core.Datastore;
2013-03-25 06:13:53 +00:00
using NzbDrone.Core.Datastore.Migration.Framework;
2013-09-11 06:33:47 +00:00
2013-02-04 00:10:15 +00:00
namespace NzbDrone.Core.Test.Framework
{
2013-03-24 04:16:00 +00:00
public abstract class DbTest<TSubject, TModel> : DbTest
2013-02-23 19:38:25 +00:00
where TSubject : class
where TModel : ModelBase, new()
{
2013-02-23 19:38:25 +00:00
private TSubject _subject;
protected BasicRepository<TModel> Storage { get; private set; }
2016-12-09 06:54:15 +00:00
protected IList<TModel> AllStoredModels => Storage.All().ToList();
2016-12-09 06:54:15 +00:00
protected TModel StoredModel => Storage.All().Single();
[SetUp]
public void CoreTestSetup()
{
_subject = null;
2013-02-23 19:38:25 +00:00
Storage = Mocker.Resolve<BasicRepository<TModel>>();
}
protected TSubject Subject
{
get
{
if (_subject == null)
{
_subject = Mocker.Resolve<TSubject>();
}
return _subject;
}
}
}
[Category("DbTest")]
2013-03-24 04:16:00 +00:00
public abstract class DbTest : CoreTest
2013-02-04 00:10:15 +00:00
{
2013-03-25 03:51:32 +00:00
private ITestDatabase _db;
2013-03-27 04:03:02 +00:00
2016-12-09 06:54:15 +00:00
protected virtual MigrationType MigrationType => MigrationType.Main;
2013-03-27 04:03:02 +00:00
2013-03-25 03:51:32 +00:00
protected ITestDatabase Db
2013-02-04 00:10:15 +00:00
{
get
{
if (_db == null)
{
2013-02-04 00:10:15 +00:00
throw new InvalidOperationException("Test object database doesn't exists. Make sure you call WithRealDb() if you intend to use an actual database.");
}
2013-02-04 00:10:15 +00:00
return _db;
}
}
protected virtual ITestDatabase WithTestDb(MigrationContext migrationContext)
2014-12-02 20:08:37 +00:00
{
var factory = Mocker.Resolve<DbFactory>();
var database = factory.Create(migrationContext);
2014-12-02 20:08:37 +00:00
Mocker.SetConstant(database);
2015-05-03 23:30:16 +00:00
switch (MigrationType)
{
case MigrationType.Main:
{
var mainDb = new MainDatabase(database);
Mocker.SetConstant<IMainDatabase>(mainDb);
break;
}
2015-05-03 23:30:16 +00:00
case MigrationType.Log:
{
var logDb = new LogDatabase(database);
Mocker.SetConstant<ILogDatabase>(logDb);
break;
}
2015-05-03 23:30:16 +00:00
default:
{
throw new ArgumentException("Invalid MigrationType");
}
}
2014-12-02 20:08:37 +00:00
var testDb = new TestDatabase(database);
return testDb;
}
2019-10-28 21:12:26 +00:00
protected virtual void SetupLogging()
{
Mocker.SetConstant<ILoggerProvider>(NullLoggerProvider.Instance);
}
2014-12-02 20:08:37 +00:00
protected void SetupContainer()
2013-02-04 00:10:15 +00:00
{
2013-06-28 01:03:04 +00:00
WithTempAsAppPath();
2019-10-28 21:12:26 +00:00
SetupLogging();
2013-03-25 03:51:32 +00:00
2013-07-05 03:56:27 +00:00
Mocker.SetConstant<IConnectionStringFactory>(Mocker.Resolve<ConnectionStringFactory>());
Mocker.SetConstant<IMigrationController>(Mocker.Resolve<MigrationController>());
2020-08-18 20:11:44 +00:00
SqlBuilderExtensions.LogSql = true;
2013-02-04 00:10:15 +00:00
}
2013-02-23 19:38:25 +00:00
[SetUp]
2014-12-02 20:08:37 +00:00
public virtual void SetupDb()
2013-02-23 19:38:25 +00:00
{
2014-12-02 20:08:37 +00:00
SetupContainer();
_db = WithTestDb(new MigrationContext(MigrationType));
2013-02-23 19:38:25 +00:00
}
2013-03-25 03:51:32 +00:00
[TearDown]
public void TearDown()
{
2019-08-22 20:15:25 +00:00
// Make sure there are no lingering connections. (When this happens it means we haven't disposed something properly)
GC.Collect();
GC.WaitForPendingFinalizers();
SQLiteConnection.ClearAllPools();
2019-08-22 20:15:25 +00:00
if (TestFolderInfo != null)
2013-03-25 03:51:32 +00:00
{
2019-08-22 20:15:25 +00:00
DeleteTempFolder(TestFolderInfo.AppDataFolder);
2013-03-25 03:51:32 +00:00
}
}
2013-03-24 04:16:00 +00:00
}
2019-10-28 21:12:26 +00:00
}