mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-27 23:06:29 -04:00
da29de4cfe
Closes #7725
253 lines
10 KiB
C#
253 lines
10 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using FizzWare.NBuilder;
|
|
using FluentAssertions;
|
|
using Moq;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Core.CustomFormats;
|
|
using NzbDrone.Core.DecisionEngine;
|
|
using NzbDrone.Core.DecisionEngine.Specifications;
|
|
using NzbDrone.Core.DecisionEngine.Specifications.RssSync;
|
|
using NzbDrone.Core.Download.Pending;
|
|
using NzbDrone.Core.Indexers;
|
|
using NzbDrone.Core.IndexerSearch.Definitions;
|
|
using NzbDrone.Core.Languages;
|
|
using NzbDrone.Core.MediaFiles;
|
|
using NzbDrone.Core.Parser.Model;
|
|
using NzbDrone.Core.Profiles.Delay;
|
|
using NzbDrone.Core.Profiles.Qualities;
|
|
using NzbDrone.Core.Qualities;
|
|
using NzbDrone.Core.Test.Framework;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Test.DecisionEngineTests.RssSync
|
|
{
|
|
[TestFixture]
|
|
public class DelaySpecificationFixture : CoreTest<DelaySpecification>
|
|
{
|
|
private QualityProfile _profile;
|
|
private DelayProfile _delayProfile;
|
|
private RemoteEpisode _remoteEpisode;
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
_profile = Builder<QualityProfile>.CreateNew()
|
|
.Build();
|
|
|
|
_delayProfile = Builder<DelayProfile>.CreateNew()
|
|
.With(d => d.PreferredProtocol = DownloadProtocol.Usenet)
|
|
.Build();
|
|
|
|
var series = Builder<Series>.CreateNew()
|
|
.With(s => s.QualityProfile = _profile)
|
|
.Build();
|
|
|
|
_remoteEpisode = Builder<RemoteEpisode>.CreateNew()
|
|
.With(r => r.Series = series)
|
|
.Build();
|
|
|
|
_profile.Items = new List<QualityProfileQualityItem>();
|
|
_profile.Items.Add(new QualityProfileQualityItem { Allowed = true, Quality = Quality.HDTV720p });
|
|
_profile.Items.Add(new QualityProfileQualityItem { Allowed = true, Quality = Quality.WEBDL720p });
|
|
_profile.Items.Add(new QualityProfileQualityItem { Allowed = true, Quality = Quality.Bluray720p });
|
|
|
|
_profile.Cutoff = Quality.WEBDL720p.Id;
|
|
|
|
_remoteEpisode.ParsedEpisodeInfo = new ParsedEpisodeInfo();
|
|
_remoteEpisode.Release = new ReleaseInfo();
|
|
_remoteEpisode.Release.DownloadProtocol = DownloadProtocol.Usenet;
|
|
|
|
_remoteEpisode.Episodes = Builder<Episode>.CreateListOfSize(1).Build().ToList();
|
|
_remoteEpisode.Episodes.First().EpisodeFileId = 0;
|
|
|
|
Mocker.GetMock<IDelayProfileService>()
|
|
.Setup(s => s.BestForTags(It.IsAny<HashSet<int>>()))
|
|
.Returns(_delayProfile);
|
|
|
|
Mocker.GetMock<IPendingReleaseService>()
|
|
.Setup(s => s.GetPendingRemoteEpisodes(It.IsAny<int>()))
|
|
.Returns(new List<RemoteEpisode>());
|
|
}
|
|
|
|
private void GivenExistingFile(QualityModel quality, Language language)
|
|
{
|
|
_remoteEpisode.Episodes.First().EpisodeFileId = 1;
|
|
|
|
_remoteEpisode.Episodes.First().EpisodeFile = new EpisodeFile
|
|
{
|
|
Quality = quality,
|
|
Languages = new List<Language> { language },
|
|
SceneName = "Series.Title.S01E01.720p.HDTV.x264-Sonarr"
|
|
};
|
|
}
|
|
|
|
private void GivenUpgradeForExistingFile()
|
|
{
|
|
Mocker.GetMock<IUpgradableSpecification>()
|
|
.Setup(s => s.IsUpgradable(It.IsAny<QualityProfile>(), It.IsAny<QualityModel>(), It.IsAny<List<CustomFormat>>(), It.IsAny<QualityModel>(), It.IsAny<List<CustomFormat>>()))
|
|
.Returns(UpgradeableRejectReason.None);
|
|
}
|
|
|
|
[Test]
|
|
public void should_be_true_when_user_invoked_search()
|
|
{
|
|
Subject.IsSatisfiedBy(new RemoteEpisode(), new ReleaseDecisionInformation(false, new SingleEpisodeSearchCriteria { UserInvokedSearch = true })).Accepted.Should().BeTrue();
|
|
}
|
|
|
|
[Test]
|
|
public void should_be_false_when_system_invoked_search_and_release_is_younger_than_delay()
|
|
{
|
|
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.SDTV);
|
|
_remoteEpisode.Release.PublishDate = DateTime.UtcNow;
|
|
|
|
_delayProfile.UsenetDelay = 720;
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, new ReleaseDecisionInformation(false, new SingleEpisodeSearchCriteria())).Accepted.Should().BeFalse();
|
|
}
|
|
|
|
[Test]
|
|
public void should_be_true_when_profile_does_not_have_a_delay()
|
|
{
|
|
_delayProfile.UsenetDelay = 0;
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, new()).Accepted.Should().BeTrue();
|
|
}
|
|
|
|
[Test]
|
|
public void should_be_false_when_quality_and_language_is_last_allowed_in_profile_and_bypass_disabled()
|
|
{
|
|
_remoteEpisode.Release.PublishDate = DateTime.UtcNow;
|
|
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.Bluray720p);
|
|
_remoteEpisode.ParsedEpisodeInfo.Languages = new List<Language> { Language.French };
|
|
|
|
_delayProfile.UsenetDelay = 720;
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, new()).Accepted.Should().BeFalse();
|
|
}
|
|
|
|
[Test]
|
|
public void should_be_true_when_quality_and_language_is_last_allowed_in_profile_and_bypass_enabled()
|
|
{
|
|
_delayProfile.UsenetDelay = 720;
|
|
_delayProfile.BypassIfHighestQuality = true;
|
|
|
|
_remoteEpisode.Release.PublishDate = DateTime.UtcNow;
|
|
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.Bluray720p);
|
|
_remoteEpisode.ParsedEpisodeInfo.Languages = new List<Language> { Language.French };
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, new()).Accepted.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);
|
|
|
|
_delayProfile.UsenetDelay = 60;
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, new()).Accepted.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;
|
|
|
|
_delayProfile.UsenetDelay = 720;
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, new()).Accepted.Should().BeFalse();
|
|
}
|
|
|
|
[Test]
|
|
public void should_be_true_when_release_is_a_proper_for_existing_episode()
|
|
{
|
|
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.HDTV720p, new Revision(version: 2));
|
|
_remoteEpisode.Release.PublishDate = DateTime.UtcNow;
|
|
|
|
GivenExistingFile(new QualityModel(Quality.HDTV720p), Language.English);
|
|
GivenUpgradeForExistingFile();
|
|
|
|
Mocker.GetMock<IUpgradableSpecification>()
|
|
.Setup(s => s.IsRevisionUpgrade(It.IsAny<QualityModel>(), It.IsAny<QualityModel>()))
|
|
.Returns(true);
|
|
|
|
_delayProfile.UsenetDelay = 720;
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, new()).Accepted.Should().BeTrue();
|
|
}
|
|
|
|
[Test]
|
|
public void should_be_true_when_release_is_a_real_for_existing_episode()
|
|
{
|
|
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.HDTV720p, new Revision(real: 1));
|
|
_remoteEpisode.Release.PublishDate = DateTime.UtcNow;
|
|
|
|
GivenExistingFile(new QualityModel(Quality.HDTV720p), Language.English);
|
|
GivenUpgradeForExistingFile();
|
|
|
|
Mocker.GetMock<IUpgradableSpecification>()
|
|
.Setup(s => s.IsRevisionUpgrade(It.IsAny<QualityModel>(), It.IsAny<QualityModel>()))
|
|
.Returns(true);
|
|
|
|
_delayProfile.UsenetDelay = 720;
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, new()).Accepted.Should().BeTrue();
|
|
}
|
|
|
|
[Test]
|
|
public void should_be_false_when_release_is_proper_for_existing_episode_of_different_quality()
|
|
{
|
|
_remoteEpisode.ParsedEpisodeInfo.Quality = new QualityModel(Quality.WEBDL720p, new Revision(version: 2));
|
|
_remoteEpisode.Release.PublishDate = DateTime.UtcNow;
|
|
|
|
GivenExistingFile(new QualityModel(Quality.HDTV720p), Language.English);
|
|
|
|
_delayProfile.UsenetDelay = 720;
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, new()).Accepted.Should().BeFalse();
|
|
}
|
|
|
|
[Test]
|
|
public void should_be_false_when_custom_format_score_is_above_minimum_but_bypass_disabled()
|
|
{
|
|
_remoteEpisode.Release.PublishDate = DateTime.UtcNow;
|
|
_remoteEpisode.CustomFormatScore = 100;
|
|
|
|
_delayProfile.UsenetDelay = 720;
|
|
_delayProfile.MinimumCustomFormatScore = 50;
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, new()).Accepted.Should().BeFalse();
|
|
}
|
|
|
|
[Test]
|
|
public void should_be_false_when_custom_format_score_is_above_minimum_and_bypass_enabled_but_under_minimum()
|
|
{
|
|
_remoteEpisode.Release.PublishDate = DateTime.UtcNow;
|
|
_remoteEpisode.CustomFormatScore = 5;
|
|
|
|
_delayProfile.UsenetDelay = 720;
|
|
_delayProfile.BypassIfAboveCustomFormatScore = true;
|
|
_delayProfile.MinimumCustomFormatScore = 50;
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, new()).Accepted.Should().BeFalse();
|
|
}
|
|
|
|
[Test]
|
|
public void should_be_true_when_custom_format_score_is_above_minimum_and_bypass_enabled()
|
|
{
|
|
_remoteEpisode.Release.PublishDate = DateTime.UtcNow;
|
|
_remoteEpisode.CustomFormatScore = 100;
|
|
|
|
_delayProfile.UsenetDelay = 720;
|
|
_delayProfile.BypassIfAboveCustomFormatScore = true;
|
|
_delayProfile.MinimumCustomFormatScore = 50;
|
|
|
|
Subject.IsSatisfiedBy(_remoteEpisode, new()).Accepted.Should().BeTrue();
|
|
}
|
|
}
|
|
}
|