Lidarr/NzbDrone.Core.Test/Framework/ObjectDbTest.cs

74 lines
1.6 KiB
C#
Raw Normal View History

2013-02-04 00:10:15 +00:00
using System;
using System.Linq;
using NUnit.Framework;
2013-02-04 04:18:59 +00:00
using NzbDrone.Common;
2013-02-04 00:10:15 +00:00
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Test.Framework
{
public abstract class ObjectDbTest<TSubject> : ObjectDbTest 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-02-04 00:10:15 +00:00
public abstract class ObjectDbTest : CoreTest
{
2013-02-04 00:10:15 +00:00
private EloqueraDb _db;
protected EloqueraDb Db
{
get
{
if (_db == null)
throw new InvalidOperationException("Test object database doesn't exists. Make sure you call WithRealDb() if you intend to use an actual database.");
return _db;
}
}
protected void WithObjectDb(bool memory = true)
{
if (memory)
{
2013-02-04 04:18:59 +00:00
_db = new EloqueraDbFactory(new EnvironmentProvider()).CreateMemoryDb();
2013-02-04 00:10:15 +00:00
}
else
{
2013-02-04 04:18:59 +00:00
_db = new EloqueraDbFactory(new EnvironmentProvider()).Create();
2013-02-04 00:10:15 +00:00
}
Mocker.SetConstant(Db);
Mocker.SetConstant(Db.Db);
2013-02-04 00:10:15 +00:00
}
[TearDown]
public void ObjectDbTearDown()
{
if (_db != null)
{
_db.Dispose();
}
}
}
}