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

164 lines
3.9 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;
2013-03-24 04:16:00 +00:00
using System.Data;
2013-03-25 03:51:32 +00:00
using System.IO;
2013-02-04 00:10:15 +00:00
using System.Linq;
2013-03-25 03:51:32 +00:00
using Marr.Data;
2013-02-04 00:10:15 +00:00
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
{
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; }
2013-02-23 19:38:25 +00:00
protected IList<TModel> AllStoredModels
{
2013-02-23 19:38:25 +00:00
get
{
return Storage.All().ToList();
}
}
2013-02-23 19:38:25 +00:00
protected TModel StoredModel
{
get
{
return 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;
}
}
}
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 string _dbName;
private ITestDatabase _db;
private IDatabase _database;
protected ITestDatabase 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;
}
}
2013-02-23 19:38:25 +00:00
private void WithObjectDb(bool memory = true)
2013-02-04 00:10:15 +00:00
{
2013-03-25 03:51:32 +00:00
_dbName = DateTime.Now.Ticks.ToString() + ".db";
MapRepository.Instance.EnableTraceLogging = true;
2013-03-24 04:56:59 +00:00
var factory = new DbFactory();
2013-03-25 03:51:32 +00:00
_database = factory.Create(_dbName);
_db = new TestTestDatabase(_database);
Mocker.SetConstant(_database);
2013-02-04 00:10:15 +00:00
}
2013-02-23 19:38:25 +00:00
[SetUp]
public void SetupReadDb()
{
WithObjectDb();
}
2013-03-25 03:51:32 +00:00
[TearDown]
public void TearDown()
{
var files = Directory.GetFiles(Directory.GetCurrentDirectory(), "*.db");
foreach (var file in files)
{
try
{
File.Delete(file);
}
catch (Exception)
{
}
}
}
2013-03-24 04:16:00 +00:00
}
2013-03-25 03:51:32 +00:00
public interface ITestDatabase
2013-03-24 04:16:00 +00:00
{
2013-03-25 03:51:32 +00:00
void InsertMany<T>(IEnumerable<T> items) where T : ModelBase, new();
void Insert<T>(T item) where T : ModelBase, new();
IEnumerable<T> All<T>() where T : ModelBase, new();
void Update<T>(T childModel) where T : ModelBase, new();
void Delete<T>(T childModel) where T : ModelBase, new();
2013-03-24 04:16:00 +00:00
}
2013-03-25 03:51:32 +00:00
public class TestTestDatabase : ITestDatabase
2013-03-24 04:16:00 +00:00
{
2013-03-25 03:51:32 +00:00
private readonly IDatabase _dbConnection;
2013-03-24 04:16:00 +00:00
2013-03-25 03:51:32 +00:00
public TestTestDatabase(IDatabase dbConnection)
2013-02-04 00:10:15 +00:00
{
2013-03-24 04:16:00 +00:00
_dbConnection = dbConnection;
}
2013-03-25 03:51:32 +00:00
public void InsertMany<T>(IEnumerable<T> items) where T : ModelBase, new()
2013-03-24 04:16:00 +00:00
{
2013-03-25 03:51:32 +00:00
new BasicRepository<T>(_dbConnection).InsertMany(items.ToList());
2013-03-24 04:16:00 +00:00
}
2013-03-25 03:51:32 +00:00
public void Insert<T>(T item) where T : ModelBase, new()
2013-03-24 04:16:00 +00:00
{
2013-03-25 03:51:32 +00:00
new BasicRepository<T>(_dbConnection).Insert(item);
2013-03-24 04:16:00 +00:00
}
2013-03-25 03:51:32 +00:00
public IEnumerable<T> All<T>() where T : ModelBase, new()
2013-03-24 04:16:00 +00:00
{
2013-03-25 03:51:32 +00:00
return new BasicRepository<T>(_dbConnection).All();
2013-03-24 04:16:00 +00:00
}
2013-03-25 03:51:32 +00:00
public void Update<T>(T childModel) where T : ModelBase, new()
2013-03-24 04:16:00 +00:00
{
2013-03-25 03:51:32 +00:00
new BasicRepository<T>(_dbConnection).Update(childModel);
2013-03-24 04:16:00 +00:00
}
2013-03-25 03:51:32 +00:00
public void Delete<T>(T childModel) where T : ModelBase, new()
2013-03-24 04:16:00 +00:00
{
2013-03-25 03:51:32 +00:00
new BasicRepository<T>(_dbConnection).Delete(childModel);
2013-02-04 00:10:15 +00:00
}
}
}