2010-09-28 05:04:39 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2010-10-01 02:09:22 +02:00
|
|
|
|
using System.Diagnostics;
|
2010-10-21 03:49:23 +02:00
|
|
|
|
using System.IO;
|
2010-09-28 05:04:39 +02:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
2010-10-21 03:49:23 +02:00
|
|
|
|
using FizzWare.NBuilder;
|
2010-09-28 05:04:39 +02:00
|
|
|
|
using Moq;
|
2010-10-17 19:22:48 +02:00
|
|
|
|
using NLog;
|
2010-10-24 09:46:58 +02:00
|
|
|
|
using NzbDrone.Core.Instrumentation;
|
2010-09-28 06:25:41 +02:00
|
|
|
|
using NzbDrone.Core.Providers;
|
2011-04-04 05:50:12 +02:00
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
2010-09-29 19:19:18 +02:00
|
|
|
|
using SubSonic.DataProviders;
|
|
|
|
|
using SubSonic.Repository;
|
2010-10-05 08:21:18 +02:00
|
|
|
|
using TvdbLib;
|
2010-09-28 05:04:39 +02:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Test
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Provides the standard Mocks needed for a typical test
|
|
|
|
|
/// </summary>
|
|
|
|
|
static class MockLib
|
|
|
|
|
{
|
2010-10-17 19:22:48 +02:00
|
|
|
|
|
2010-09-28 05:04:39 +02:00
|
|
|
|
public static string[] StandardSeries
|
|
|
|
|
{
|
2010-10-05 08:21:18 +02:00
|
|
|
|
get { return new string[] { "c:\\tv\\the simpsons", "c:\\tv\\family guy", "c:\\tv\\southpark", "c:\\tv\\24" }; }
|
2010-09-28 05:04:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-10-01 02:09:22 +02:00
|
|
|
|
public static IRepository GetEmptyRepository()
|
2010-09-29 19:19:18 +02:00
|
|
|
|
{
|
2010-10-17 19:22:48 +02:00
|
|
|
|
return GetEmptyRepository(true);
|
|
|
|
|
}
|
|
|
|
|
public static IRepository GetEmptyRepository(bool enableLogging)
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine("Creating an empty SQLite database");
|
2010-10-24 09:46:58 +02:00
|
|
|
|
var provider = ProviderFactory.GetProvider("Data Source=" + Guid.NewGuid() + ".db;Version=3;New=True", "System.Data.SQLite");
|
2010-10-17 19:22:48 +02:00
|
|
|
|
if (enableLogging)
|
|
|
|
|
{
|
2010-10-24 09:46:58 +02:00
|
|
|
|
provider.Log = new NlogWriter();
|
2010-10-17 19:22:48 +02:00
|
|
|
|
}
|
2010-10-01 02:09:22 +02:00
|
|
|
|
return new SimpleRepository(provider, SimpleRepositoryOptions.RunMigrations);
|
2010-09-29 19:19:18 +02:00
|
|
|
|
}
|
2010-09-28 05:04:39 +02:00
|
|
|
|
|
2010-09-28 06:25:41 +02:00
|
|
|
|
public static IConfigProvider StandardConfig
|
2010-09-28 05:04:39 +02:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2010-09-28 06:25:41 +02:00
|
|
|
|
var mock = new Mock<IConfigProvider>();
|
2010-09-28 05:04:39 +02:00
|
|
|
|
mock.SetupGet(c => c.SeriesRoot).Returns("C:\\");
|
|
|
|
|
return mock.Object;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-21 03:49:23 +02:00
|
|
|
|
public static IDiskProvider GetStandardDisk(int seasons, int episodes)
|
2010-09-28 05:04:39 +02:00
|
|
|
|
{
|
2010-10-05 08:21:18 +02:00
|
|
|
|
var mock = new Mock<IDiskProvider>();
|
|
|
|
|
mock.Setup(c => c.GetDirectories(It.IsAny<String>())).Returns(StandardSeries);
|
2010-10-24 09:46:58 +02:00
|
|
|
|
mock.Setup(c => c.FolderExists(It.Is<String>(d => StandardSeries.Contains(d)))).Returns(true);
|
2010-10-21 03:49:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
foreach (var series in StandardSeries)
|
|
|
|
|
{
|
|
|
|
|
var file = new List<String>();
|
|
|
|
|
for (int s = 0; s < seasons; s++)
|
|
|
|
|
{
|
|
|
|
|
for (int e = 0; e < episodes; e++)
|
|
|
|
|
{
|
|
|
|
|
file.Add(String.Format("{0}\\Seasons {1}\\myepname.S{1:00}E{2:00}.avi", series, s, e));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string series1 = series;
|
|
|
|
|
mock.Setup(c => c.GetFiles(series1, "*.avi", SearchOption.AllDirectories)).Returns(file.ToArray());
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-05 08:21:18 +02:00
|
|
|
|
return mock.Object;
|
2010-09-28 05:04:39 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|