2011-05-22 19:53:21 +03:00
|
|
|
// ReSharper disable RedundantUsingDirective
|
|
|
|
using System;
|
2010-09-28 06:04:39 +03:00
|
|
|
using System.Collections.Generic;
|
2010-10-21 04:49:23 +03:00
|
|
|
using System.IO;
|
2011-04-22 22:16:52 +03:00
|
|
|
using FizzWare.NBuilder;
|
2010-09-28 06:04:39 +03:00
|
|
|
using Moq;
|
2011-06-05 09:02:31 +03:00
|
|
|
using NzbDrone.Core.Datastore;
|
2011-04-04 06:50:12 +03:00
|
|
|
using NzbDrone.Core.Providers.Core;
|
2011-04-22 22:16:52 +03:00
|
|
|
using NzbDrone.Core.Repository;
|
2011-04-25 20:48:16 +03:00
|
|
|
using NzbDrone.Core.Repository.Quality;
|
2011-06-15 05:31:41 +03:00
|
|
|
using PetaPoco;
|
2010-09-28 06:04:39 +03:00
|
|
|
|
2011-05-19 06:55:35 +03:00
|
|
|
namespace NzbDrone.Core.Test.Framework
|
2010-09-28 06:04:39 +03:00
|
|
|
{
|
2011-11-23 08:58:26 +03:00
|
|
|
internal static class TestDbHelper
|
2010-09-28 06:04:39 +03:00
|
|
|
{
|
2011-11-23 08:58:26 +03:00
|
|
|
private const string DB_TEMPLATE_NAME = "_dbtemplate.sdf";
|
|
|
|
|
|
|
|
public static string ConnectionString { get; private set; }
|
2011-04-10 05:44:01 +03:00
|
|
|
|
2011-06-15 05:31:41 +03:00
|
|
|
public static IDatabase GetEmptyDatabase(bool enableLogging = false, string fileName = "")
|
|
|
|
{
|
2011-11-07 09:26:21 +03:00
|
|
|
Console.WriteLine("====================DataBase====================");
|
2011-10-17 05:03:54 +03:00
|
|
|
Console.WriteLine("Cloning database from template.");
|
2011-06-15 05:31:41 +03:00
|
|
|
|
|
|
|
if (String.IsNullOrWhiteSpace(fileName))
|
|
|
|
{
|
2011-06-23 09:56:17 +03:00
|
|
|
fileName = Guid.NewGuid() + ".sdf";
|
2011-06-15 05:31:41 +03:00
|
|
|
}
|
2011-06-18 04:46:22 +03:00
|
|
|
|
2011-11-23 08:58:26 +03:00
|
|
|
File.Copy(DB_TEMPLATE_NAME, fileName);
|
2011-10-17 05:03:54 +03:00
|
|
|
|
2011-11-23 08:58:26 +03:00
|
|
|
ConnectionString = Connection.GetConnectionString(fileName);
|
2011-06-18 04:46:22 +03:00
|
|
|
|
2011-11-23 08:58:26 +03:00
|
|
|
var database = Connection.GetPetaPocoDb(ConnectionString);
|
2011-06-15 05:31:41 +03:00
|
|
|
|
2011-11-07 09:26:21 +03:00
|
|
|
Console.WriteLine("====================DataBase====================");
|
|
|
|
Console.WriteLine();
|
|
|
|
Console.WriteLine();
|
|
|
|
|
2011-06-15 05:31:41 +03:00
|
|
|
return database;
|
|
|
|
}
|
|
|
|
|
2011-10-17 05:03:54 +03:00
|
|
|
public static void CreateDataBaseTemplate()
|
|
|
|
{
|
|
|
|
Console.WriteLine("Creating an empty PetaPoco database");
|
2011-11-23 08:58:26 +03:00
|
|
|
var connectionString = Connection.GetConnectionString(DB_TEMPLATE_NAME);
|
2011-10-17 05:03:54 +03:00
|
|
|
var database = Connection.GetPetaPocoDb(connectionString);
|
|
|
|
database.Dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Series GetFakeSeries(int id, string title)
|
2011-04-22 22:16:52 +03: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 06:04:39 +03:00
|
|
|
}
|
2011-04-10 05:44:01 +03:00
|
|
|
}
|