2011-06-18 10:29:38 +02:00
|
|
|
|
using System;
|
2012-10-14 02:54:46 +02:00
|
|
|
|
using System.Collections.Generic;
|
2011-05-22 18:53:21 +02:00
|
|
|
|
using System.Linq;
|
2011-11-14 01:22:18 +01:00
|
|
|
|
|
2011-05-22 18:53:21 +02:00
|
|
|
|
using FizzWare.NBuilder;
|
2011-06-02 23:06:46 +02:00
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using NUnit.Framework;
|
2011-05-22 18:53:21 +02:00
|
|
|
|
using NzbDrone.Core.Providers;
|
2011-06-15 04:31:41 +02:00
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
2011-05-22 18:53:21 +02:00
|
|
|
|
using NzbDrone.Core.Repository;
|
2011-06-18 06:39:02 +02:00
|
|
|
|
using NzbDrone.Core.Repository.Quality;
|
2011-05-19 05:55:35 +02:00
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
2011-05-22 18:53:21 +02:00
|
|
|
|
|
|
|
|
|
// ReSharper disable InconsistentNaming
|
2011-10-21 01:42:17 +02:00
|
|
|
|
namespace NzbDrone.Core.Test.ProviderTests
|
2011-05-22 18:53:21 +02:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2011-11-13 08:27:16 +01:00
|
|
|
|
public class SeriesProviderTest : CoreTest
|
2011-05-22 18:53:21 +02:00
|
|
|
|
{
|
2012-10-14 02:54:46 +02:00
|
|
|
|
private IList<QualityProfile> _qualityProfiles;
|
|
|
|
|
|
|
|
|
|
[SetUp]
|
|
|
|
|
public void Setup()
|
|
|
|
|
{
|
|
|
|
|
_qualityProfiles = Builder<QualityProfile>
|
|
|
|
|
.CreateListOfSize(2)
|
|
|
|
|
.All()
|
|
|
|
|
.With(p => p.Cutoff = QualityTypes.DVD)
|
|
|
|
|
.With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD })
|
|
|
|
|
.Build();
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-15 04:31:41 +02:00
|
|
|
|
[TestCase(true)]
|
|
|
|
|
[TestCase(false)]
|
|
|
|
|
public void Add_new_series(bool useSeasonFolder)
|
2011-05-22 18:53:21 +02:00
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-06-16 08:33:01 +02:00
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Mocker.GetMock<ConfigProvider>()
|
2011-06-15 04:31:41 +02:00
|
|
|
|
.Setup(c => c.UseSeasonFolder).Returns(useSeasonFolder);
|
2011-06-16 08:33:01 +02:00
|
|
|
|
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeProfiles = Builder<QualityProfile>
|
|
|
|
|
.CreateListOfSize(2)
|
|
|
|
|
.All()
|
|
|
|
|
.With(p => p.Cutoff = QualityTypes.DVD)
|
|
|
|
|
.With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD })
|
|
|
|
|
.Build();
|
2011-06-14 07:52:12 +02:00
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.InsertMany(fakeProfiles);
|
2011-10-18 23:46:06 +02:00
|
|
|
|
|
2011-05-22 18:53:21 +02:00
|
|
|
|
const string path = "C:\\Test\\";
|
2012-02-29 09:25:41 +01:00
|
|
|
|
const string title = "Test Title";
|
2011-05-22 18:53:21 +02:00
|
|
|
|
const int tvDbId = 1234;
|
|
|
|
|
const int qualityProfileId = 2;
|
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
var seriesProvider = Mocker.Resolve<SeriesProvider>();
|
2012-09-19 08:06:09 +02:00
|
|
|
|
seriesProvider.AddSeries(title, path, tvDbId, qualityProfileId, null);
|
2011-05-22 18:53:21 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
var series = seriesProvider.GetAllSeries();
|
2011-06-02 23:06:46 +02:00
|
|
|
|
series.Should().HaveCount(1);
|
2011-05-22 18:53:21 +02:00
|
|
|
|
Assert.AreEqual(path, series.First().Path);
|
|
|
|
|
Assert.AreEqual(tvDbId, series.First().SeriesId);
|
|
|
|
|
Assert.AreEqual(qualityProfileId, series.First().QualityProfileId);
|
2012-02-29 09:25:41 +01:00
|
|
|
|
Assert.AreEqual(title, series.First().Title);
|
2011-06-15 04:31:41 +02:00
|
|
|
|
series.First().SeasonFolder.Should().Be(useSeasonFolder);
|
2011-05-22 18:53:21 +02:00
|
|
|
|
}
|
|
|
|
|
|
2012-01-13 23:16:14 +01:00
|
|
|
|
|
|
|
|
|
[TestCase(0)]
|
|
|
|
|
[TestCase(-1)]
|
|
|
|
|
public void add_series_should_fail_if_series_is_less_than_zero(int seriesId)
|
|
|
|
|
{
|
|
|
|
|
WithRealDb();
|
2012-09-19 08:06:09 +02:00
|
|
|
|
Assert.Throws<ArgumentOutOfRangeException>(() => Mocker.Resolve<SeriesProvider>().AddSeries("Title", "C:\\Test", seriesId, 1, null));
|
2012-01-13 23:16:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-05-22 18:53:21 +02:00
|
|
|
|
[Test]
|
|
|
|
|
public void find_series_empty_repo()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-05-22 18:53:21 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
var seriesProvider = Mocker.Resolve<SeriesProvider>();
|
2011-05-22 18:53:21 +02:00
|
|
|
|
var series = seriesProvider.FindSeries("My Title");
|
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
Assert.IsNull(series);
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-18 05:36:22 +02:00
|
|
|
|
[Test]
|
2011-06-19 07:56:52 +02:00
|
|
|
|
[ExpectedException(typeof(InvalidOperationException), ExpectedMessage = "Sequence contains no elements")]
|
2011-06-18 05:36:22 +02:00
|
|
|
|
public void Get_series_invalid_series_id_should_return_null()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-06-18 05:36:22 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
var seriesProvider = Mocker.Resolve<SeriesProvider>();
|
2011-06-18 05:36:22 +02:00
|
|
|
|
var series = seriesProvider.GetSeries(2);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
Assert.IsNull(series);
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-18 06:39:02 +02:00
|
|
|
|
[Test]
|
|
|
|
|
public void Get_series_by_id()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-06-18 06:39:02 +02:00
|
|
|
|
|
2011-06-18 10:29:38 +02:00
|
|
|
|
var fakeSeries = Builder<Series>.CreateNew()
|
|
|
|
|
.With(c => c.QualityProfileId = 1)
|
2011-06-20 09:40:45 +02:00
|
|
|
|
.With(c => c.EpisodeCount = 0)
|
|
|
|
|
.With(c => c.EpisodeFileCount = 0)
|
|
|
|
|
.With(c => c.SeasonCount = 0)
|
2011-06-18 10:29:38 +02:00
|
|
|
|
.Build();
|
2012-10-14 02:54:46 +02:00
|
|
|
|
|
|
|
|
|
var fakeQuality = Builder<QualityProfile>
|
|
|
|
|
.CreateNew()
|
|
|
|
|
.With(p => p.Cutoff = QualityTypes.DVD)
|
|
|
|
|
.With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD })
|
|
|
|
|
.Build();
|
2011-06-18 06:39:02 +02:00
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.Insert(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
2011-06-18 06:39:02 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Mocker.Resolve<QualityProvider>();
|
|
|
|
|
var series = Mocker.Resolve<SeriesProvider>().GetSeries(1);
|
2011-06-18 06:39:02 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
2011-09-28 19:56:30 +02:00
|
|
|
|
series.ShouldHave().AllPropertiesBut(s => s.QualityProfile, s => s.SeriesId, s => s.NextAiring).EqualTo(fakeSeries);
|
2011-06-18 06:39:02 +02:00
|
|
|
|
series.QualityProfile.Should().NotBeNull();
|
2011-06-18 10:29:38 +02:00
|
|
|
|
series.QualityProfile.ShouldHave().Properties(q => q.Name, q => q.SonicAllowed, q => q.Cutoff, q => q.SonicAllowed).EqualTo(fakeQuality);
|
2011-06-20 08:28:42 +02:00
|
|
|
|
|
2011-06-18 06:39:02 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-06-18 09:17:47 +02:00
|
|
|
|
[Test]
|
|
|
|
|
public void Find_series_by_cleanName_mapped()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-06-18 09:17:47 +02:00
|
|
|
|
|
|
|
|
|
var fakeSeries = Builder<Series>.CreateNew()
|
|
|
|
|
.With(c => c.QualityProfileId = 1)
|
|
|
|
|
.With(c => c.CleanTitle = "laworder")
|
|
|
|
|
.Build();
|
2012-10-14 02:54:46 +02:00
|
|
|
|
|
|
|
|
|
var fakeQuality = Builder<QualityProfile>
|
|
|
|
|
.CreateNew()
|
|
|
|
|
.With(p => p.Cutoff = QualityTypes.DVD)
|
|
|
|
|
.With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD })
|
|
|
|
|
.Build();
|
2011-06-18 09:17:47 +02:00
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
var id = Db.Insert(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
2011-06-18 09:17:47 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Mocker.Resolve<QualityProvider>();
|
|
|
|
|
Mocker.GetMock<SceneMappingProvider>().Setup(s => s.GetSeriesId("laworder")).Returns(1);
|
2011-06-18 09:17:47 +02:00
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
var series = Mocker.Resolve<SeriesProvider>().FindSeries("laworder");
|
2011-06-18 09:17:47 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
series.ShouldHave().AllPropertiesBut(s => s.QualityProfile, s => s.SeriesId);
|
|
|
|
|
series.QualityProfile.Should().NotBeNull();
|
|
|
|
|
series.QualityProfile.ShouldHave().Properties(q => q.Name, q => q.SonicAllowed, q => q.Cutoff, q => q.AllowedString);
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-22 18:53:21 +02:00
|
|
|
|
[Test]
|
|
|
|
|
public void find_series_empty_match()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
|
|
|
|
|
2011-12-15 05:29:21 +01:00
|
|
|
|
var fakeSEries = Builder<Series>.CreateNew()
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
Db.Insert(fakeSEries);
|
|
|
|
|
|
2011-05-22 18:53:21 +02:00
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
var seriesProvider = Mocker.Resolve<SeriesProvider>();
|
2011-05-22 18:53:21 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
2011-12-15 05:29:21 +01:00
|
|
|
|
seriesProvider.FindSeries("WrongTitle").Should().BeNull();
|
2011-05-22 18:53:21 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-06-15 04:31:41 +02:00
|
|
|
|
[TestCase("The Test", "Test")]
|
|
|
|
|
[TestCase("Through the Wormhole", "Through.the.Wormhole")]
|
2011-05-22 18:53:21 +02:00
|
|
|
|
public void find_series_match(string title, string searchTitle)
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
|
|
|
|
|
2011-12-15 05:29:21 +01:00
|
|
|
|
var fakeSeries = Builder<Series>.CreateNew()
|
|
|
|
|
.With(c => c.Title = title)
|
|
|
|
|
.With(c => c.CleanTitle = Parser.NormalizeTitle(title))
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew()
|
|
|
|
|
.With(c => c.QualityProfileId = fakeSeries.QualityProfileId)
|
2012-10-14 02:54:46 +02:00
|
|
|
|
.With(p => p.Cutoff = QualityTypes.DVD)
|
|
|
|
|
.With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD })
|
2011-12-15 05:29:21 +01:00
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
Db.Insert(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
2011-06-18 09:17:47 +02:00
|
|
|
|
|
2011-05-22 18:53:21 +02:00
|
|
|
|
//Act
|
2011-12-15 05:29:21 +01:00
|
|
|
|
var series = Mocker.Resolve<SeriesProvider>().FindSeries(searchTitle);
|
2011-05-22 18:53:21 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
2011-12-15 05:29:21 +01:00
|
|
|
|
series.Should().NotBeNull();
|
|
|
|
|
series.SeriesId.Should().Be(series.SeriesId);
|
|
|
|
|
series.Title.Should().BeEquivalentTo(series.Title);
|
2011-05-22 18:53:21 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void is_monitored()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-05-22 18:53:21 +02:00
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.Insert(Builder<Series>.CreateNew()
|
2011-05-22 18:53:21 +02:00
|
|
|
|
.With(c => c.Monitored = true)
|
|
|
|
|
.With(c => c.SeriesId = 12)
|
|
|
|
|
.Build());
|
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.Insert(Builder<Series>.CreateNew()
|
2011-06-17 04:48:24 +02:00
|
|
|
|
.With(c => c.Monitored = false)
|
|
|
|
|
.With(c => c.SeriesId = 11)
|
|
|
|
|
.Build());
|
2011-05-22 18:53:21 +02:00
|
|
|
|
|
2012-10-14 02:54:46 +02:00
|
|
|
|
Db.InsertMany(Builder<QualityProfile>.CreateListOfSize(3)
|
|
|
|
|
.All()
|
|
|
|
|
.With(p => p.Cutoff = QualityTypes.DVD)
|
|
|
|
|
.With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD })
|
|
|
|
|
.Build());
|
2011-05-22 18:53:21 +02:00
|
|
|
|
|
|
|
|
|
//Act, Assert
|
2011-12-09 01:55:00 +01:00
|
|
|
|
var provider = Mocker.Resolve<SeriesProvider>();
|
2011-06-23 08:56:17 +02:00
|
|
|
|
provider.IsMonitored(12).Should().BeTrue();
|
2011-05-22 18:53:21 +02:00
|
|
|
|
Assert.IsFalse(provider.IsMonitored(11));
|
|
|
|
|
Assert.IsFalse(provider.IsMonitored(1));
|
|
|
|
|
}
|
2011-06-20 09:13:17 +02:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void Get_Series_With_Count()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-06-20 09:13:17 +02:00
|
|
|
|
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2011-06-20 09:13:17 +02:00
|
|
|
|
var fakeSeries = Builder<Series>.CreateNew().With(e => e.QualityProfileId = fakeQuality.QualityProfileId).Build();
|
2011-07-10 04:45:31 +02:00
|
|
|
|
var fakeEpisodes = Builder<Episode>.CreateListOfSize(10)
|
2011-10-18 23:46:06 +02:00
|
|
|
|
.All().With(e => e.SeriesId = fakeSeries.SeriesId)
|
|
|
|
|
.With(e => e.Ignored = false)
|
|
|
|
|
.With(e => e.AirDate = DateTime.Today)
|
|
|
|
|
.TheFirst(5)
|
|
|
|
|
.With(e => e.EpisodeFileId = 0)
|
2011-10-23 07:39:14 +02:00
|
|
|
|
.TheLast(2)
|
2011-10-18 23:46:06 +02:00
|
|
|
|
.With(e => e.AirDate = DateTime.Today.AddDays(1))
|
2011-07-10 04:45:31 +02:00
|
|
|
|
.Build();
|
2011-06-20 09:13:17 +02:00
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.Insert(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
|
|
|
|
Db.InsertMany(fakeEpisodes);
|
2011-06-20 09:13:17 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Mocker.Resolve<QualityProvider>();
|
|
|
|
|
var series = Mocker.Resolve<SeriesProvider>().GetAllSeriesWithEpisodeCount();
|
2011-06-20 09:13:17 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
series.Should().HaveCount(1);
|
2011-07-10 04:45:31 +02:00
|
|
|
|
Assert.AreEqual(8, series[0].EpisodeCount);
|
|
|
|
|
Assert.AreEqual(3, series[0].EpisodeFileCount);
|
2011-06-20 09:13:17 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void Get_Series_With_Count_AllIgnored()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-06-20 09:13:17 +02:00
|
|
|
|
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2011-06-20 09:13:17 +02:00
|
|
|
|
var fakeSeries = Builder<Series>.CreateNew().With(e => e.QualityProfileId = fakeQuality.QualityProfileId).Build();
|
2011-10-23 07:39:14 +02:00
|
|
|
|
var fakeEpisodes = Builder<Episode>.CreateListOfSize(10).All().With(e => e.SeriesId = fakeSeries.SeriesId).With(e => e.Ignored = true).Random(5).With(e => e.EpisodeFileId = 0).Build();
|
2011-06-20 09:13:17 +02:00
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.Insert(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
|
|
|
|
Db.InsertMany(fakeEpisodes);
|
2011-06-20 09:13:17 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Mocker.Resolve<QualityProvider>();
|
|
|
|
|
var series = Mocker.Resolve<SeriesProvider>().GetAllSeriesWithEpisodeCount();
|
2011-06-20 09:13:17 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
series.Should().HaveCount(1);
|
|
|
|
|
Assert.AreEqual(0, series[0].EpisodeCount);
|
|
|
|
|
Assert.AreEqual(0, series[0].EpisodeFileCount);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void Get_Series_With_Count_AllDownloaded()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-06-20 09:13:17 +02:00
|
|
|
|
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2011-06-20 09:13:17 +02:00
|
|
|
|
var fakeSeries = Builder<Series>.CreateNew().With(e => e.QualityProfileId = fakeQuality.QualityProfileId).Build();
|
2011-07-10 04:58:36 +02:00
|
|
|
|
var fakeEpisodes = Builder<Episode>.CreateListOfSize(10)
|
2011-10-18 23:46:06 +02:00
|
|
|
|
.All()
|
|
|
|
|
.With(e => e.SeriesId = fakeSeries.SeriesId)
|
|
|
|
|
.With(e => e.Ignored = false)
|
|
|
|
|
.With(e => e.AirDate = DateTime.Today.AddDays(-1))
|
2011-07-10 04:58:36 +02:00
|
|
|
|
.Build();
|
2011-06-20 09:13:17 +02:00
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.Insert(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
|
|
|
|
Db.InsertMany(fakeEpisodes);
|
2011-06-20 09:13:17 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Mocker.Resolve<QualityProvider>();
|
|
|
|
|
var series = Mocker.Resolve<SeriesProvider>().GetAllSeriesWithEpisodeCount();
|
2011-06-20 09:13:17 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
series.Should().HaveCount(1);
|
|
|
|
|
Assert.AreEqual(10, series[0].EpisodeCount);
|
|
|
|
|
Assert.AreEqual(10, series[0].EpisodeFileCount);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void Get_Series_With_Count_Half_Ignored()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-06-20 09:13:17 +02:00
|
|
|
|
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2011-06-20 09:13:17 +02:00
|
|
|
|
var fakeSeries = Builder<Series>.CreateNew().With(e => e.QualityProfileId = fakeQuality.QualityProfileId).Build();
|
|
|
|
|
var fakeEpisodes = Builder<Episode>.CreateListOfSize(10)
|
2011-10-18 23:46:06 +02:00
|
|
|
|
.All()
|
|
|
|
|
.With(e => e.SeriesId = fakeSeries.SeriesId)
|
|
|
|
|
.With(e => e.AirDate = DateTime.Today.AddDays(-1))
|
|
|
|
|
.TheFirst(5)
|
|
|
|
|
.With(e => e.Ignored = false)
|
2011-10-23 07:39:14 +02:00
|
|
|
|
.TheLast(5)
|
2011-10-18 23:46:06 +02:00
|
|
|
|
.With(e => e.Ignored = true)
|
2011-06-20 09:13:17 +02:00
|
|
|
|
.Build();
|
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.Insert(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
|
|
|
|
Db.InsertMany(fakeEpisodes);
|
2011-06-20 09:13:17 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Mocker.Resolve<QualityProvider>();
|
|
|
|
|
var series = Mocker.Resolve<SeriesProvider>().GetAllSeriesWithEpisodeCount();
|
2011-06-20 09:13:17 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
series.Should().HaveCount(1);
|
|
|
|
|
Assert.AreEqual(5, series[0].EpisodeCount);
|
|
|
|
|
Assert.AreEqual(5, series[0].EpisodeFileCount);
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-23 05:14:01 +01:00
|
|
|
|
[Test]
|
|
|
|
|
public void Get_Series_should_not_return_series_that_do_not_have_info_synced_yet()
|
|
|
|
|
{
|
|
|
|
|
WithRealDb();
|
|
|
|
|
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2012-01-23 05:14:01 +01:00
|
|
|
|
|
|
|
|
|
var fakeSeries = Builder<Series>.CreateListOfSize(5)
|
|
|
|
|
.All()
|
|
|
|
|
.With(e => e.QualityProfileId = fakeQuality.QualityProfileId)
|
|
|
|
|
.TheLast(2)
|
|
|
|
|
.With(e => e.LastInfoSync = null)
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
var fakeEpisodes = Builder<Episode>.CreateListOfSize(10)
|
|
|
|
|
.All()
|
|
|
|
|
.With(e => e.SeriesId = fakeSeries.First().SeriesId)
|
|
|
|
|
.With(e => e.AirDate = DateTime.Today.AddDays(-1))
|
|
|
|
|
.TheFirst(5)
|
|
|
|
|
.With(e => e.Ignored = false)
|
|
|
|
|
.TheLast(5)
|
|
|
|
|
.With(e => e.Ignored = true)
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
Db.InsertMany(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
|
|
|
|
Db.InsertMany(fakeEpisodes);
|
|
|
|
|
|
|
|
|
|
//Act
|
|
|
|
|
Mocker.Resolve<QualityProvider>();
|
|
|
|
|
var series = Mocker.Resolve<SeriesProvider>().GetAllSeriesWithEpisodeCount();
|
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
series.Should().HaveCount(3);
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-20 09:13:17 +02:00
|
|
|
|
[Test]
|
|
|
|
|
public void Get_Single_Series()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-06-20 09:13:17 +02:00
|
|
|
|
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2011-06-20 09:13:17 +02:00
|
|
|
|
var fakeSeries = Builder<Series>.CreateNew()
|
|
|
|
|
.With(e => e.QualityProfileId = fakeQuality.QualityProfileId)
|
|
|
|
|
.With(e => e.SeriesId = 1)
|
|
|
|
|
.Build();
|
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.Insert(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
2011-06-20 09:13:17 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Mocker.Resolve<QualityProvider>();
|
|
|
|
|
var series = Mocker.Resolve<SeriesProvider>().GetSeries(1);
|
2011-06-20 09:13:17 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
series.QualityProfile.Should().NotBeNull();
|
|
|
|
|
series.QualityProfileId.Should().Be(fakeQuality.QualityProfileId);
|
|
|
|
|
}
|
2011-07-29 03:03:24 +02:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void SeriesPathExists_exact_match()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-07-29 03:03:24 +02:00
|
|
|
|
|
|
|
|
|
var path = @"C:\Test\TV\30 Rock";
|
|
|
|
|
|
|
|
|
|
var fakeSeries = Builder<Series>.CreateListOfSize(10)
|
2011-10-18 23:46:06 +02:00
|
|
|
|
.All()
|
|
|
|
|
.With(c => c.QualityProfileId = 1)
|
|
|
|
|
.TheFirst(1)
|
|
|
|
|
.With(c => c.Path = path)
|
2011-07-29 03:03:24 +02:00
|
|
|
|
.Build();
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2011-07-29 03:03:24 +02:00
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.InsertMany(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
2011-07-29 03:03:24 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Mocker.Resolve<QualityProvider>();
|
|
|
|
|
//Mocker.GetMock<IDatabase>().Setup(s => s.Fetch<Series, QualityProfile>(It.IsAny<string>())).Returns(
|
2011-10-18 23:46:06 +02:00
|
|
|
|
//fakeSeries.ToList());
|
2011-07-29 03:03:24 +02:00
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
var result = Mocker.Resolve<SeriesProvider>().SeriesPathExists(path);
|
2011-07-29 03:03:24 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
result.Should().BeTrue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void SeriesPathExists_match()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-07-29 03:03:24 +02:00
|
|
|
|
|
|
|
|
|
var path = @"C:\Test\TV\30 Rock";
|
|
|
|
|
|
|
|
|
|
var fakeSeries = Builder<Series>.CreateListOfSize(10)
|
2011-10-18 23:46:06 +02:00
|
|
|
|
.All()
|
|
|
|
|
.With(c => c.QualityProfileId = 1)
|
|
|
|
|
.TheFirst(1)
|
|
|
|
|
.With(c => c.Path = path)
|
2011-07-29 03:03:24 +02:00
|
|
|
|
.Build();
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2011-07-29 03:03:24 +02:00
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.InsertMany(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
2011-07-29 03:03:24 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Mocker.Resolve<QualityProvider>();
|
|
|
|
|
//Mocker.GetMock<IDatabase>().Setup(s => s.Fetch<Series, QualityProfile>(It.IsAny<string>())).Returns(
|
2011-07-29 03:03:24 +02:00
|
|
|
|
//fakeSeries.ToList());
|
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
var result = Mocker.Resolve<SeriesProvider>().SeriesPathExists(path.ToUpper());
|
2011-07-29 03:03:24 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
result.Should().BeTrue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void SeriesPathExists_match_alt()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-07-29 03:03:24 +02:00
|
|
|
|
|
|
|
|
|
var path = @"C:\Test\TV\The Simpsons";
|
|
|
|
|
|
|
|
|
|
var fakeSeries = Builder<Series>.CreateListOfSize(10)
|
2011-10-18 23:46:06 +02:00
|
|
|
|
.All()
|
|
|
|
|
.With(c => c.QualityProfileId = 1)
|
|
|
|
|
.TheFirst(1)
|
|
|
|
|
.With(c => c.Path = path)
|
2011-07-29 03:03:24 +02:00
|
|
|
|
.Build();
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2011-07-29 03:03:24 +02:00
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.InsertMany(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
2011-07-29 03:03:24 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Mocker.Resolve<QualityProvider>();
|
|
|
|
|
//Mocker.GetMock<IDatabase>().Setup(s => s.Fetch<Series, QualityProfile>(It.IsAny<string>())).Returns(
|
2011-07-29 03:03:24 +02:00
|
|
|
|
//fakeSeries.ToList());
|
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
var result = Mocker.Resolve<SeriesProvider>().SeriesPathExists(@"c:\Test\Tv\the sIMpsons");
|
2011-07-29 03:03:24 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
result.Should().BeTrue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void SeriesPathExists_match_false()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-07-29 03:03:24 +02:00
|
|
|
|
|
|
|
|
|
var path = @"C:\Test\TV\30 Rock";
|
|
|
|
|
|
|
|
|
|
var fakeSeries = Builder<Series>.CreateListOfSize(10)
|
2011-10-18 23:46:06 +02:00
|
|
|
|
.All()
|
|
|
|
|
.With(c => c.QualityProfileId = 1)
|
|
|
|
|
.TheFirst(1)
|
|
|
|
|
.With(c => c.Path = path)
|
2011-07-29 03:03:24 +02:00
|
|
|
|
.Build();
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2011-07-29 03:03:24 +02:00
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.InsertMany(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
2011-07-29 03:03:24 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Mocker.Resolve<QualityProvider>();
|
|
|
|
|
//Mocker.GetMock<IDatabase>().Setup(s => s.Fetch<Series, QualityProfile>(It.IsAny<string>())).Returns(
|
2011-07-29 03:03:24 +02:00
|
|
|
|
//fakeSeries.ToList());
|
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
var result = Mocker.Resolve<SeriesProvider>().SeriesPathExists(@"C:\Test\TV\Not A match");
|
2011-07-29 03:03:24 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
result.Should().BeFalse();
|
|
|
|
|
}
|
2011-09-28 19:56:30 +02:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void Get_Series_NextAiring_Today()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-09-28 19:56:30 +02:00
|
|
|
|
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2011-09-28 19:56:30 +02:00
|
|
|
|
var fakeSeries = Builder<Series>.CreateNew().With(e => e.QualityProfileId = fakeQuality.QualityProfileId).Build();
|
|
|
|
|
var fakeEpisodes = Builder<Episode>.CreateListOfSize(2)
|
2011-10-18 23:46:06 +02:00
|
|
|
|
.All()
|
|
|
|
|
.With(e => e.SeriesId = fakeSeries.SeriesId)
|
|
|
|
|
.With(e => e.Ignored = false)
|
|
|
|
|
.With(e => e.AirDate = DateTime.Today.AddDays(1))
|
|
|
|
|
.TheFirst(1)
|
|
|
|
|
.With(e => e.AirDate = DateTime.Today)
|
2011-09-28 19:56:30 +02:00
|
|
|
|
.Build();
|
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.Insert(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
|
|
|
|
Db.InsertMany(fakeEpisodes);
|
2011-09-28 19:56:30 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Mocker.Resolve<QualityProvider>();
|
|
|
|
|
var series = Mocker.Resolve<SeriesProvider>().GetAllSeriesWithEpisodeCount();
|
2011-09-28 19:56:30 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
series.Should().HaveCount(1);
|
|
|
|
|
series[0].NextAiring.Should().Be(DateTime.Today);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void Get_Series_NextAiring_Tomorrow_Last_Aired_Yesterday()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-09-28 19:56:30 +02:00
|
|
|
|
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2011-09-28 19:56:30 +02:00
|
|
|
|
var fakeSeries = Builder<Series>.CreateNew().With(e => e.QualityProfileId = fakeQuality.QualityProfileId).Build();
|
|
|
|
|
var fakeEpisodes = Builder<Episode>.CreateListOfSize(2)
|
2011-10-18 23:46:06 +02:00
|
|
|
|
.All()
|
|
|
|
|
.With(e => e.SeriesId = fakeSeries.SeriesId)
|
|
|
|
|
.With(e => e.Ignored = false)
|
|
|
|
|
.With(e => e.AirDate = DateTime.Today.AddDays(1))
|
|
|
|
|
.TheFirst(1)
|
|
|
|
|
.With(e => e.AirDate = DateTime.Today.AddDays(-1))
|
2011-09-28 19:56:30 +02:00
|
|
|
|
.Build();
|
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.Insert(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
|
|
|
|
Db.InsertMany(fakeEpisodes);
|
2011-09-28 19:56:30 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Mocker.Resolve<QualityProvider>();
|
|
|
|
|
var series = Mocker.Resolve<SeriesProvider>().GetAllSeriesWithEpisodeCount();
|
2011-09-28 19:56:30 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
series.Should().HaveCount(1);
|
|
|
|
|
series[0].NextAiring.Should().Be(DateTime.Today.AddDays(1));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void Get_Series_NextAiring_Unknown()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-09-28 19:56:30 +02:00
|
|
|
|
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2011-09-28 19:56:30 +02:00
|
|
|
|
var fakeSeries = Builder<Series>.CreateNew().With(e => e.QualityProfileId = fakeQuality.QualityProfileId).Build();
|
|
|
|
|
var fakeEpisodes = Builder<Episode>.CreateListOfSize(2)
|
2011-10-18 23:46:06 +02:00
|
|
|
|
.All()
|
|
|
|
|
.With(e => e.SeriesId = fakeSeries.SeriesId)
|
|
|
|
|
.With(e => e.AirDate = null)
|
|
|
|
|
.With(e => e.Ignored = false)
|
2011-09-28 19:56:30 +02:00
|
|
|
|
.Build();
|
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.Insert(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
|
|
|
|
Db.InsertMany(fakeEpisodes);
|
2011-09-28 19:56:30 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Mocker.Resolve<QualityProvider>();
|
|
|
|
|
var series = Mocker.Resolve<SeriesProvider>().GetAllSeriesWithEpisodeCount();
|
2011-09-28 19:56:30 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
series.Should().HaveCount(1);
|
|
|
|
|
series[0].NextAiring.Should().NotHaveValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void Get_Series_NextAiring_1_month()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-09-28 19:56:30 +02:00
|
|
|
|
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2011-09-28 19:56:30 +02:00
|
|
|
|
var fakeSeries = Builder<Series>.CreateNew().With(e => e.QualityProfileId = fakeQuality.QualityProfileId).Build();
|
|
|
|
|
var fakeEpisodes = Builder<Episode>.CreateListOfSize(2)
|
2011-10-18 23:46:06 +02:00
|
|
|
|
.All()
|
|
|
|
|
.With(e => e.SeriesId = fakeSeries.SeriesId)
|
|
|
|
|
.With(e => e.Ignored = false)
|
|
|
|
|
.With(e => e.AirDate = DateTime.Today.AddMonths(1))
|
|
|
|
|
.TheFirst(1)
|
|
|
|
|
.With(e => e.AirDate = DateTime.Today.AddDays(-1))
|
2011-09-28 19:56:30 +02:00
|
|
|
|
.Build();
|
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.Insert(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
|
|
|
|
Db.InsertMany(fakeEpisodes);
|
2011-09-28 19:56:30 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Mocker.Resolve<QualityProvider>();
|
|
|
|
|
var series = Mocker.Resolve<SeriesProvider>().GetAllSeriesWithEpisodeCount();
|
2011-09-28 19:56:30 +02:00
|
|
|
|
|
2011-10-04 01:38:22 +02:00
|
|
|
|
//Assert
|
|
|
|
|
series.Should().HaveCount(1);
|
|
|
|
|
series[0].NextAiring.Should().Be(DateTime.Today.AddMonths(1));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void Get_Series_NextAiring_skip_ignored()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-10-04 01:38:22 +02:00
|
|
|
|
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2011-10-04 01:38:22 +02:00
|
|
|
|
var fakeSeries = Builder<Series>.CreateNew().With(e => e.QualityProfileId = fakeQuality.QualityProfileId).Build();
|
|
|
|
|
var fakeEpisodes = Builder<Episode>.CreateListOfSize(2)
|
2011-10-18 23:46:06 +02:00
|
|
|
|
.All()
|
|
|
|
|
.With(e => e.SeriesId = fakeSeries.SeriesId)
|
|
|
|
|
.With(e => e.AirDate = DateTime.Today.AddMonths(1))
|
|
|
|
|
.With(e => e.Ignored = false)
|
|
|
|
|
.TheFirst(1)
|
|
|
|
|
.With(e => e.AirDate = DateTime.Today.AddDays(1))
|
|
|
|
|
.With(e => e.Ignored = true)
|
2011-10-04 01:38:22 +02:00
|
|
|
|
.Build();
|
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.Insert(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
|
|
|
|
Db.InsertMany(fakeEpisodes);
|
2011-10-04 01:38:22 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Mocker.Resolve<QualityProvider>();
|
|
|
|
|
var series = Mocker.Resolve<SeriesProvider>().GetAllSeriesWithEpisodeCount();
|
2011-10-04 01:38:22 +02:00
|
|
|
|
|
2011-09-28 19:56:30 +02:00
|
|
|
|
//Assert
|
|
|
|
|
series.Should().HaveCount(1);
|
|
|
|
|
series[0].NextAiring.Should().Be(DateTime.Today.AddMonths(1));
|
|
|
|
|
}
|
2011-10-21 01:36:47 +02:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void SearchForSeries_should_return_results_that_start_with_query()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-10-21 01:36:47 +02:00
|
|
|
|
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2011-10-21 01:36:47 +02:00
|
|
|
|
var fakeSeries = Builder<Series>.CreateListOfSize(10)
|
2011-10-23 07:39:14 +02:00
|
|
|
|
.All()
|
|
|
|
|
.With(e => e.QualityProfileId = fakeQuality.QualityProfileId)
|
2011-10-21 01:36:47 +02:00
|
|
|
|
.Build();
|
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.InsertMany(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
2011-10-21 01:36:47 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
var series = Mocker.Resolve<SeriesProvider>().SearchForSeries("Titl");
|
2011-10-21 01:36:47 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
series.Should().HaveCount(10);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
2011-10-21 08:06:36 +02:00
|
|
|
|
public void SearchForSeries_should_return_results_that_contain_the_query()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-10-21 08:06:36 +02:00
|
|
|
|
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2011-10-21 08:06:36 +02:00
|
|
|
|
var fakeSeries = Builder<Series>.CreateListOfSize(10)
|
2011-10-23 07:39:14 +02:00
|
|
|
|
.All()
|
|
|
|
|
.With(e => e.QualityProfileId = fakeQuality.QualityProfileId)
|
2011-10-21 08:06:36 +02:00
|
|
|
|
.Build();
|
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.InsertMany(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
2011-10-21 08:06:36 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
var series = Mocker.Resolve<SeriesProvider>().SearchForSeries("itl");
|
2011-10-21 08:06:36 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
series.Should().HaveCount(10);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void SearchForSeries_should_return_results_that_end_with_the_query()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-10-21 08:06:36 +02:00
|
|
|
|
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2011-10-21 08:06:36 +02:00
|
|
|
|
var fakeSeries = Builder<Series>.CreateListOfSize(10)
|
2011-10-23 07:39:14 +02:00
|
|
|
|
.All()
|
|
|
|
|
.With(e => e.QualityProfileId = fakeQuality.QualityProfileId)
|
2011-10-21 08:06:36 +02:00
|
|
|
|
.Build();
|
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.InsertMany(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
2011-10-21 08:06:36 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
var series = Mocker.Resolve<SeriesProvider>().SearchForSeries("2");
|
2011-10-21 08:06:36 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
series.Should().HaveCount(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void SearchForSeries_should_not_return_results_that_do_not_contain_the_query()
|
2011-10-21 01:36:47 +02:00
|
|
|
|
{
|
2011-12-15 05:29:21 +01:00
|
|
|
|
WithRealDb();
|
2011-10-21 01:36:47 +02:00
|
|
|
|
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2011-10-21 01:36:47 +02:00
|
|
|
|
var fakeSeries = Builder<Series>.CreateListOfSize(10)
|
2011-10-23 07:39:14 +02:00
|
|
|
|
.All()
|
|
|
|
|
.With(e => e.QualityProfileId = fakeQuality.QualityProfileId)
|
2011-10-21 01:36:47 +02:00
|
|
|
|
.Build();
|
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.InsertMany(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
2011-10-21 01:36:47 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
var series = Mocker.Resolve<SeriesProvider>().SearchForSeries("NotATitle");
|
2011-10-21 01:36:47 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
series.Should().HaveCount(0);
|
|
|
|
|
}
|
2011-12-08 09:44:22 +01:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void SearchForSeries_should_return_results_when_query_has_special_characters()
|
|
|
|
|
{
|
2011-12-09 01:55:00 +01:00
|
|
|
|
WithRealDb();
|
2011-12-08 09:44:22 +01:00
|
|
|
|
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2011-12-08 09:44:22 +01:00
|
|
|
|
var fakeSeries = Builder<Series>.CreateListOfSize(10)
|
|
|
|
|
.All()
|
|
|
|
|
.With(e => e.QualityProfileId = fakeQuality.QualityProfileId)
|
|
|
|
|
.TheLast(1)
|
|
|
|
|
.With(s => s.Title = "It's Always Sunny")
|
|
|
|
|
.Build();
|
|
|
|
|
|
2011-12-09 01:55:00 +01:00
|
|
|
|
Db.InsertMany(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
2011-12-08 09:44:22 +01:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-09 01:55:00 +01:00
|
|
|
|
var series = Mocker.Resolve<SeriesProvider>().SearchForSeries("it's");
|
2011-12-08 09:44:22 +01:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
series.Should().HaveCount(1);
|
|
|
|
|
}
|
2012-01-20 08:50:45 +01:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void UpdateFromMassEdit_should_only_update_certain_values()
|
|
|
|
|
{
|
|
|
|
|
WithRealDb();
|
|
|
|
|
var newQualityProfileId = 10;
|
|
|
|
|
var newMonitored = false;
|
|
|
|
|
var newSeasonFolder = false;
|
|
|
|
|
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2012-01-20 08:50:45 +01:00
|
|
|
|
var fakeSeries = Builder<Series>.CreateListOfSize(1)
|
|
|
|
|
.All()
|
|
|
|
|
.With(e => e.QualityProfileId = fakeQuality.QualityProfileId)
|
|
|
|
|
.With(e => e.Monitored = true)
|
|
|
|
|
.With(e => e.SeasonFolder = true)
|
|
|
|
|
.With(s => s.Title = "It's Always Sunny")
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
Db.InsertMany(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
|
|
|
|
|
|
|
|
|
fakeSeries[0].QualityProfileId = newQualityProfileId;
|
|
|
|
|
fakeSeries[0].Monitored = newMonitored;
|
|
|
|
|
fakeSeries[0].SeasonFolder = newSeasonFolder;
|
|
|
|
|
|
|
|
|
|
//Act
|
2012-02-23 23:31:50 +01:00
|
|
|
|
Mocker.Resolve<SeriesProvider>().UpdateFromSeriesEditor(fakeSeries);
|
2012-01-20 08:50:45 +01:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
var result = Db.Fetch<Series>();
|
|
|
|
|
result.Count.Should().Be(1);
|
|
|
|
|
result.First().QualityProfileId.Should().Be(newQualityProfileId);
|
|
|
|
|
result.First().Monitored.Should().Be(newMonitored);
|
|
|
|
|
result.First().SeasonFolder.Should().Be(newSeasonFolder);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void UpdateFromMassEdit_should_only_update_changed_values()
|
|
|
|
|
{
|
|
|
|
|
WithRealDb();
|
|
|
|
|
var newQualityProfileId = 10;
|
|
|
|
|
var newMonitored = false;
|
|
|
|
|
var newSeasonFolder = false;
|
|
|
|
|
var monitored = true;
|
|
|
|
|
var seasonFolder = true;
|
|
|
|
|
|
2012-10-14 02:54:46 +02:00
|
|
|
|
var fakeQuality = Builder<QualityProfile>.CreateNew().With(p => p.Cutoff = QualityTypes.DVD).With(p => p.Allowed = new List<QualityTypes> { QualityTypes.SDTV, QualityTypes.DVD }).Build();
|
2012-01-20 08:50:45 +01:00
|
|
|
|
var fakeSeries = Builder<Series>.CreateListOfSize(2)
|
|
|
|
|
.All()
|
|
|
|
|
.With(e => e.QualityProfileId = fakeQuality.QualityProfileId)
|
|
|
|
|
.With(e => e.Monitored = monitored)
|
|
|
|
|
.With(e => e.SeasonFolder = seasonFolder)
|
|
|
|
|
.With(s => s.Title = "It's Always Sunny")
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
Db.InsertMany(fakeSeries);
|
|
|
|
|
Db.Insert(fakeQuality);
|
|
|
|
|
|
|
|
|
|
fakeSeries[0].QualityProfileId = newQualityProfileId;
|
|
|
|
|
fakeSeries[0].Monitored = newMonitored;
|
|
|
|
|
fakeSeries[0].SeasonFolder = newSeasonFolder;
|
|
|
|
|
|
|
|
|
|
//Act
|
2012-02-23 23:31:50 +01:00
|
|
|
|
Mocker.Resolve<SeriesProvider>().UpdateFromSeriesEditor(fakeSeries);
|
2012-01-20 08:50:45 +01:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
var result = Db.Fetch<Series>();
|
|
|
|
|
result.Count.Should().Be(2);
|
|
|
|
|
result.First().QualityProfileId.Should().Be(newQualityProfileId);
|
|
|
|
|
result.First().Monitored.Should().Be(newMonitored);
|
|
|
|
|
result.First().SeasonFolder.Should().Be(newSeasonFolder);
|
|
|
|
|
result.Last().QualityProfileId.Should().Be(fakeQuality.QualityProfileId);
|
|
|
|
|
result.Last().Monitored.Should().Be(monitored);
|
|
|
|
|
result.Last().SeasonFolder.Should().Be(seasonFolder);
|
|
|
|
|
}
|
2012-02-28 06:50:56 +01:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void delete_series_should_delete_all_rows_related_to_the_series()
|
|
|
|
|
{
|
|
|
|
|
var fakeSeries = Builder<Series>.CreateListOfSize(3).Build();
|
|
|
|
|
var fakeEpisodes = Builder<Episode>.CreateListOfSize(30)
|
2012-02-29 09:25:41 +01:00
|
|
|
|
.TheFirst(10).With(c => c.SeriesId = fakeSeries[0].SeriesId)
|
|
|
|
|
.TheNext(10).With(c => c.SeriesId = fakeSeries[1].SeriesId)
|
2012-02-28 06:50:56 +01:00
|
|
|
|
.TheNext(10).With(c => c.SeriesId = fakeSeries[2].SeriesId)
|
|
|
|
|
.Build();
|
2012-02-29 09:25:41 +01:00
|
|
|
|
|
2012-02-28 06:50:56 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2011-05-22 18:53:21 +02:00
|
|
|
|
}
|
2011-04-23 00:24:05 +02:00
|
|
|
|
} |