2012-02-07 05:08:07 +00:00
|
|
|
|
// ReSharper disable RedundantUsingDirective
|
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using FizzWare.NBuilder;
|
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using NUnit.Framework;
|
2013-02-19 06:01:03 +00:00
|
|
|
|
using NzbDrone.Core.Tv;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
|
using NzbDrone.Core.Providers;
|
2013-02-19 02:19:38 +00:00
|
|
|
|
using NzbDrone.Core.DecisionEngine;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
using NzbDrone.Core.Repository;
|
|
|
|
|
using NzbDrone.Core.Repository.Quality;
|
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
|
|
2013-02-19 02:19:38 +00:00
|
|
|
|
namespace NzbDrone.Core.Test.DecisionEngineTests
|
2012-02-07 05:08:07 +00:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
// ReSharper disable InconsistentNaming
|
2013-02-17 05:44:06 +00:00
|
|
|
|
public class UpgradeHistorySpecificationFixture : CoreTest
|
2012-02-07 05:08:07 +00:00
|
|
|
|
{
|
|
|
|
|
private UpgradeHistorySpecification _upgradeHistory;
|
|
|
|
|
|
|
|
|
|
private EpisodeParseResult parseResultMulti;
|
|
|
|
|
private EpisodeParseResult parseResultSingle;
|
2012-10-13 21:15:21 +00:00
|
|
|
|
private QualityModel firstQuality;
|
|
|
|
|
private QualityModel secondQuality;
|
2012-12-13 16:43:25 +00:00
|
|
|
|
private Series fakeSeries;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
|
|
|
|
|
[SetUp]
|
|
|
|
|
public void Setup()
|
|
|
|
|
{
|
|
|
|
|
Mocker.Resolve<QualityUpgradeSpecification>();
|
|
|
|
|
_upgradeHistory = Mocker.Resolve<UpgradeHistorySpecification>();
|
|
|
|
|
|
2012-10-17 07:39:06 +00:00
|
|
|
|
var singleEpisodeList = new List<Episode> { new Episode { SeasonNumber = 12, EpisodeNumber = 3 } };
|
|
|
|
|
var doubleEpisodeList = new List<Episode> {
|
|
|
|
|
new Episode { SeasonNumber = 12, EpisodeNumber = 3 },
|
|
|
|
|
new Episode { SeasonNumber = 12, EpisodeNumber = 4 },
|
|
|
|
|
new Episode { SeasonNumber = 12, EpisodeNumber = 5 }
|
|
|
|
|
};
|
|
|
|
|
|
2012-12-13 16:43:25 +00:00
|
|
|
|
fakeSeries = Builder<Series>.CreateNew()
|
2012-02-07 05:08:07 +00:00
|
|
|
|
.With(c => c.QualityProfile = new QualityProfile { Cutoff = QualityTypes.Bluray1080p })
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
parseResultMulti = new EpisodeParseResult
|
|
|
|
|
{
|
|
|
|
|
Series = fakeSeries,
|
2012-10-13 21:15:21 +00:00
|
|
|
|
Quality = new QualityModel(QualityTypes.DVD, true),
|
2012-02-07 05:08:07 +00:00
|
|
|
|
EpisodeNumbers = new List<int> { 3, 4 },
|
|
|
|
|
SeasonNumber = 12,
|
2012-10-17 07:39:06 +00:00
|
|
|
|
Episodes = doubleEpisodeList
|
2012-02-07 05:08:07 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
parseResultSingle = new EpisodeParseResult
|
|
|
|
|
{
|
|
|
|
|
Series = fakeSeries,
|
2012-10-13 21:15:21 +00:00
|
|
|
|
Quality = new QualityModel(QualityTypes.DVD, true),
|
2012-02-07 05:08:07 +00:00
|
|
|
|
EpisodeNumbers = new List<int> { 3 },
|
|
|
|
|
SeasonNumber = 12,
|
2012-10-17 07:39:06 +00:00
|
|
|
|
Episodes = singleEpisodeList
|
2012-02-07 05:08:07 +00:00
|
|
|
|
};
|
|
|
|
|
|
2012-10-13 21:15:21 +00:00
|
|
|
|
firstQuality = new QualityModel(QualityTypes.Bluray1080p, true);
|
|
|
|
|
secondQuality = new QualityModel(QualityTypes.Bluray1080p, true);
|
2012-02-07 05:08:07 +00:00
|
|
|
|
|
|
|
|
|
Mocker.GetMock<HistoryProvider>().Setup(c => c.GetBestQualityInHistory(fakeSeries.SeriesId, 12, 3)).Returns(firstQuality);
|
|
|
|
|
Mocker.GetMock<HistoryProvider>().Setup(c => c.GetBestQualityInHistory(fakeSeries.SeriesId, 12, 4)).Returns(secondQuality);
|
2012-10-13 21:15:21 +00:00
|
|
|
|
Mocker.GetMock<HistoryProvider>().Setup(c => c.GetBestQualityInHistory(fakeSeries.SeriesId, 12, 5)).Returns<QualityModel>(null);
|
2012-02-07 05:08:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void WithFirstReportUpgradable()
|
|
|
|
|
{
|
2012-10-14 00:36:16 +00:00
|
|
|
|
firstQuality.Quality = QualityTypes.SDTV;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void WithSecondReportUpgradable()
|
|
|
|
|
{
|
2012-10-14 00:36:16 +00:00
|
|
|
|
secondQuality.Quality = QualityTypes.SDTV;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_upgradable_if_only_episode_is_upgradable()
|
|
|
|
|
{
|
|
|
|
|
WithFirstReportUpgradable();
|
|
|
|
|
_upgradeHistory.IsSatisfiedBy(parseResultSingle).Should().BeTrue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_upgradable_if_both_episodes_are_upgradable()
|
|
|
|
|
{
|
|
|
|
|
WithFirstReportUpgradable();
|
|
|
|
|
WithSecondReportUpgradable();
|
|
|
|
|
_upgradeHistory.IsSatisfiedBy(parseResultMulti).Should().BeTrue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_not_be_upgradable_if_both_episodes_are_not_upgradable()
|
|
|
|
|
{
|
|
|
|
|
_upgradeHistory.IsSatisfiedBy(parseResultMulti).Should().BeFalse();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_not_upgradable_if_only_first_episodes_is_upgradable()
|
|
|
|
|
{
|
|
|
|
|
WithFirstReportUpgradable();
|
|
|
|
|
_upgradeHistory.IsSatisfiedBy(parseResultMulti).Should().BeFalse();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_not_upgradable_if_only_second_episodes_is_upgradable()
|
|
|
|
|
{
|
|
|
|
|
WithSecondReportUpgradable();
|
|
|
|
|
_upgradeHistory.IsSatisfiedBy(parseResultMulti).Should().BeFalse();
|
|
|
|
|
}
|
2012-12-13 16:43:25 +00:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_not_be_upgradable_if_episode_is_of_same_quality_as_existing()
|
|
|
|
|
{
|
|
|
|
|
fakeSeries.QualityProfile = new QualityProfile { Cutoff = QualityTypes.WEBDL1080p };
|
|
|
|
|
parseResultSingle.Quality = new QualityModel(QualityTypes.WEBDL1080p, false);
|
|
|
|
|
firstQuality = new QualityModel(QualityTypes.WEBDL1080p, false);
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<HistoryProvider>().Setup(c => c.GetBestQualityInHistory(fakeSeries.SeriesId, 12, 3)).Returns(firstQuality);
|
|
|
|
|
|
|
|
|
|
_upgradeHistory.IsSatisfiedBy(parseResultSingle).Should().BeFalse();
|
|
|
|
|
}
|
2012-02-07 05:08:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|