using System.Collections.Generic; using Moq; using NUnit.Framework; using NzbDrone.Core.Jobs; using NzbDrone.Core.Model.Notification; using NzbDrone.Core.Providers; using NzbDrone.Core.Test.Framework; using NzbDrone.Test.Common.AutoMoq; namespace NzbDrone.Core.Test.JobTests { [TestFixture] // ReSharper disable InconsistentNaming public class SeriesSearchJobTest : CoreTest { [Test] public void SeriesSearch_success() { var seasons = new List { 1, 2, 3, 4, 5 }; WithStrictMocker(); var notification = new ProgressNotification("Series Search"); Mocker.GetMock() .Setup(c => c.GetSeasons(1)).Returns(seasons); Mocker.GetMock() .Setup(c => c.IsIgnored(It.IsAny(), It.IsAny())).Returns(false); Mocker.GetMock() .Setup(c => c.Start(notification, 1, It.IsAny())).Verifiable(); //Act Mocker.Resolve().Start(notification, 1, 0); //Assert Mocker.VerifyAllMocks(); Mocker.GetMock().Verify(c => c.Start(notification, 1, It.IsAny()), Times.Exactly(seasons.Count)); } [Test] public void SeriesSearch_no_seasons() { var seasons = new List(); WithStrictMocker(); var notification = new ProgressNotification("Series Search"); Mocker.GetMock() .Setup(c => c.GetSeasons(1)).Returns(seasons); //Act Mocker.Resolve().Start(notification, 1, 0); //Assert Mocker.VerifyAllMocks(); Mocker.GetMock().Verify(c => c.Start(notification, 1, It.IsAny()), Times.Never()); } [Test] public void SeriesSearch_should_not_search_for_season_0() { Mocker.GetMock() .Setup(c => c.GetSeasons(It.IsAny())) .Returns(new List { 0, 1, 2 }); Mocker.Resolve().Start(MockNotification, 12, 0); Mocker.GetMock() .Verify(c => c.Start(It.IsAny(), It.IsAny(), 0), Times.Never()); } } }