2011-05-22 18:53:21 +02:00
|
|
|
|
// ReSharper disable RedundantUsingDirective
|
|
|
|
|
using System;
|
2010-09-28 05:04:39 +02:00
|
|
|
|
using System.Collections.Generic;
|
2010-10-21 03:49:23 +02:00
|
|
|
|
using System.IO;
|
2011-04-22 21:16:52 +02:00
|
|
|
|
using FizzWare.NBuilder;
|
2010-09-28 05:04:39 +02:00
|
|
|
|
using Moq;
|
2011-06-05 08:02:31 +02:00
|
|
|
|
using NzbDrone.Core.Datastore;
|
2011-04-04 05:50:12 +02:00
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
2011-04-22 21:16:52 +02:00
|
|
|
|
using NzbDrone.Core.Repository;
|
2011-04-25 19:48:16 +02:00
|
|
|
|
using NzbDrone.Core.Repository.Quality;
|
2011-06-15 04:31:41 +02:00
|
|
|
|
using PetaPoco;
|
2010-09-28 05:04:39 +02:00
|
|
|
|
|
2011-05-19 05:55:35 +02:00
|
|
|
|
namespace NzbDrone.Core.Test.Framework
|
2010-09-28 05:04:39 +02:00
|
|
|
|
{
|
2011-04-10 04:44:01 +02:00
|
|
|
|
internal static class MockLib
|
2010-09-28 05:04:39 +02:00
|
|
|
|
{
|
2011-10-17 04:03:54 +02:00
|
|
|
|
private const string DbTemplateName = "_dbtemplate.sdf";
|
2011-04-10 04:44:01 +02:00
|
|
|
|
|
2011-06-15 04:31:41 +02:00
|
|
|
|
public static IDatabase GetEmptyDatabase(bool enableLogging = false, string fileName = "")
|
|
|
|
|
{
|
2011-10-17 04:03:54 +02:00
|
|
|
|
Console.WriteLine("Cloning database from template.");
|
2011-06-15 04:31:41 +02:00
|
|
|
|
|
|
|
|
|
if (String.IsNullOrWhiteSpace(fileName))
|
|
|
|
|
{
|
2011-06-23 08:56:17 +02:00
|
|
|
|
fileName = Guid.NewGuid() + ".sdf";
|
2011-06-15 04:31:41 +02:00
|
|
|
|
}
|
2011-06-18 03:46:22 +02:00
|
|
|
|
|
2011-10-17 04:03:54 +02:00
|
|
|
|
File.Copy(DbTemplateName, fileName);
|
|
|
|
|
|
2011-06-15 04:31:41 +02:00
|
|
|
|
var connectionString = Connection.GetConnectionString(fileName);
|
2011-06-18 03:46:22 +02:00
|
|
|
|
|
2011-06-15 04:31:41 +02:00
|
|
|
|
var database = Connection.GetPetaPocoDb(connectionString);
|
|
|
|
|
|
|
|
|
|
return database;
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-17 04:03:54 +02:00
|
|
|
|
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)
|
2011-04-22 21:16:52 +02:00
|
|
|
|
{
|
|
|
|
|
return Builder<Series>.CreateNew()
|
|
|
|
|
.With(c => c.SeriesId = id)
|
|
|
|
|
.With(c => c.Title = title)
|
|
|
|
|
.With(c => c.CleanTitle = Parser.NormalizeTitle(title))
|
|
|
|
|
.Build();
|
|
|
|
|
}
|
2010-09-28 05:04:39 +02:00
|
|
|
|
}
|
2011-04-10 04:44:01 +02:00
|
|
|
|
}
|