You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.7 KiB
65 lines
1.7 KiB
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Core.DecisionEngine.Specifications;
|
|
using NzbDrone.Core.Indexers;
|
|
using NzbDrone.Core.Parser.Model;
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
namespace NzbDrone.Core.Test.DecisionEngineTests
|
|
{
|
|
[TestFixture]
|
|
|
|
public class RawDiskSpecificationFixture : CoreTest<RawDiskSpecification>
|
|
{
|
|
private RemoteAlbum _remoteAlbum;
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
_remoteAlbum = new RemoteAlbum
|
|
{
|
|
Release = new ReleaseInfo() { DownloadProtocol = DownloadProtocol.Torrent }
|
|
};
|
|
}
|
|
|
|
private void WithContainer(string container)
|
|
{
|
|
_remoteAlbum.Release.Container = container;
|
|
}
|
|
|
|
[Test]
|
|
public void should_return_true_if_no_container_specified()
|
|
{
|
|
Subject.IsSatisfiedBy(_remoteAlbum, null).Accepted.Should().BeTrue();
|
|
}
|
|
|
|
[Test]
|
|
public void should_return_true_if_flac()
|
|
{
|
|
WithContainer("FLAC");
|
|
Subject.IsSatisfiedBy(_remoteAlbum, null).Accepted.Should().BeTrue();
|
|
}
|
|
|
|
[Test]
|
|
public void should_return_false_if_vob()
|
|
{
|
|
WithContainer("VOB");
|
|
Subject.IsSatisfiedBy(_remoteAlbum, null).Accepted.Should().BeFalse();
|
|
}
|
|
|
|
[Test]
|
|
public void should_return_false_if_iso()
|
|
{
|
|
WithContainer("ISO");
|
|
Subject.IsSatisfiedBy(_remoteAlbum, null).Accepted.Should().BeFalse();
|
|
}
|
|
|
|
[Test]
|
|
public void should_compare_case_insensitive()
|
|
{
|
|
WithContainer("vob");
|
|
Subject.IsSatisfiedBy(_remoteAlbum, null).Accepted.Should().BeFalse();
|
|
}
|
|
}
|
|
}
|