1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-19 16:01:46 +02:00
Radarr/NzbDrone.Core.Test/DecisionEngineTests/RetentionSpecificationFixture.cs

84 lines
2.2 KiB
C#
Raw Normal View History

using FluentAssertions;
2012-02-17 10:52:29 +01:00
using NUnit.Framework;
2013-02-24 07:48:52 +01:00
using NzbDrone.Core.Configuration;
using NzbDrone.Core.DecisionEngine.Specifications;
using NzbDrone.Core.Parser.Model;
2012-02-17 10:52:29 +01:00
using NzbDrone.Core.Test.Framework;
2013-02-19 03:19:38 +01:00
namespace NzbDrone.Core.Test.DecisionEngineTests
2012-02-17 10:52:29 +01:00
{
[TestFixture]
public class RetentionSpecificationFixture : CoreTest<RetentionSpecification>
2012-02-17 10:52:29 +01:00
{
private RemoteEpisode parseResult;
2012-02-17 10:52:29 +01:00
[SetUp]
public void Setup()
{
parseResult = new RemoteEpisode
2012-02-17 10:52:29 +01:00
{
Report = new ReportInfo
{
Age = 100
}
2012-02-17 10:52:29 +01:00
};
}
private void WithUnlimitedRetention()
{
2013-02-24 20:39:31 +01:00
Mocker.GetMock<IConfigService>().SetupGet(c => c.Retention).Returns(0);
2012-02-17 10:52:29 +01:00
}
private void WithLongRetention()
{
2013-02-24 20:39:31 +01:00
Mocker.GetMock<IConfigService>().SetupGet(c => c.Retention).Returns(1000);
2012-02-17 10:52:29 +01:00
}
private void WithShortRetention()
{
2013-02-24 20:39:31 +01:00
Mocker.GetMock<IConfigService>().SetupGet(c => c.Retention).Returns(10);
2012-02-17 10:52:29 +01:00
}
private void WithEqualRetention()
{
2013-02-24 20:39:31 +01:00
Mocker.GetMock<IConfigService>().SetupGet(c => c.Retention).Returns(100);
2012-02-17 10:52:29 +01:00
}
[Test]
public void unlimited_retention_should_return_true()
{
WithUnlimitedRetention();
Subject.IsSatisfiedBy(parseResult).Should().BeTrue();
2012-02-17 10:52:29 +01:00
}
[Test]
public void longer_retention_should_return_true()
{
WithLongRetention();
Subject.IsSatisfiedBy(parseResult).Should().BeTrue();
2012-02-17 10:52:29 +01:00
}
[Test]
public void equal_retention_should_return_true()
{
WithEqualRetention();
Subject.IsSatisfiedBy(parseResult).Should().BeTrue();
2012-02-17 10:52:29 +01:00
}
[Test]
public void shorter_retention_should_return_false()
{
WithShortRetention();
Subject.IsSatisfiedBy(parseResult).Should().BeFalse();
2012-02-17 10:52:29 +01:00
}
[Test]
public void zeroDay_report_should_return_true()
{
WithUnlimitedRetention();
Subject.IsSatisfiedBy(parseResult).Should().BeTrue();
2012-02-17 10:52:29 +01:00
}
}
}