2013-03-28 22:07:09 +00:00
|
|
|
|
|
2013-01-16 01:36:02 +00:00
|
|
|
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using FizzWare.NBuilder;
|
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using Moq;
|
|
|
|
|
using NUnit.Framework;
|
2013-03-07 00:19:49 +00:00
|
|
|
|
using NzbDrone.Core.DecisionEngine.Specifications;
|
2013-01-16 01:36:02 +00:00
|
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
|
using NzbDrone.Core.Providers;
|
2013-02-19 02:19:38 +00:00
|
|
|
|
using NzbDrone.Core.DecisionEngine;
|
2013-03-07 01:51:47 +00:00
|
|
|
|
|
2013-01-16 01:36:02 +00:00
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
|
|
2013-02-19 02:19:38 +00:00
|
|
|
|
namespace NzbDrone.Core.Test.DecisionEngineTests
|
2013-01-16 01:36:02 +00:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2013-03-28 22:07:09 +00:00
|
|
|
|
|
2013-02-17 05:44:06 +00:00
|
|
|
|
public class LanguageSpecificationFixture : CoreTest
|
2013-01-16 01:36:02 +00:00
|
|
|
|
{
|
|
|
|
|
private EpisodeParseResult parseResult;
|
|
|
|
|
|
|
|
|
|
private void WithEnglishRelease()
|
|
|
|
|
{
|
|
|
|
|
parseResult = Builder<EpisodeParseResult>
|
|
|
|
|
.CreateNew()
|
|
|
|
|
.With(p => p.Language = LanguageType.English)
|
|
|
|
|
.Build();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void WithGermanRelease()
|
|
|
|
|
{
|
|
|
|
|
parseResult = Builder<EpisodeParseResult>
|
|
|
|
|
.CreateNew()
|
|
|
|
|
.With(p => p.Language = LanguageType.German)
|
|
|
|
|
.Build();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_return_true_if_language_is_english()
|
|
|
|
|
{
|
|
|
|
|
WithEnglishRelease();
|
|
|
|
|
|
|
|
|
|
Mocker.Resolve<LanguageSpecification>().IsSatisfiedBy(parseResult).Should().BeTrue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_return_false_if_language_is_german()
|
|
|
|
|
{
|
|
|
|
|
WithGermanRelease();
|
|
|
|
|
|
|
|
|
|
Mocker.Resolve<LanguageSpecification>().IsSatisfiedBy(parseResult).Should().BeFalse();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|