mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-15 01:23:53 -07:00
Migration is no longer executed per test, its ran once and the db is cloned after that, (faster tests, cleaner logs ;)
This commit is contained in:
parent
f1248d12c6
commit
c55ca42c21
4 changed files with 18 additions and 10 deletions
|
@ -17,20 +17,19 @@ namespace NzbDrone.Core.Test.Framework
|
|||
/// </summary>
|
||||
internal static class MockLib
|
||||
{
|
||||
public static string[] StandardSeries
|
||||
{
|
||||
get { return new[] { "c:\\tv\\the simpsons", "c:\\tv\\family guy", "c:\\tv\\southpark", "c:\\tv\\24" }; }
|
||||
}
|
||||
private const string DbTemplateName = "_dbtemplate.sdf";
|
||||
|
||||
public static IDatabase GetEmptyDatabase(bool enableLogging = false, string fileName = "")
|
||||
{
|
||||
Console.WriteLine("Creating an empty PetaPoco database");
|
||||
Console.WriteLine("Cloning database from template.");
|
||||
|
||||
if (String.IsNullOrWhiteSpace(fileName))
|
||||
{
|
||||
fileName = Guid.NewGuid() + ".sdf";
|
||||
}
|
||||
|
||||
File.Copy(DbTemplateName, fileName);
|
||||
|
||||
var connectionString = Connection.GetConnectionString(fileName);
|
||||
|
||||
var database = Connection.GetPetaPocoDb(connectionString);
|
||||
|
@ -38,7 +37,15 @@ namespace NzbDrone.Core.Test.Framework
|
|||
return database;
|
||||
}
|
||||
|
||||
public static Series GetFakeSeries(int id, string title)
|
||||
public static void CreateDataBaseTemplate()
|
||||
{
|
||||
Console.WriteLine("Creating an empty PetaPoco database");
|
||||
var connectionString = Connection.GetConnectionString(DbTemplateName);
|
||||
var database = Connection.GetPetaPocoDb(connectionString);
|
||||
database.Dispose();
|
||||
}
|
||||
|
||||
public static Series GetFakeSeries(int id, string title)
|
||||
{
|
||||
return Builder<Series>.CreateNew()
|
||||
.With(c => c.SeriesId = id)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue