2014-06-08 08:22:55 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using FizzWare.NBuilder;
|
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using Marr.Data;
|
|
|
|
|
using Moq;
|
|
|
|
|
using NUnit.Framework;
|
2014-09-01 02:28:42 +00:00
|
|
|
|
using NzbDrone.Core.DecisionEngine;
|
2014-06-08 08:22:55 +00:00
|
|
|
|
using NzbDrone.Core.DecisionEngine.Specifications.RssSync;
|
|
|
|
|
using NzbDrone.Core.Download.Pending;
|
|
|
|
|
using NzbDrone.Core.IndexerSearch.Definitions;
|
|
|
|
|
using NzbDrone.Core.MediaFiles;
|
|
|
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
|
using NzbDrone.Core.Profiles;
|
|
|
|
|
using NzbDrone.Core.Qualities;
|
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
|
using NzbDrone.Core.Tv;
|
|
|
|
|
using NzbDrone.Test.Common;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Test.DecisionEngineTests.RssSync
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
public class DelaySpecificationFixture : CoreTest<DelaySpecification>
|
|
|
|
|
{
|
|
|
|
|
private Profile _profile;
|
|
|
|
|
private RemoteEpisode _remoteEpisode;
|
|
|
|
|
|
|
|
|
|
[SetUp]
|
|
|
|
|
public void Setup()
|
|
|
|
|
{
|
|
|
|
|
_profile = Builder<Profile>.CreateNew()
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
var series = Builder<Series>.CreateNew()
|
|
|
|
|
.With(s => s.Profile = _profile)
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
_remoteEpisode = Builder<RemoteEpisode>.CreateNew()
|
|
|
|
|
.With(r => r.Series = series)
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
_profile.Items = new List<ProfileQualityItem>();
|
|
|
|
|
_profile.Items.Add(new ProfileQualityItem { Allowed = true, Quality = Quality.HDTV720p });
|
|
|
|
|
_profile.Items.Add(new ProfileQualityItem { Allowed = true, Quality = Quality.WEBDL720p });
|
|
|
|
|
_profile.Items.Add(new ProfileQualityItem { Allowed = true, Quality = Quality.Bluray720p });
|
|
|
|
|
|
|
|
|
|
_profile.Cutoff = Quality.WEBDL720p;
|
|
|
|
|
_profile.GrabDelayMode = GrabDelayMode.Always;
|
|
|
|
|
|
|
|
|
|
_remoteEpisode.ParsedEpisodeInfo = new ParsedEpisodeInfo();
|
|
|
|
|
_remoteEpisode.Release = new ReleaseInfo();
|
|
|
|
|
|
|
|
|
|
_remoteEpisode.Episodes = Builder<Episode>.CreateListOfSize(1).Build().ToList();
|
2014-09-01 02:28:42 +00:00
|
|
|
|
_remoteEpisode.Episodes.First().EpisodeFileId = 0;
|
2014-06-08 08:22:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void GivenExistingFile(QualityModel quality)
|
|
|
|
|
{
|
2014-09-01 02:28:42 +00:00
|
|
|
|
_remoteEpisode.Episodes.First().EpisodeFileId = 1;
|
|
|
|
|
|
|
|
|
|
_remoteEpisode.Episodes.First().EpisodeFile = new LazyLoaded<EpisodeFile>(new EpisodeFile
|
2014-06-08 08:22:55 +00:00
|
|
|
|
{
|
|
|
|
|
Quality = quality
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-01 02:28:42 +00:00
|
|
|
|
private void GivenUpgradeForExistingFile()
|
|
|
|
|
{
|
|
|
|
|
Mocker.GetMock<IQualityUpgradableSpecification>()
|
|
|
|
|
.Setup(s => s.IsUpgradable(It.IsAny<Profile>(), It.IsAny<QualityModel>(), It.IsAny<QualityModel>()))
|
|
|
|
|
.Returns(true);
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-08 08:22:55 +00:00
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_true_when_search()
|
|
|
|
|
{
|
|
|
|
|
Subject.IsSatisfiedBy(new RemoteEpisode(), new SingleEpisodeSearchCriteria()).Should().BeTrue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_true_when_profile_does_not_have_a_delay()
|
|
|
|
|
{
|
|
|
|
|
_profile.GrabDelay = 0;
|
|
|
|
|
|
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, null).Should().BeTrue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_true_when_quality_is_last_allowed_in_profile()
|
|
|
|
|
{
|
|
|
|
|
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.Bluray720p);
|
|
|
|
|
|
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, null).Should().BeTrue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_true_when_release_is_older_than_delay()
|
|
|
|
|
{
|
|
|
|
|
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.HDTV720p);
|
|
|
|
|
_remoteEpisode.Release.PublishDate = DateTime.UtcNow.AddHours(-10);
|
|
|
|
|
|
|
|
|
|
_profile.GrabDelay = 1;
|
|
|
|
|
|
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, null).Should().BeTrue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_false_when_release_is_younger_than_delay()
|
|
|
|
|
{
|
|
|
|
|
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.SDTV);
|
|
|
|
|
_remoteEpisode.Release.PublishDate = DateTime.UtcNow;
|
|
|
|
|
|
|
|
|
|
_profile.GrabDelay = 12;
|
|
|
|
|
|
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, null).Should().BeFalse();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
2014-09-01 02:28:42 +00:00
|
|
|
|
public void should_be_true_when_release_is_a_proper_for_existing_episode()
|
2014-06-08 08:22:55 +00:00
|
|
|
|
{
|
2014-09-01 02:28:42 +00:00
|
|
|
|
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.HDTV720p, new Revision(version: 2));
|
2014-06-08 08:22:55 +00:00
|
|
|
|
_remoteEpisode.Release.PublishDate = DateTime.UtcNow;
|
|
|
|
|
|
|
|
|
|
GivenExistingFile(new QualityModel(Quality.HDTV720p));
|
2014-09-01 02:28:42 +00:00
|
|
|
|
GivenUpgradeForExistingFile();
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<IQualityUpgradableSpecification>()
|
|
|
|
|
.Setup(s => s.IsRevisionUpgrade(It.IsAny<QualityModel>(), It.IsAny<QualityModel>()))
|
|
|
|
|
.Returns(true);
|
2014-06-08 08:22:55 +00:00
|
|
|
|
|
|
|
|
|
_profile.GrabDelay = 12;
|
|
|
|
|
|
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, null).Should().BeTrue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
2014-09-01 02:28:42 +00:00
|
|
|
|
public void should_be_true_when_release_is_a_real_for_existing_episode()
|
2014-06-08 08:22:55 +00:00
|
|
|
|
{
|
2014-09-01 02:28:42 +00:00
|
|
|
|
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.HDTV720p, new Revision(real: 1));
|
|
|
|
|
_remoteEpisode.Release.PublishDate = DateTime.UtcNow;
|
|
|
|
|
|
|
|
|
|
GivenExistingFile(new QualityModel(Quality.HDTV720p));
|
|
|
|
|
GivenUpgradeForExistingFile();
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<IQualityUpgradableSpecification>()
|
|
|
|
|
.Setup(s => s.IsRevisionUpgrade(It.IsAny<QualityModel>(), It.IsAny<QualityModel>()))
|
|
|
|
|
.Returns(true);
|
|
|
|
|
|
|
|
|
|
_profile.GrabDelay = 12;
|
|
|
|
|
|
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, null).Should().BeTrue();
|
2014-06-08 08:22:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_true_when_release_meets_cutoff_and_mode_is_cutoff()
|
|
|
|
|
{
|
|
|
|
|
_profile.GrabDelayMode = GrabDelayMode.Cutoff;
|
|
|
|
|
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.WEBDL720p);
|
|
|
|
|
_remoteEpisode.Release.PublishDate = DateTime.UtcNow;
|
|
|
|
|
|
|
|
|
|
_profile.GrabDelay = 12;
|
|
|
|
|
|
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, null).Should().BeTrue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_true_when_release_exceeds_cutoff_and_mode_is_cutoff()
|
|
|
|
|
{
|
|
|
|
|
_profile.GrabDelayMode = GrabDelayMode.Cutoff;
|
|
|
|
|
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.Bluray720p);
|
|
|
|
|
_remoteEpisode.Release.PublishDate = DateTime.UtcNow;
|
|
|
|
|
|
|
|
|
|
_profile.GrabDelay = 12;
|
|
|
|
|
|
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, null).Should().BeTrue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_false_when_release_is_below_cutoff_and_mode_is_cutoff()
|
|
|
|
|
{
|
|
|
|
|
_profile.GrabDelayMode = GrabDelayMode.Cutoff;
|
|
|
|
|
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.HDTV720p);
|
|
|
|
|
_remoteEpisode.Release.PublishDate = DateTime.UtcNow;
|
|
|
|
|
|
|
|
|
|
_profile.GrabDelay = 12;
|
|
|
|
|
|
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, null).Should().BeFalse();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_false_when_release_is_proper_for_existing_episode_of_different_quality()
|
|
|
|
|
{
|
2014-09-01 02:28:42 +00:00
|
|
|
|
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.HDTV720p, new Revision(version: 2));
|
2014-06-08 08:22:55 +00:00
|
|
|
|
_remoteEpisode.Release.PublishDate = DateTime.UtcNow;
|
|
|
|
|
|
|
|
|
|
GivenExistingFile(new QualityModel(Quality.SDTV));
|
|
|
|
|
|
|
|
|
|
_profile.GrabDelay = 12;
|
|
|
|
|
|
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, null).Should().BeFalse();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_false_when_release_is_first_detected_and_mode_is_first()
|
|
|
|
|
{
|
|
|
|
|
_profile.GrabDelayMode = GrabDelayMode.First;
|
|
|
|
|
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.HDTV720p);
|
|
|
|
|
_remoteEpisode.Release.PublishDate = DateTime.UtcNow;
|
|
|
|
|
|
|
|
|
|
_profile.GrabDelay = 12;
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<IPendingReleaseService>()
|
|
|
|
|
.Setup(s => s.GetPendingRemoteEpisodes(It.IsAny<Int32>()))
|
|
|
|
|
.Returns(new List<RemoteEpisode>());
|
|
|
|
|
|
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, null).Should().BeFalse();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_false_when_release_is_not_first_but_oldest_has_not_expired_and_type_is_first()
|
|
|
|
|
{
|
|
|
|
|
_profile.GrabDelayMode = GrabDelayMode.First;
|
|
|
|
|
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.HDTV720p);
|
|
|
|
|
_remoteEpisode.Release.PublishDate = DateTime.UtcNow;
|
|
|
|
|
|
|
|
|
|
_profile.GrabDelay = 12;
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<IPendingReleaseService>()
|
|
|
|
|
.Setup(s => s.GetPendingRemoteEpisodes(It.IsAny<Int32>()))
|
|
|
|
|
.Returns(new List<RemoteEpisode> { _remoteEpisode.JsonClone() });
|
|
|
|
|
|
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, null).Should().BeFalse();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_true_when_existing_pending_release_expired_and_mode_is_first()
|
|
|
|
|
{
|
|
|
|
|
_profile.GrabDelayMode = GrabDelayMode.First;
|
|
|
|
|
|
|
|
|
|
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.WEBDL720p);
|
|
|
|
|
_remoteEpisode.Release.PublishDate = DateTime.UtcNow;
|
|
|
|
|
_profile.GrabDelay = 12;
|
|
|
|
|
|
|
|
|
|
var pendingRemoteEpisode = _remoteEpisode.JsonClone();
|
|
|
|
|
pendingRemoteEpisode.Release.PublishDate = DateTime.UtcNow.AddHours(-15);
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<IPendingReleaseService>()
|
|
|
|
|
.Setup(s => s.GetPendingRemoteEpisodes(It.IsAny<Int32>()))
|
|
|
|
|
.Returns(new List<RemoteEpisode> { pendingRemoteEpisode });
|
|
|
|
|
|
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, null).Should().BeTrue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_true_when_one_existing_pending_release_is_expired_and_mode_is_first()
|
|
|
|
|
{
|
|
|
|
|
_profile.GrabDelayMode = GrabDelayMode.First;
|
|
|
|
|
|
|
|
|
|
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.WEBDL720p);
|
|
|
|
|
_remoteEpisode.Release.PublishDate = DateTime.UtcNow;
|
|
|
|
|
_profile.GrabDelay = 12;
|
|
|
|
|
|
|
|
|
|
var pendingRemoteEpisode1 = _remoteEpisode.JsonClone();
|
|
|
|
|
pendingRemoteEpisode1.Release.PublishDate = DateTime.UtcNow.AddHours(-15);
|
|
|
|
|
|
|
|
|
|
var pendingRemoteEpisode2 = _remoteEpisode.JsonClone();
|
|
|
|
|
pendingRemoteEpisode2.Release.PublishDate = DateTime.UtcNow.AddHours(5);
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<IPendingReleaseService>()
|
|
|
|
|
.Setup(s => s.GetPendingRemoteEpisodes(It.IsAny<Int32>()))
|
|
|
|
|
.Returns(new List<RemoteEpisode> { pendingRemoteEpisode1, pendingRemoteEpisode2 });
|
|
|
|
|
|
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, null).Should().BeTrue();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|