mirror of https://github.com/lidarr/Lidarr
138 lines
4.4 KiB
C#
138 lines
4.4 KiB
C#
// ReSharper disable RedundantUsingDirective
|
|
|
|
using System.Linq;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using FizzWare.NBuilder;
|
|
using FluentAssertions;
|
|
using Moq;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Core.Model;
|
|
using NzbDrone.Core.Providers;
|
|
using NzbDrone.Core.Providers.DecisionEngine;
|
|
using NzbDrone.Core.Repository;
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
namespace NzbDrone.Core.Test.ProviderTests.DecisionEngineTests
|
|
{
|
|
[TestFixture]
|
|
// ReSharper disable InconsistentNaming
|
|
public class MonitoredEpisodeSpecificationFixture : CoreTest
|
|
{
|
|
private MonitoredEpisodeSpecification monitoredEpisodeSpecification;
|
|
|
|
private EpisodeParseResult parseResultMulti;
|
|
private EpisodeParseResult parseResultSingle;
|
|
private Series fakeSeries;
|
|
private Episode firstEpisode;
|
|
private Episode secondEpisode;
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
monitoredEpisodeSpecification = Mocker.Resolve<MonitoredEpisodeSpecification>();
|
|
|
|
fakeSeries = Builder<Series>.CreateNew()
|
|
.With(c => c.Monitored = true)
|
|
.Build();
|
|
|
|
parseResultMulti = new EpisodeParseResult
|
|
{
|
|
SeriesTitle = "Title",
|
|
Series = fakeSeries,
|
|
EpisodeNumbers = new List<int> { 3, 4 },
|
|
SeasonNumber = 12,
|
|
};
|
|
|
|
parseResultSingle = new EpisodeParseResult
|
|
{
|
|
SeriesTitle = "Title",
|
|
Series = fakeSeries,
|
|
EpisodeNumbers = new List<int> { 3 },
|
|
SeasonNumber = 12,
|
|
};
|
|
|
|
firstEpisode = new Episode { Ignored = false };
|
|
secondEpisode = new Episode { Ignored = false };
|
|
|
|
var singleEpisodeList = new List<Episode> { firstEpisode };
|
|
var doubleEpisodeList = new List<Episode> { firstEpisode, secondEpisode };
|
|
|
|
Mocker.GetMock<EpisodeProvider>().Setup(c => c.GetEpisodesByParseResult(parseResultSingle)).Returns(singleEpisodeList);
|
|
Mocker.GetMock<EpisodeProvider>().Setup(c => c.GetEpisodesByParseResult(parseResultMulti)).Returns(doubleEpisodeList);
|
|
|
|
Mocker.GetMock<SeriesProvider>().Setup(c => c.FindSeries(parseResultMulti.CleanTitle)).Returns(fakeSeries);
|
|
Mocker.GetMock<SeriesProvider>().Setup(c => c.FindSeries(parseResultSingle.CleanTitle)).Returns(fakeSeries);
|
|
}
|
|
|
|
private void WithFirstEpisodeIgnored()
|
|
{
|
|
firstEpisode.Ignored = true;
|
|
}
|
|
|
|
private void WithSecondEpisodeIgnored()
|
|
{
|
|
secondEpisode.Ignored = true;
|
|
}
|
|
|
|
[Test]
|
|
public void setup_should_return_monitored_episode_should_return_true()
|
|
{
|
|
monitoredEpisodeSpecification.IsSatisfiedBy(parseResultSingle).Should().BeTrue();
|
|
monitoredEpisodeSpecification.IsSatisfiedBy(parseResultMulti).Should().BeTrue();
|
|
}
|
|
|
|
|
|
[Test]
|
|
public void not_monitored_series_should_be_skipped()
|
|
{
|
|
fakeSeries.Monitored = false;
|
|
monitoredEpisodeSpecification.IsSatisfiedBy(parseResultMulti).Should().BeFalse();
|
|
}
|
|
|
|
|
|
[Test]
|
|
public void not_in_db_should_be_skipped()
|
|
{
|
|
Mocker.GetMock<SeriesProvider>()
|
|
.Setup(p => p.FindSeries(It.IsAny<String>()))
|
|
.Returns<Series>(null);
|
|
|
|
monitoredEpisodeSpecification.IsSatisfiedBy(parseResultMulti).Should().BeFalse();
|
|
}
|
|
|
|
|
|
[Test]
|
|
public void only_episode_ignored_should_return_false()
|
|
{
|
|
WithFirstEpisodeIgnored();
|
|
monitoredEpisodeSpecification.IsSatisfiedBy(parseResultSingle).Should().BeFalse();
|
|
}
|
|
|
|
|
|
[Test]
|
|
public void both_episodes_ignored_should_return_false()
|
|
{
|
|
WithFirstEpisodeIgnored();
|
|
WithSecondEpisodeIgnored();
|
|
monitoredEpisodeSpecification.IsSatisfiedBy(parseResultMulti).Should().BeFalse();
|
|
}
|
|
|
|
|
|
[Test]
|
|
public void only_first_episode_ignored_should_return_monitored()
|
|
{
|
|
WithFirstEpisodeIgnored();
|
|
monitoredEpisodeSpecification.IsSatisfiedBy(parseResultMulti).Should().BeTrue();
|
|
}
|
|
|
|
|
|
[Test]
|
|
public void only_second_episode_ignored_should_return_monitored()
|
|
{
|
|
WithSecondEpisodeIgnored();
|
|
monitoredEpisodeSpecification.IsSatisfiedBy(parseResultMulti).Should().BeTrue();
|
|
}
|
|
|
|
}
|
|
} |