1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-02-06 11:50:56 +02:00
Sonarr/NzbDrone.Core.Test/DecisionEngineTests/QualityUpgradeSpecificationFixture.cs

52 lines
2.2 KiB
C#
Raw Normal View History

2013-07-18 20:47:55 -07:00
using FluentAssertions;
using NUnit.Framework;
using NzbDrone.Core.Configuration;
2013-02-26 19:19:22 -08:00
using NzbDrone.Core.Qualities;
using NzbDrone.Core.Tv;
2013-02-18 18:19:38 -08:00
using NzbDrone.Core.DecisionEngine;
using NzbDrone.Core.Test.Framework;
2013-02-18 18:19:38 -08:00
namespace NzbDrone.Core.Test.DecisionEngineTests
{
[TestFixture]
2013-03-28 15:07:09 -07:00
public class QualityUpgradeSpecificationFixture : CoreTest<QualityUpgradableSpecification>
{
2012-10-13 17:36:16 -07:00
public static object[] IsUpgradeTestCases =
{
2013-02-26 19:19:22 -08:00
new object[] { Quality.SDTV, false, Quality.SDTV, true, Quality.SDTV, true },
new object[] { Quality.WEBDL720p, false, Quality.WEBDL720p, true, Quality.WEBDL720p, true },
new object[] { Quality.SDTV, false, Quality.SDTV, false, Quality.SDTV, false },
new object[] { Quality.WEBDL720p, false, Quality.HDTV720p, true, Quality.Bluray720p, false },
new object[] { Quality.WEBDL720p, false, Quality.HDTV720p, true, Quality.WEBDL720p, false },
new object[] { Quality.WEBDL720p, false, Quality.WEBDL720p, false, Quality.WEBDL720p, false },
new object[] { Quality.SDTV, false, Quality.SDTV, true, Quality.SDTV, true },
new object[] { Quality.WEBDL1080p, false, Quality.WEBDL1080p, false, Quality.WEBDL1080p, false }
2012-10-13 17:36:16 -07:00
};
private void GivenAutoDownloadPropers(bool autoDownloadPropers)
{
Mocker.GetMock<IConfigService>()
.SetupGet(s => s.AutoDownloadPropers)
.Returns(autoDownloadPropers);
}
2012-10-13 17:36:16 -07:00
[Test, TestCaseSource("IsUpgradeTestCases")]
2013-02-26 19:19:22 -08:00
public void IsUpgradeTest(Quality current, bool currentProper, Quality newQuality, bool newProper, Quality cutoff, bool expected)
{
GivenAutoDownloadPropers(true);
2013-09-10 19:07:22 -07:00
Subject.IsUpgradable(new QualityModel(current, currentProper), new QualityModel(newQuality, newProper))
2012-10-13 17:36:16 -07:00
.Should().Be(expected);
}
[Test]
public void should_return_false_if_proper_and_autoDownloadPropers_is_false()
{
GivenAutoDownloadPropers(false);
2013-09-10 19:07:22 -07:00
Subject.IsUpgradable(new QualityModel(Quality.DVD, true),
new QualityModel(Quality.DVD, false)).Should().BeFalse();
}
}
}