2013-04-07 09:30:37 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2013-03-07 04:45:36 +01:00
|
|
|
|
using FluentAssertions;
|
2012-02-07 06:08:07 +01:00
|
|
|
|
using Moq;
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using NzbDrone.Core.Model;
|
2013-02-19 03:19:38 +01:00
|
|
|
|
using NzbDrone.Core.DecisionEngine;
|
2012-02-07 06:08:07 +01:00
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
|
|
2013-02-19 03:19:38 +01:00
|
|
|
|
namespace NzbDrone.Core.Test.DecisionEngineTests
|
2012-02-07 06:08:07 +01:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2013-04-07 09:30:37 +02:00
|
|
|
|
public class AllowedDownloadSpecificationFixture : CoreTest<DownloadDecisionMaker>
|
2012-02-07 06:08:07 +01:00
|
|
|
|
{
|
2013-04-07 09:30:37 +02:00
|
|
|
|
private List<EpisodeParseResult> _parseResults;
|
2012-02-07 06:08:07 +01:00
|
|
|
|
|
2013-04-07 09:30:37 +02:00
|
|
|
|
private Mock<IDecisionEngineSpecification> _pass1;
|
|
|
|
|
private Mock<IDecisionEngineSpecification> _pass2;
|
|
|
|
|
private Mock<IDecisionEngineSpecification> _pass3;
|
2013-01-16 02:36:02 +01:00
|
|
|
|
|
2013-04-07 09:30:37 +02:00
|
|
|
|
private Mock<IDecisionEngineSpecification> _fail1;
|
|
|
|
|
private Mock<IDecisionEngineSpecification> _fail2;
|
|
|
|
|
private Mock<IDecisionEngineSpecification> _fail3;
|
2012-02-07 06:08:07 +01:00
|
|
|
|
|
2013-03-07 02:51:47 +01:00
|
|
|
|
[SetUp]
|
|
|
|
|
public void Setup()
|
2012-02-07 06:08:07 +01:00
|
|
|
|
{
|
2013-04-07 09:30:37 +02:00
|
|
|
|
_pass1 = new Mock<IDecisionEngineSpecification>();
|
|
|
|
|
_pass2 = new Mock<IDecisionEngineSpecification>();
|
|
|
|
|
_pass3 = new Mock<IDecisionEngineSpecification>();
|
2012-02-07 06:08:07 +01:00
|
|
|
|
|
2013-04-07 09:30:37 +02:00
|
|
|
|
_fail1 = new Mock<IDecisionEngineSpecification>();
|
|
|
|
|
_fail2 = new Mock<IDecisionEngineSpecification>();
|
|
|
|
|
_fail3 = new Mock<IDecisionEngineSpecification>();
|
2012-02-07 06:08:07 +01:00
|
|
|
|
|
2013-03-07 04:45:36 +01:00
|
|
|
|
_pass1.Setup(c => c.IsSatisfiedBy(It.IsAny<EpisodeParseResult>())).Returns(true);
|
|
|
|
|
_pass2.Setup(c => c.IsSatisfiedBy(It.IsAny<EpisodeParseResult>())).Returns(true);
|
|
|
|
|
_pass3.Setup(c => c.IsSatisfiedBy(It.IsAny<EpisodeParseResult>())).Returns(true);
|
2012-02-07 06:08:07 +01:00
|
|
|
|
|
2013-03-07 04:45:36 +01:00
|
|
|
|
_fail1.Setup(c => c.IsSatisfiedBy(It.IsAny<EpisodeParseResult>())).Returns(false);
|
|
|
|
|
_fail2.Setup(c => c.IsSatisfiedBy(It.IsAny<EpisodeParseResult>())).Returns(false);
|
|
|
|
|
_fail3.Setup(c => c.IsSatisfiedBy(It.IsAny<EpisodeParseResult>())).Returns(false);
|
2012-02-07 06:08:07 +01:00
|
|
|
|
|
2013-04-07 09:30:37 +02:00
|
|
|
|
_parseResults = new List<EpisodeParseResult>() { new EpisodeParseResult() };
|
2012-02-17 10:52:29 +01:00
|
|
|
|
|
2012-09-19 17:13:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-04-07 09:30:37 +02:00
|
|
|
|
private void GivenSpecifications(params Mock<IDecisionEngineSpecification>[] mocks)
|
2013-03-07 04:45:36 +01:00
|
|
|
|
{
|
|
|
|
|
Mocker.SetConstant(mocks.Select(c => c.Object));
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-07 06:08:07 +01:00
|
|
|
|
[Test]
|
2013-03-07 02:51:47 +01:00
|
|
|
|
public void should_call_all_specifications()
|
2012-02-07 06:08:07 +01:00
|
|
|
|
{
|
2013-03-07 04:45:36 +01:00
|
|
|
|
GivenSpecifications(_pass1, _pass2, _pass3, _fail1, _fail2, _fail3);
|
|
|
|
|
|
2013-04-07 09:30:37 +02:00
|
|
|
|
Subject.GetRssDecision(_parseResults);
|
2013-03-07 04:45:36 +01:00
|
|
|
|
|
2013-04-07 09:30:37 +02:00
|
|
|
|
_fail1.Verify(c => c.IsSatisfiedBy(_parseResults[0]), Times.Once());
|
|
|
|
|
_fail2.Verify(c => c.IsSatisfiedBy(_parseResults[0]), Times.Once());
|
|
|
|
|
_fail3.Verify(c => c.IsSatisfiedBy(_parseResults[0]), Times.Once());
|
|
|
|
|
_pass1.Verify(c => c.IsSatisfiedBy(_parseResults[0]), Times.Once());
|
|
|
|
|
_pass2.Verify(c => c.IsSatisfiedBy(_parseResults[0]), Times.Once());
|
|
|
|
|
_pass3.Verify(c => c.IsSatisfiedBy(_parseResults[0]), Times.Once());
|
2013-03-07 04:45:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_return_rejected_if_one_of_specs_fail()
|
|
|
|
|
{
|
|
|
|
|
GivenSpecifications(_pass1, _fail1, _pass2, _pass3);
|
|
|
|
|
|
2013-04-07 09:30:37 +02:00
|
|
|
|
var result = Subject.GetRssDecision(_parseResults);
|
2013-03-07 04:45:36 +01:00
|
|
|
|
|
2013-04-07 09:30:37 +02:00
|
|
|
|
result.Single().Approved.Should().BeFalse();
|
2013-03-07 04:45:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_return_pass_if_all_specs_pass()
|
|
|
|
|
{
|
|
|
|
|
GivenSpecifications(_pass1, _pass2, _pass3);
|
|
|
|
|
|
2013-04-07 09:30:37 +02:00
|
|
|
|
var result = Subject.GetRssDecision(_parseResults);
|
2013-03-07 04:45:36 +01:00
|
|
|
|
|
2013-04-07 09:30:37 +02:00
|
|
|
|
result.Single().Approved.Should().BeTrue();
|
2013-03-07 04:45:36 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_have_same_number_of_rejections_as_specs_that_failed()
|
|
|
|
|
{
|
|
|
|
|
GivenSpecifications(_pass1, _pass2, _pass3, _fail1, _fail2, _fail3);
|
|
|
|
|
|
2013-04-07 09:30:37 +02:00
|
|
|
|
var result = Subject.GetRssDecision(_parseResults);
|
|
|
|
|
result.Single().Rejections.Should().HaveCount(3);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void parse_result_should_be_attached_to_decision()
|
|
|
|
|
{
|
|
|
|
|
GivenSpecifications(_pass1, _pass2, _pass3, _fail1, _fail2, _fail3);
|
|
|
|
|
|
|
|
|
|
var result = Subject.GetRssDecision(_parseResults);
|
|
|
|
|
result.Single().ParseResult.Should().Be(_parseResults.Single());
|
2012-02-07 06:08:07 +01:00
|
|
|
|
}
|
2013-01-16 02:36:02 +01:00
|
|
|
|
|
2012-02-07 06:08:07 +01:00
|
|
|
|
}
|
|
|
|
|
}
|