using System.Collections.Generic; using FluentAssertions; using Moq; using NUnit.Framework; using NzbDrone.Core.IndexerSearch; using NzbDrone.Core.Tv; using NzbDrone.Test.Common; namespace NzbDrone.Core.Test.IndexerSearchTests.PartialSeasonSearchTests { [TestFixture] public class PartialSeasonSearchFixture : IndexerSearchTestBase { [Test] public void should_fetch_results_from_indexers() { WithValidIndexers(); Subject.PerformSearch(_series, new List { _episode }, notification) .Should() .HaveCount(20); } [Test] public void should_log_error_when_fetching_from_indexer_fails() { WithBrokenIndexers(); Subject.PerformSearch(_series, new List { _episode }, notification) .Should() .HaveCount(0); ExceptionVerification.ExpectedErrors(4); } [Test] public void should_hit_each_indexer_once_for_each_prefix() { WithValidIndexers(); Subject.PerformSearch(_series, new List { _episode }, notification) .Should() .HaveCount(20); _indexer1.Verify(v => v.FetchPartialSeason(_series.Title, 1, 0), Times.Once()); _indexer1.Verify(v => v.FetchPartialSeason(_series.Title, 1, 1), Times.Once()); _indexer2.Verify(v => v.FetchPartialSeason(_series.Title, 1, 0), Times.Once()); _indexer2.Verify(v => v.FetchPartialSeason(_series.Title, 1, 1), Times.Once()); } } }