using System.Collections.Generic; using System.Linq; using FizzWare.NBuilder; using FluentAssertions; using Moq; using NUnit.Framework; using NzbDrone.Core.Books; using NzbDrone.Core.CustomFormats; using NzbDrone.Core.DecisionEngine.Specifications; using NzbDrone.Core.Download.TrackedDownloads; using NzbDrone.Core.Parser.Model; using NzbDrone.Core.Profiles.Qualities; using NzbDrone.Core.Qualities; using NzbDrone.Core.Queue; using NzbDrone.Core.Test.CustomFormats; using NzbDrone.Core.Test.Framework; namespace NzbDrone.Core.Test.DecisionEngineTests { [TestFixture] public class QueueSpecificationFixture : CoreTest { private Author _author; private Book _book; private RemoteBook _remoteBook; private Author _otherAuthor; private Book _otherBook; private ReleaseInfo _releaseInfo; [SetUp] public void Setup() { Mocker.Resolve(); CustomFormatsTestHelpers.GivenCustomFormats(); _author = Builder.CreateNew() .With(e => e.QualityProfile = new QualityProfile { UpgradeAllowed = true, Items = Qualities.QualityFixture.GetDefaultQualities(), FormatItems = CustomFormatsTestHelpers.GetSampleFormatItems(), MinFormatScore = 0 }) .Build(); _book = Builder.CreateNew() .With(e => e.AuthorId = _author.Id) .Build(); _otherAuthor = Builder.CreateNew() .With(s => s.Id = 2) .Build(); _otherBook = Builder.CreateNew() .With(e => e.AuthorId = _otherAuthor.Id) .With(e => e.Id = 2) .Build(); _releaseInfo = Builder.CreateNew() .Build(); _remoteBook = Builder.CreateNew() .With(r => r.Author = _author) .With(r => r.Books = new List { _book }) .With(r => r.ParsedBookInfo = new ParsedBookInfo { Quality = new QualityModel(Quality.MP3) }) .With(r => r.CustomFormats = new List()) .Build(); Mocker.GetMock() .Setup(x => x.ParseCustomFormat(It.IsAny(), It.IsAny())) .Returns(new List()); } private void GivenEmptyQueue() { Mocker.GetMock() .Setup(s => s.GetQueue()) .Returns(new List()); } private void GivenQueueFormats(List formats) { Mocker.GetMock() .Setup(x => x.ParseCustomFormat(It.IsAny(), It.IsAny())) .Returns(formats); } private void GivenQueue(IEnumerable remoteBooks, TrackedDownloadState trackedDownloadState = TrackedDownloadState.Downloading) { var queue = remoteBooks.Select(remoteBook => new Queue.Queue { RemoteBook = remoteBook, TrackedDownloadState = trackedDownloadState }); Mocker.GetMock() .Setup(s => s.GetQueue()) .Returns(queue.ToList()); } [Test] public void should_return_true_when_queue_is_empty() { GivenEmptyQueue(); Subject.IsSatisfiedBy(_remoteBook, null).Accepted.Should().BeTrue(); } [Test] public void should_return_true_when_author_doesnt_match() { var remoteBook = Builder.CreateNew() .With(r => r.Author = _otherAuthor) .With(r => r.Books = new List { _book }) .With(r => r.Release = _releaseInfo) .With(r => r.CustomFormats = new List()) .Build(); GivenQueue(new List { remoteBook }); Subject.IsSatisfiedBy(_remoteBook, null).Accepted.Should().BeTrue(); } [Test] public void should_return_false_if_everything_is_the_same() { _author.QualityProfile.Value.Cutoff = Quality.FLAC.Id; var remoteBook = Builder.CreateNew() .With(r => r.Author = _author) .With(r => r.Books = new List { _book }) .With(r => r.ParsedBookInfo = new ParsedBookInfo { Quality = new QualityModel(Quality.MP3) }) .With(r => r.CustomFormats = new List()) .With(r => r.Release = _releaseInfo) .Build(); GivenQueue(new List { remoteBook }); Subject.IsSatisfiedBy(_remoteBook, null).Accepted.Should().BeFalse(); } [Test] public void should_return_true_when_quality_in_queue_is_lower() { _author.QualityProfile.Value.Cutoff = Quality.MP3.Id; var remoteBook = Builder.CreateNew() .With(r => r.Author = _author) .With(r => r.Books = new List { _book }) .With(r => r.ParsedBookInfo = new ParsedBookInfo { Quality = new QualityModel(Quality.AZW3) }) .With(r => r.Release = _releaseInfo) .With(r => r.CustomFormats = new List()) .Build(); GivenQueue(new List { remoteBook }); Subject.IsSatisfiedBy(_remoteBook, null).Accepted.Should().BeTrue(); } [Test] public void should_return_true_when_book_doesnt_match() { var remoteBook = Builder.CreateNew() .With(r => r.Author = _author) .With(r => r.Books = new List { _otherBook }) .With(r => r.ParsedBookInfo = new ParsedBookInfo { Quality = new QualityModel(Quality.MP3) }) .With(r => r.Release = _releaseInfo) .With(r => r.CustomFormats = new List()) .Build(); GivenQueue(new List { remoteBook }); Subject.IsSatisfiedBy(_remoteBook, null).Accepted.Should().BeTrue(); } [Test] public void should_return_true_when_qualities_are_the_same_with_higher_custom_format_score() { _remoteBook.CustomFormats = new List { new CustomFormat("My Format", new ReleaseTitleSpecification { Value = "MP3" }) { Id = 1 } }; var lowFormat = new List { new CustomFormat("Bad Format", new ReleaseTitleSpecification { Value = "MP3" }) { Id = 2 } }; CustomFormatsTestHelpers.GivenCustomFormats(_remoteBook.CustomFormats.First(), lowFormat.First()); _author.QualityProfile.Value.FormatItems = CustomFormatsTestHelpers.GetSampleFormatItems("My Format"); GivenQueueFormats(lowFormat); var remoteBook = Builder.CreateNew() .With(r => r.Author = _author) .With(r => r.Books = new List { _book }) .With(r => r.ParsedBookInfo = new ParsedBookInfo { Quality = new QualityModel(Quality.MP3) }) .With(r => r.Release = _releaseInfo) .With(r => r.CustomFormats = lowFormat) .Build(); GivenQueue(new List { remoteBook }); Subject.IsSatisfiedBy(_remoteBook, null).Accepted.Should().BeTrue(); } [Test] public void should_return_false_when_qualities_are_the_same() { var remoteBook = Builder.CreateNew() .With(r => r.Author = _author) .With(r => r.Books = new List { _book }) .With(r => r.ParsedBookInfo = new ParsedBookInfo { Quality = new QualityModel(Quality.MP3) }) .With(r => r.Release = _releaseInfo) .With(r => r.CustomFormats = new List()) .Build(); GivenQueue(new List { remoteBook }); Subject.IsSatisfiedBy(_remoteBook, null).Accepted.Should().BeFalse(); } [Test] public void should_return_false_when_quality_in_queue_is_better() { _author.QualityProfile.Value.Cutoff = Quality.FLAC.Id; var remoteBook = Builder.CreateNew() .With(r => r.Author = _author) .With(r => r.Books = new List { _book }) .With(r => r.ParsedBookInfo = new ParsedBookInfo { Quality = new QualityModel(Quality.MP3) }) .With(r => r.Release = _releaseInfo) .With(r => r.CustomFormats = new List()) .Build(); GivenQueue(new List { remoteBook }); Subject.IsSatisfiedBy(_remoteBook, null).Accepted.Should().BeFalse(); } [Test] public void should_return_false_if_matching_multi_book_is_in_queue() { var remoteBook = Builder.CreateNew() .With(r => r.Author = _author) .With(r => r.Books = new List { _book, _otherBook }) .With(r => r.ParsedBookInfo = new ParsedBookInfo { Quality = new QualityModel(Quality.MP3) }) .With(r => r.Release = _releaseInfo) .With(r => r.CustomFormats = new List()) .Build(); GivenQueue(new List { remoteBook }); Subject.IsSatisfiedBy(_remoteBook, null).Accepted.Should().BeFalse(); } [Test] public void should_return_false_if_multi_book_has_one_book_in_queue() { var remoteBook = Builder.CreateNew() .With(r => r.Author = _author) .With(r => r.Books = new List { _book }) .With(r => r.ParsedBookInfo = new ParsedBookInfo { Quality = new QualityModel(Quality.MP3) }) .With(r => r.Release = _releaseInfo) .With(r => r.CustomFormats = new List()) .Build(); _remoteBook.Books.Add(_otherBook); GivenQueue(new List { remoteBook }); Subject.IsSatisfiedBy(_remoteBook, null).Accepted.Should().BeFalse(); } [Test] public void should_return_false_if_multi_part_book_is_already_in_queue() { var remoteBook = Builder.CreateNew() .With(r => r.Author = _author) .With(r => r.Books = new List { _book, _otherBook }) .With(r => r.ParsedBookInfo = new ParsedBookInfo { Quality = new QualityModel(Quality.MP3) }) .With(r => r.Release = _releaseInfo) .With(r => r.CustomFormats = new List()) .Build(); _remoteBook.Books.Add(_otherBook); GivenQueue(new List { remoteBook }); Subject.IsSatisfiedBy(_remoteBook, null).Accepted.Should().BeFalse(); } [Test] public void should_return_false_if_multi_part_book_has_two_books_in_queue() { var remoteBooks = Builder.CreateListOfSize(2) .All() .With(r => r.Author = _author) .With(r => r.CustomFormats = new List()) .With(r => r.ParsedBookInfo = new ParsedBookInfo { Quality = new QualityModel(Quality.MP3) }) .With(r => r.Release = _releaseInfo) .TheFirst(1) .With(r => r.Books = new List { _book }) .TheNext(1) .With(r => r.Books = new List { _otherBook }) .Build(); _remoteBook.Books.Add(_otherBook); GivenQueue(remoteBooks); Subject.IsSatisfiedBy(_remoteBook, null).Accepted.Should().BeFalse(); } [Test] public void should_return_false_when_quality_is_better_and_upgrade_allowed_is_false_for_quality_profile() { _author.QualityProfile.Value.Cutoff = Quality.FLAC.Id; _author.QualityProfile.Value.UpgradeAllowed = false; var remoteBook = Builder.CreateNew() .With(r => r.Author = _author) .With(r => r.Books = new List { _book }) .With(r => r.ParsedBookInfo = new ParsedBookInfo { Quality = new QualityModel(Quality.FLAC) }) .With(r => r.Release = _releaseInfo) .With(r => r.CustomFormats = new List()) .Build(); GivenQueue(new List { remoteBook }); Subject.IsSatisfiedBy(_remoteBook, null).Accepted.Should().BeFalse(); } [Test] public void should_return_true_if_everything_is_the_same_for_failed_pending() { _author.QualityProfile.Value.Cutoff = Quality.FLAC.Id; var remoteBook = Builder.CreateNew() .With(r => r.Author = _author) .With(r => r.Books = new List { _book }) .With(r => r.ParsedBookInfo = new ParsedBookInfo { Quality = new QualityModel(Quality.MP3) }) .With(r => r.Release = _releaseInfo) .With(r => r.CustomFormats = new List()) .Build(); GivenQueue(new List { remoteBook }, TrackedDownloadState.DownloadFailedPending); Subject.IsSatisfiedBy(_remoteBook, null).Accepted.Should().BeTrue(); } } }