2012-02-12 01:02:36 +01:00
|
|
|
// ReSharper disable InconsistentNaming
|
2011-06-18 01:01:09 +02:00
|
|
|
using System;
|
2011-06-20 05:21:54 +02:00
|
|
|
using System.Collections.Generic;
|
2011-09-29 02:20:29 +02:00
|
|
|
using System.Linq;
|
2011-06-18 01:01:09 +02:00
|
|
|
using FizzWare.NBuilder;
|
2011-06-20 05:21:54 +02:00
|
|
|
using FluentAssertions;
|
2011-06-18 01:01:09 +02:00
|
|
|
using NUnit.Framework;
|
|
|
|
using NzbDrone.Core.Providers;
|
|
|
|
using NzbDrone.Core.Repository;
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
|
2011-10-21 01:42:17 +02:00
|
|
|
namespace NzbDrone.Core.Test.ProviderTests
|
2011-06-18 01:01:09 +02:00
|
|
|
{
|
|
|
|
[TestFixture]
|
2012-02-12 01:02:36 +01:00
|
|
|
|
2011-11-13 08:27:16 +01:00
|
|
|
public class UpcomingEpisodesProviderTest : CoreTest
|
2011-06-18 01:01:09 +02:00
|
|
|
{
|
2011-09-29 02:20:29 +02:00
|
|
|
private IList<Episode> episodes;
|
2011-06-20 05:21:54 +02:00
|
|
|
private Series series;
|
2011-06-18 01:01:09 +02:00
|
|
|
|
|
|
|
[SetUp]
|
2011-10-24 07:54:09 +02:00
|
|
|
public void Setup()
|
2011-06-18 01:01:09 +02:00
|
|
|
{
|
2012-02-12 01:02:36 +01:00
|
|
|
WithRealDb();
|
|
|
|
|
2011-09-29 02:20:29 +02:00
|
|
|
episodes = Builder<Episode>.CreateListOfSize(6)
|
2011-10-18 23:46:06 +02:00
|
|
|
.All()
|
|
|
|
.With(e => e.SeriesId = 1)
|
|
|
|
.With(e => e.Ignored = false)
|
|
|
|
.TheFirst(1)
|
2011-10-23 07:39:14 +02:00
|
|
|
.With(e => e.AirDate = DateTime.Today.AddDays(-1))
|
|
|
|
.TheNext(1)
|
|
|
|
.With(e => e.AirDate = DateTime.Today)
|
|
|
|
.TheNext(1)
|
|
|
|
.With(e => e.AirDate = DateTime.Today.AddDays(1))
|
|
|
|
.TheNext(1)
|
|
|
|
.With(e => e.AirDate = DateTime.Today.AddDays(2))
|
|
|
|
.TheNext(1)
|
|
|
|
.With(e => e.AirDate = DateTime.Today.AddDays(7))
|
|
|
|
.TheNext(1)
|
|
|
|
.With(e => e.AirDate = DateTime.Today.AddDays(9))
|
2011-06-18 01:01:09 +02:00
|
|
|
.Build();
|
|
|
|
|
2012-02-12 01:02:36 +01:00
|
|
|
series = Builder<Series>.CreateNew()
|
|
|
|
.With(s => s.SeriesId = 1)
|
|
|
|
.And(c => c.Monitored = true)
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
|
|
Db.InsertMany(episodes);
|
|
|
|
Db.Insert(series);
|
2011-06-18 01:01:09 +02:00
|
|
|
}
|
|
|
|
|
2012-02-12 01:02:36 +01:00
|
|
|
private void WithIgnoredEpisodes()
|
2011-06-18 01:01:09 +02:00
|
|
|
{
|
2012-02-12 01:02:36 +01:00
|
|
|
episodes.ToList().ForEach(c => c.Ignored = true);
|
|
|
|
Db.UpdateMany(episodes);
|
|
|
|
}
|
2011-06-18 01:01:09 +02:00
|
|
|
|
2012-02-12 01:02:36 +01:00
|
|
|
private void WithIgnoredSeries()
|
|
|
|
{
|
|
|
|
series.Monitored = false;
|
|
|
|
Db.Update(series);
|
|
|
|
}
|
2011-06-18 01:01:09 +02:00
|
|
|
|
2012-02-12 01:02:36 +01:00
|
|
|
[Test]
|
2012-05-18 03:23:32 +02:00
|
|
|
public void Get_UpcomingEpisodes()
|
2012-02-12 01:02:36 +01:00
|
|
|
{
|
2012-05-18 03:23:32 +02:00
|
|
|
var result = Mocker.Resolve<UpcomingEpisodesProvider>().UpcomingEpisodes();
|
2011-06-18 01:01:09 +02:00
|
|
|
|
|
|
|
//Assert
|
2012-05-18 03:23:32 +02:00
|
|
|
result.Should().HaveCount(5);
|
2012-02-12 01:02:36 +01:00
|
|
|
result.Should().OnlyContain(c => c.Series != null && c.SeriesId == series.SeriesId);
|
2011-06-18 01:01:09 +02:00
|
|
|
}
|
2011-10-04 01:53:21 +02:00
|
|
|
|
|
|
|
[Test]
|
2012-05-18 03:23:32 +02:00
|
|
|
public void Get_UpcomingEpisodes_should_skip_ingored()
|
2011-10-04 01:53:21 +02:00
|
|
|
{
|
2012-02-12 01:02:36 +01:00
|
|
|
WithIgnoredEpisodes();
|
2012-05-18 03:23:32 +02:00
|
|
|
Mocker.Resolve<UpcomingEpisodesProvider>().UpcomingEpisodes().Should().BeEmpty();
|
2012-02-12 01:02:36 +01:00
|
|
|
}
|
2011-10-04 01:53:21 +02:00
|
|
|
|
2012-02-12 01:02:36 +01:00
|
|
|
[Test]
|
2012-05-18 03:23:32 +02:00
|
|
|
public void Get_UpcomingEpisodes_should_skip_unmonitored_series()
|
2012-02-12 01:02:36 +01:00
|
|
|
{
|
|
|
|
WithIgnoredSeries();
|
2012-05-18 03:23:32 +02:00
|
|
|
Mocker.Resolve<UpcomingEpisodesProvider>().UpcomingEpisodes().Should().BeEmpty();
|
2011-10-04 01:53:21 +02:00
|
|
|
}
|
2011-06-18 01:01:09 +02:00
|
|
|
}
|
|
|
|
}
|