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

74 lines
1.7 KiB
C#
Raw Normal View History

2013-02-04 00:10:15 +00:00
using System;
2013-02-17 00:50:04 +00:00
using System.IO;
2013-02-04 00:10:15 +00:00
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-17 01:52:40 +00:00
private IObjectDatabase _db;
protected IObjectDatabase Db
2013-02-04 00:10:15 +00:00
{
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)
{
_db = new SiaqoDbFactory(new DiskProvider(),new EnvironmentProvider()).CreateMemoryDb();
2013-02-04 00:10:15 +00:00
}
else
{
_db = new SiaqoDbFactory(new DiskProvider(),new EnvironmentProvider()).Create(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, Guid.NewGuid().ToString()));
2013-02-04 00:10:15 +00:00
}
Mocker.SetConstant(Db);
}
[TearDown]
public void ObjectDbTearDown()
{
if (_db != null)
{
_db.Dispose();
}
}
}
}