2011-05-22 09:53:21 -07:00
|
|
|
// ReSharper disable RedundantUsingDirective
|
|
|
|
using System;
|
2010-09-27 20:04:39 -07:00
|
|
|
using System.Collections.Generic;
|
2010-10-20 18:49:23 -07:00
|
|
|
using System.IO;
|
2011-04-22 12:16:52 -07:00
|
|
|
using FizzWare.NBuilder;
|
2010-09-27 20:04:39 -07:00
|
|
|
using Moq;
|
2011-06-04 23:02:31 -07:00
|
|
|
using NzbDrone.Core.Datastore;
|
2011-04-03 20:50:12 -07:00
|
|
|
using NzbDrone.Core.Providers.Core;
|
2011-04-22 12:16:52 -07:00
|
|
|
using NzbDrone.Core.Repository;
|
2011-04-25 10:48:16 -07:00
|
|
|
using NzbDrone.Core.Repository.Quality;
|
2011-06-14 19:31:41 -07:00
|
|
|
using PetaPoco;
|
2010-09-27 20:04:39 -07:00
|
|
|
|
2011-05-18 20:55:35 -07:00
|
|
|
namespace NzbDrone.Core.Test.Framework
|
2010-09-27 20:04:39 -07:00
|
|
|
{
|
|
|
|
/// <summary>
|
2011-04-09 19:44:01 -07:00
|
|
|
/// Provides the standard Mocks needed for a typical test
|
2010-09-27 20:04:39 -07:00
|
|
|
/// </summary>
|
2011-04-09 19:44:01 -07:00
|
|
|
internal static class MockLib
|
2010-09-27 20:04:39 -07:00
|
|
|
{
|
2011-10-16 19:03:54 -07:00
|
|
|
private const string DbTemplateName = "_dbtemplate.sdf";
|
2011-04-09 19:44:01 -07:00
|
|
|
|
2011-06-14 19:31:41 -07:00
|
|
|
public static IDatabase GetEmptyDatabase(bool enableLogging = false, string fileName = "")
|
|
|
|
{
|
2011-10-16 19:03:54 -07:00
|
|
|
Console.WriteLine("Cloning database from template.");
|
2011-06-14 19:31:41 -07:00
|
|
|
|
|
|
|
if (String.IsNullOrWhiteSpace(fileName))
|
|
|
|
{
|
2011-06-22 23:56:17 -07:00
|
|
|
fileName = Guid.NewGuid() + ".sdf";
|
2011-06-14 19:31:41 -07:00
|
|
|
}
|
2011-06-17 18:46:22 -07:00
|
|
|
|
2011-10-16 19:03:54 -07:00
|
|
|
File.Copy(DbTemplateName, fileName);
|
|
|
|
|
2011-06-14 19:31:41 -07:00
|
|
|
var connectionString = Connection.GetConnectionString(fileName);
|
2011-06-17 18:46:22 -07:00
|
|
|
|
2011-06-14 19:31:41 -07:00
|
|
|
var database = Connection.GetPetaPocoDb(connectionString);
|
|
|
|
|
|
|
|
return database;
|
|
|
|
}
|
|
|
|
|
2011-10-16 19:03:54 -07: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 12:16:52 -07: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-27 20:04:39 -07:00
|
|
|
}
|
2011-04-09 19:44:01 -07:00
|
|
|
}
|