2013-04-07 17:53:04 +00:00
|
|
|
|
using System;
|
2012-08-07 05:24:15 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using NUnit.Framework;
|
2013-03-07 00:19:49 +00:00
|
|
|
|
using NzbDrone.Core.DecisionEngine.Specifications;
|
2013-02-27 03:19:22 +00:00
|
|
|
|
using NzbDrone.Core.Qualities;
|
2013-02-19 06:01:03 +00:00
|
|
|
|
using NzbDrone.Core.Tv;
|
2012-08-07 05:24:15 +00:00
|
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
|
|
2013-02-19 02:19:38 +00:00
|
|
|
|
namespace NzbDrone.Core.Test.DecisionEngineTests
|
2012-08-07 05:24:15 +00:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2013-04-07 17:53:04 +00:00
|
|
|
|
|
|
|
|
|
public class AllowedReleaseGroupSpecificationFixture : CoreTest<AllowedReleaseGroupSpecification>
|
2012-08-07 05:24:15 +00:00
|
|
|
|
{
|
2013-04-07 19:01:24 +00:00
|
|
|
|
private IndexerParseResult parseResult;
|
2012-08-07 05:24:15 +00:00
|
|
|
|
|
|
|
|
|
[SetUp]
|
|
|
|
|
public void Setup()
|
|
|
|
|
{
|
2013-04-07 19:01:24 +00:00
|
|
|
|
parseResult = new IndexerParseResult
|
2012-08-07 05:24:15 +00:00
|
|
|
|
{
|
|
|
|
|
SeriesTitle = "Title",
|
|
|
|
|
Language = LanguageType.English,
|
2013-02-27 03:19:22 +00:00
|
|
|
|
Quality = new QualityModel(Quality.SDTV, true),
|
2012-08-07 05:24:15 +00:00
|
|
|
|
EpisodeNumbers = new List<int> { 3 },
|
|
|
|
|
SeasonNumber = 12,
|
|
|
|
|
AirDate = DateTime.Now.AddDays(-12).Date,
|
|
|
|
|
ReleaseGroup = "2HD"
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_true_when_allowedReleaseGroups_is_empty()
|
|
|
|
|
{
|
2013-04-07 17:53:04 +00:00
|
|
|
|
Subject.IsSatisfiedBy(parseResult).Should().BeTrue();
|
2012-08-07 05:24:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_true_when_allowedReleaseGroups_is_nzbs_releaseGroup()
|
|
|
|
|
{
|
2013-04-07 17:53:04 +00:00
|
|
|
|
Subject.IsSatisfiedBy(parseResult).Should().BeTrue();
|
2012-08-07 05:24:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_true_when_allowedReleaseGroups_contains_nzbs_releaseGroup()
|
|
|
|
|
{
|
2013-04-07 17:53:04 +00:00
|
|
|
|
Subject.IsSatisfiedBy(parseResult).Should().BeTrue();
|
2012-08-07 05:24:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_be_false_when_allowedReleaseGroups_does_not_contain_nzbs_releaseGroup()
|
|
|
|
|
{
|
2013-04-07 17:53:04 +00:00
|
|
|
|
Subject.IsSatisfiedBy(parseResult).Should().BeFalse();
|
2012-08-07 05:24:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|