62 lines
2.5 KiB
C#
62 lines
2.5 KiB
C#
using System;
|
|
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Core.Configuration;
|
|
using NzbDrone.Core.Profiles;
|
|
using NzbDrone.Core.Qualities;
|
|
using NzbDrone.Core.DecisionEngine;
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
namespace NzbDrone.Core.Test.DecisionEngineTests
|
|
{
|
|
[TestFixture]
|
|
|
|
public class QualityUpgradeSpecificationFixture : CoreTest<QualityUpgradableSpecification>
|
|
{
|
|
public static object[] IsUpgradeTestCases =
|
|
{
|
|
new object[] { Quality.SDTV, 1, Quality.SDTV, 2, Quality.SDTV, true },
|
|
new object[] { Quality.WEBDL720p, 1, Quality.WEBDL720p, 2, Quality.WEBDL720p, true },
|
|
new object[] { Quality.SDTV, 1, Quality.SDTV, 1, Quality.SDTV, false },
|
|
new object[] { Quality.WEBDL720p, 1, Quality.HDTV720p, 2, Quality.Bluray720p, false },
|
|
new object[] { Quality.WEBDL720p, 1, Quality.HDTV720p, 2, Quality.WEBDL720p, false },
|
|
new object[] { Quality.WEBDL720p, 1, Quality.WEBDL720p, 1, Quality.WEBDL720p, false },
|
|
new object[] { Quality.WEBDL1080p, 1, Quality.WEBDL1080p, 1, Quality.WEBDL1080p, false }
|
|
};
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
|
|
}
|
|
|
|
private void GivenAutoDownloadPropers(bool autoDownloadPropers)
|
|
{
|
|
Mocker.GetMock<IConfigService>()
|
|
.SetupGet(s => s.AutoDownloadPropers)
|
|
.Returns(autoDownloadPropers);
|
|
}
|
|
|
|
[Test, TestCaseSource("IsUpgradeTestCases")]
|
|
public void IsUpgradeTest(Quality current, Int32 currentVersion, Quality newQuality, Int32 newVersion, Quality cutoff, Boolean expected)
|
|
{
|
|
GivenAutoDownloadPropers(true);
|
|
|
|
var profile = new Profile { Items = Qualities.QualityFixture.GetDefaultQualities() };
|
|
|
|
Subject.IsUpgradable(profile, new QualityModel(current, new Revision(version: currentVersion)), new QualityModel(newQuality, new Revision(version: newVersion)))
|
|
.Should().Be(expected);
|
|
}
|
|
|
|
[Test]
|
|
public void should_return_false_if_proper_and_autoDownloadPropers_is_false()
|
|
{
|
|
GivenAutoDownloadPropers(false);
|
|
|
|
var profile = new Profile { Items = Qualities.QualityFixture.GetDefaultQualities() };
|
|
|
|
Subject.IsUpgradable(profile, new QualityModel(Quality.DVD, new Revision(version: 2)), new QualityModel(Quality.DVD, new Revision(version: 1)))
|
|
.Should().BeFalse();
|
|
}
|
|
}
|
|
} |