2011-05-22 18:53:21 +02:00
|
|
|
|
// ReSharper disable RedundantUsingDirective
|
|
|
|
|
using System;
|
2011-05-20 06:18:51 +02:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq.Expressions;
|
|
|
|
|
using AutoMoq;
|
|
|
|
|
using FizzWare.NBuilder;
|
2011-06-02 23:06:46 +02:00
|
|
|
|
using FluentAssertions;
|
2011-05-20 06:18:51 +02:00
|
|
|
|
using Moq;
|
2011-06-02 23:06:46 +02:00
|
|
|
|
using NUnit.Framework;
|
2011-05-20 06:18:51 +02:00
|
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
|
using NzbDrone.Core.Providers;
|
|
|
|
|
using NzbDrone.Core.Repository;
|
2011-05-19 05:55:35 +02:00
|
|
|
|
using NzbDrone.Core.Repository.Quality;
|
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
2011-05-20 06:18:51 +02:00
|
|
|
|
using SubSonic.Repository;
|
|
|
|
|
using TvdbLib.Data;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Test
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2011-05-19 05:55:35 +02:00
|
|
|
|
// ReSharper disable InconsistentNaming
|
2011-05-20 06:18:51 +02:00
|
|
|
|
public class EpisodeProviderTest : TestBase
|
|
|
|
|
{
|
|
|
|
|
[Test]
|
2011-05-29 05:01:35 +02:00
|
|
|
|
public void RefreshEpisodeInfo_emptyRepo()
|
2011-05-20 06:18:51 +02:00
|
|
|
|
{
|
|
|
|
|
//Arrange
|
|
|
|
|
const int seriesId = 71663;
|
|
|
|
|
const int episodeCount = 10;
|
|
|
|
|
|
|
|
|
|
var fakeEpisodes = Builder<TvdbSeries>.CreateNew().With(
|
|
|
|
|
c => c.Episodes =
|
|
|
|
|
new List<TvdbEpisode>(Builder<TvdbEpisode>.CreateListOfSize(episodeCount).
|
|
|
|
|
WhereAll()
|
|
|
|
|
.Have(l => l.Language = new TvdbLanguage(0, "eng", "a"))
|
|
|
|
|
.Build())
|
|
|
|
|
).With(c => c.Id = seriesId).Build();
|
|
|
|
|
|
2011-05-29 05:01:35 +02:00
|
|
|
|
var fakeSeries = Builder<Series>.CreateNew().With(c => c.SeriesId = seriesId).Build();
|
|
|
|
|
|
|
|
|
|
|
2011-05-20 06:18:51 +02:00
|
|
|
|
var mocker = new AutoMoqer();
|
|
|
|
|
|
|
|
|
|
mocker.SetConstant(MockLib.GetEmptyRepository());
|
|
|
|
|
|
|
|
|
|
mocker.GetMock<TvDbProvider>()
|
|
|
|
|
.Setup(c => c.GetSeries(seriesId, true))
|
2011-05-29 05:01:35 +02:00
|
|
|
|
.Returns(fakeEpisodes);
|
2011-05-20 06:18:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//Act
|
2011-05-29 05:01:35 +02:00
|
|
|
|
mocker.Resolve<EpisodeProvider>().RefreshEpisodeInfo(fakeSeries);
|
|
|
|
|
|
2011-05-20 06:18:51 +02:00
|
|
|
|
//Assert
|
2011-06-02 23:06:46 +02:00
|
|
|
|
var actualCount = mocker.Resolve<EpisodeProvider>().GetEpisodeBySeries(seriesId).Count;
|
2011-05-20 06:18:51 +02:00
|
|
|
|
mocker.GetMock<TvDbProvider>().VerifyAll();
|
2011-06-02 23:06:46 +02:00
|
|
|
|
actualCount.Should().Be(episodeCount);
|
2011-05-29 05:01:35 +02:00
|
|
|
|
mocker.VerifyAllMocks();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void new_episodes_only_calls_AddMany()
|
|
|
|
|
{
|
|
|
|
|
const int seriesId = 71663;
|
|
|
|
|
var fakeEpisodes = Builder<TvdbSeries>.CreateNew()
|
|
|
|
|
.With(c => c.Episodes = new List<TvdbEpisode>(Builder<TvdbEpisode>.CreateListOfSize(5).Build())
|
2011-05-29 05:37:19 +02:00
|
|
|
|
).With(c => c.Id = seriesId).Build();
|
2011-05-29 05:01:35 +02:00
|
|
|
|
|
|
|
|
|
var fakeSeries = Builder<Series>.CreateNew().With(c => c.SeriesId = seriesId).Build();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var mocker = new AutoMoqer();
|
|
|
|
|
|
|
|
|
|
mocker.GetMock<TvDbProvider>(MockBehavior.Strict)
|
|
|
|
|
.Setup(c => c.GetSeries(seriesId, true))
|
|
|
|
|
.Returns(fakeEpisodes);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//Act
|
|
|
|
|
mocker.Resolve<EpisodeProvider>().RefreshEpisodeInfo(fakeSeries);
|
|
|
|
|
|
|
|
|
|
//Assert
|
2011-05-29 05:37:19 +02:00
|
|
|
|
mocker.GetMock<IRepository>().Verify(
|
|
|
|
|
c => c.AddMany(It.Is<IEnumerable<Episode>>(e => e.Count() == fakeEpisodes.Episodes.Count)), Times.Once());
|
|
|
|
|
mocker.GetMock<IRepository>().Verify(c => c.UpdateMany(It.Is<IEnumerable<Episode>>(e => e.Count() == 0)),
|
|
|
|
|
Times.AtMostOnce());
|
2011-05-29 05:01:35 +02:00
|
|
|
|
mocker.VerifyAllMocks();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void existing_episodes_only_calls_UpdateMany()
|
|
|
|
|
{
|
|
|
|
|
const int seriesId = 71663;
|
|
|
|
|
var fakeEpisodes = Builder<TvdbSeries>.CreateNew()
|
|
|
|
|
.With(c => c.Episodes = new List<TvdbEpisode>(Builder<TvdbEpisode>.CreateListOfSize(5).Build())
|
2011-05-29 05:37:19 +02:00
|
|
|
|
).With(c => c.Id = seriesId).Build();
|
2011-05-29 05:01:35 +02:00
|
|
|
|
|
|
|
|
|
var fakeSeries = Builder<Series>.CreateNew().With(c => c.SeriesId = seriesId).Build();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var mocker = new AutoMoqer();
|
|
|
|
|
|
|
|
|
|
mocker.GetMock<TvDbProvider>(MockBehavior.Strict)
|
|
|
|
|
.Setup(c => c.GetSeries(seriesId, true))
|
|
|
|
|
.Returns(fakeEpisodes);
|
|
|
|
|
|
|
|
|
|
mocker.GetMock<IRepository>()
|
|
|
|
|
.Setup(c => c.Single(It.IsAny<Expression<Func<Episode, bool>>>()))
|
|
|
|
|
.Returns(Builder<Episode>.CreateNew().Build);
|
|
|
|
|
|
|
|
|
|
//Act
|
|
|
|
|
mocker.Resolve<EpisodeProvider>().RefreshEpisodeInfo(fakeSeries);
|
|
|
|
|
|
|
|
|
|
//Assert
|
2011-05-29 05:37:19 +02:00
|
|
|
|
mocker.GetMock<IRepository>().Verify(c => c.AddMany(It.Is<IEnumerable<Episode>>(e => e.Count() == 0)),
|
|
|
|
|
Times.AtMostOnce());
|
|
|
|
|
mocker.GetMock<IRepository>().Verify(
|
|
|
|
|
c => c.UpdateMany(It.Is<IEnumerable<Episode>>(e => e.Count() == fakeEpisodes.Episodes.Count)),
|
|
|
|
|
Times.Once());
|
2011-05-29 05:01:35 +02:00
|
|
|
|
mocker.VerifyAllMocks();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-05-29 05:37:19 +02:00
|
|
|
|
[Test]
|
|
|
|
|
public void should_try_to_get_existing_episode_using_tvdbid_first()
|
|
|
|
|
{
|
|
|
|
|
const int seriesId = 71663;
|
|
|
|
|
var fakeEpisodes = Builder<TvdbSeries>.CreateNew()
|
|
|
|
|
.With(c => c.Id = seriesId)
|
|
|
|
|
.With(c => c.Episodes = new List<TvdbEpisode>(
|
|
|
|
|
Builder<TvdbEpisode>.CreateListOfSize(1)
|
|
|
|
|
.WhereAll().Have(g => g.Id = 99)
|
|
|
|
|
.Build())
|
|
|
|
|
)
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
var fakeSeries = Builder<Series>.CreateNew().With(c => c.SeriesId = seriesId).Build();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var mocker = new AutoMoqer();
|
|
|
|
|
|
|
|
|
|
var repo = MockLib.GetEmptyRepository();
|
|
|
|
|
repo.Add<Episode>(
|
|
|
|
|
Builder<Episode>.CreateNew().With(c => c.TvDbEpisodeId = fakeEpisodes.Episodes[0].Id).Build());
|
|
|
|
|
mocker.SetConstant(repo);
|
|
|
|
|
|
|
|
|
|
mocker.GetMock<TvDbProvider>(MockBehavior.Strict)
|
|
|
|
|
.Setup(c => c.GetSeries(seriesId, true))
|
|
|
|
|
.Returns(fakeEpisodes);
|
|
|
|
|
|
|
|
|
|
//Act
|
|
|
|
|
mocker.Resolve<EpisodeProvider>().RefreshEpisodeInfo(fakeSeries);
|
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
mocker.VerifyAllMocks();
|
2011-06-02 23:06:46 +02:00
|
|
|
|
repo.All<Episode>().Should().HaveCount(1);
|
2011-05-29 05:37:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_try_to_get_existing_episode_using_tvdbid_first_then_season_episode()
|
|
|
|
|
{
|
|
|
|
|
const int seriesId = 71663;
|
|
|
|
|
var fakeEpisodes = Builder<TvdbSeries>.CreateNew()
|
|
|
|
|
.With(c => c.Id = seriesId)
|
|
|
|
|
.With(c => c.Episodes = new List<TvdbEpisode>{
|
|
|
|
|
Builder<TvdbEpisode>.CreateNew()
|
|
|
|
|
.With(g => g.Id = 99)
|
|
|
|
|
.With(g => g.SeasonNumber = 4)
|
|
|
|
|
.With(g => g.EpisodeNumber = 15)
|
|
|
|
|
.With(g=>g.SeriesId = seriesId)
|
|
|
|
|
.Build()
|
|
|
|
|
})
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
var localEpisode = Builder<Episode>.CreateNew()
|
|
|
|
|
.With(c => c.SeriesId = seriesId)
|
|
|
|
|
.With(c => c.SeasonNumber = 4)
|
|
|
|
|
.With(c => c.EpisodeNumber = 15)
|
|
|
|
|
.Build();
|
2011-06-02 23:06:46 +02:00
|
|
|
|
|
2011-05-29 05:37:19 +02:00
|
|
|
|
|
|
|
|
|
var fakeSeries = Builder<Series>.CreateNew().With(c => c.SeriesId = seriesId).Build();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var mocker = new AutoMoqer();
|
|
|
|
|
|
|
|
|
|
var repo = MockLib.GetEmptyRepository();
|
|
|
|
|
repo.Add<Episode>(localEpisode);
|
|
|
|
|
mocker.SetConstant(repo);
|
|
|
|
|
|
|
|
|
|
mocker.GetMock<TvDbProvider>(MockBehavior.Strict)
|
|
|
|
|
.Setup(c => c.GetSeries(seriesId, true))
|
|
|
|
|
.Returns(fakeEpisodes);
|
|
|
|
|
|
|
|
|
|
//Act
|
|
|
|
|
mocker.Resolve<EpisodeProvider>().RefreshEpisodeInfo(fakeSeries);
|
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
mocker.VerifyAllMocks();
|
2011-06-02 23:06:46 +02:00
|
|
|
|
repo.All<Episode>().Should().HaveCount(1);
|
2011-05-29 05:37:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-05-29 05:01:35 +02:00
|
|
|
|
[Test]
|
|
|
|
|
public void existing_episodes_keep_their_episodeId_file_id()
|
|
|
|
|
{
|
|
|
|
|
const int seriesId = 71663;
|
|
|
|
|
var faketvDbResponse = Builder<TvdbSeries>.CreateNew()
|
|
|
|
|
.With(c => c.Episodes = new List<TvdbEpisode>(Builder<TvdbEpisode>.CreateListOfSize(5).Build())
|
2011-05-29 05:37:19 +02:00
|
|
|
|
).With(c => c.Id = seriesId).Build();
|
2011-05-29 05:01:35 +02:00
|
|
|
|
|
|
|
|
|
var fakeSeries = Builder<Series>.CreateNew().With(c => c.SeriesId = seriesId).Build();
|
2011-05-29 05:37:19 +02:00
|
|
|
|
var fakeEpisode =
|
|
|
|
|
Builder<Episode>.CreateNew().With(c => c.EpisodeFileId = 69).And(c => c.EpisodeId = 99).Build();
|
2011-05-29 05:01:35 +02:00
|
|
|
|
|
|
|
|
|
var mocker = new AutoMoqer();
|
|
|
|
|
|
|
|
|
|
mocker.GetMock<TvDbProvider>(MockBehavior.Strict)
|
|
|
|
|
.Setup(c => c.GetSeries(seriesId, true))
|
|
|
|
|
.Returns(faketvDbResponse);
|
|
|
|
|
|
|
|
|
|
IEnumerable<Episode> updatedEpisodes = null;
|
|
|
|
|
|
|
|
|
|
mocker.GetMock<IRepository>()
|
|
|
|
|
.Setup(c => c.Single(It.IsAny<Expression<Func<Episode, bool>>>()))
|
|
|
|
|
.Returns(fakeEpisode);
|
|
|
|
|
|
|
|
|
|
mocker.GetMock<IRepository>()
|
|
|
|
|
.Setup(c => c.UpdateMany(It.IsAny<IEnumerable<Episode>>()))
|
|
|
|
|
.Returns(faketvDbResponse.Episodes.Count)
|
|
|
|
|
.Callback<IEnumerable<Episode>>(r => updatedEpisodes = r);
|
|
|
|
|
|
|
|
|
|
//Act
|
|
|
|
|
mocker.Resolve<EpisodeProvider>().RefreshEpisodeInfo(fakeSeries);
|
|
|
|
|
|
|
|
|
|
//Assert
|
2011-05-29 05:37:19 +02:00
|
|
|
|
mocker.GetMock<IRepository>().Verify(c => c.AddMany(It.Is<IEnumerable<Episode>>(e => e.Count() == 0)),
|
|
|
|
|
Times.AtMostOnce());
|
|
|
|
|
mocker.GetMock<IRepository>().Verify(
|
|
|
|
|
c => c.UpdateMany(It.Is<IEnumerable<Episode>>(e => e.Count() == faketvDbResponse.Episodes.Count)),
|
|
|
|
|
Times.Once());
|
|
|
|
|
mocker.GetMock<IRepository>().Verify(
|
|
|
|
|
c =>
|
|
|
|
|
c.UpdateMany(
|
|
|
|
|
It.Is<IEnumerable<Episode>>(
|
|
|
|
|
e => e.Where(g => g.EpisodeFileId == 69).Count() == faketvDbResponse.Episodes.Count)),
|
|
|
|
|
Times.Once());
|
2011-05-29 05:01:35 +02:00
|
|
|
|
|
2011-06-02 23:06:46 +02:00
|
|
|
|
|
|
|
|
|
updatedEpisodes.Should().HaveSameCount(faketvDbResponse.Episodes);
|
|
|
|
|
updatedEpisodes.Should().OnlyContain(c => c.EpisodeId == 99);
|
|
|
|
|
updatedEpisodes.Should().OnlyContain(c => c.EpisodeFileId == 69);
|
2011-05-20 06:18:51 +02:00
|
|
|
|
}
|
2011-05-29 05:01:35 +02:00
|
|
|
|
|
|
|
|
|
|
2011-05-20 06:18:51 +02:00
|
|
|
|
[Test]
|
|
|
|
|
[Explicit]
|
|
|
|
|
public void Add_daily_show_episodes()
|
|
|
|
|
{
|
|
|
|
|
var mocker = new AutoMoqer();
|
|
|
|
|
mocker.SetConstant(MockLib.GetEmptyRepository());
|
|
|
|
|
mocker.Resolve<TvDbProvider>();
|
|
|
|
|
const int tvDbSeriesId = 71256;
|
|
|
|
|
//act
|
|
|
|
|
var seriesProvider = mocker.Resolve<SeriesProvider>();
|
|
|
|
|
|
|
|
|
|
seriesProvider.AddSeries("c:\\test\\", tvDbSeriesId, 0);
|
2011-05-29 05:01:35 +02:00
|
|
|
|
|
2011-05-20 06:18:51 +02:00
|
|
|
|
var episodeProvider = mocker.Resolve<EpisodeProvider>();
|
2011-05-29 05:01:35 +02:00
|
|
|
|
episodeProvider.RefreshEpisodeInfo(seriesProvider.GetSeries(tvDbSeriesId));
|
2011-05-20 06:18:51 +02:00
|
|
|
|
|
|
|
|
|
//assert
|
|
|
|
|
var episodes = episodeProvider.GetEpisodeBySeries(tvDbSeriesId);
|
2011-06-02 23:06:46 +02:00
|
|
|
|
episodes.Should().NotBeEmpty();
|
2011-05-20 06:18:51 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2011-05-29 05:37:19 +02:00
|
|
|
|
}
|