using System.IO; using System.Net; using AutoMoq; using FizzWare.NBuilder; using Moq; using NUnit.Framework; using NzbDrone.Core.Model.Notification; using NzbDrone.Core.Providers; using NzbDrone.Core.Providers.Core; using NzbDrone.Core.Providers.Jobs; using NzbDrone.Core.Repository; using NzbDrone.Core.Test.Framework; namespace NzbDrone.Core.Test.JobTests { [TestFixture] // ReSharper disable InconsistentNaming public class BannerDownloadJobTest : TestBase { [Test] public void BannerDownload_all() { //Setup var fakeSeries = Builder.CreateListOfSize(10) .Build(); var mocker = new AutoMoqer(MockBehavior.Strict); mocker.Resolve(); var notification = new ProgressNotification("Banner Download"); mocker.GetMock() .Setup(c => c.GetAllSeries()) .Returns(fakeSeries); mocker.GetMock() .Setup(s => s.DownloadFile(It.IsAny(), It.IsAny())); mocker.GetMock() .Setup(S => S.CreateDirectory(It.IsAny())) .Returns(""); //Act mocker.Resolve().Start(notification, 0, 0); //Assert mocker.VerifyAllMocks(); mocker.GetMock().Verify(s => s.DownloadFile(It.IsAny(), It.IsAny()), Times.Exactly(fakeSeries.Count)); } [Test] public void BannerDownload_some_null_BannerUrl() { //Setup var fakeSeries = Builder.CreateListOfSize(10) .Random(2) .With(s => s.BannerUrl = null) .Build(); var mocker = new AutoMoqer(MockBehavior.Strict); mocker.Resolve(); var notification = new ProgressNotification("Banner Download"); mocker.GetMock() .Setup(c => c.GetAllSeries()) .Returns(fakeSeries); mocker.GetMock() .Setup(s => s.DownloadFile(It.IsAny(), It.IsAny())); mocker.GetMock() .Setup(S => S.CreateDirectory(It.IsAny())) .Returns(""); //Act mocker.Resolve().Start(notification, 0, 0); //Assert mocker.VerifyAllMocks(); mocker.GetMock().Verify(s => s.DownloadFile(It.IsAny(), It.IsAny()), Times.Exactly(8)); } [Test] public void BannerDownload_some_failed_download() { //Setup var fakeSeries = Builder.CreateListOfSize(10) .Build(); var path = Path.Combine(new EnviromentProvider().AppPath, "Content", "Images", "Banners"); var mocker = new AutoMoqer(MockBehavior.Strict); mocker.Resolve(); var notification = new ProgressNotification("Banner Download"); mocker.GetMock() .Setup(c => c.GetAllSeries()) .Returns(fakeSeries); mocker.GetMock() .Setup(s => s.DownloadFile(It.IsAny(), Path.Combine(path, "1.jpg"))) .Throws(new WebException()); mocker.GetMock() .Setup(s => s.DownloadFile(It.IsAny(), Path.Combine(path, "2.jpg"))); mocker.GetMock() .Setup(s => s.DownloadFile(It.IsAny(), Path.Combine(path, "3.jpg"))) .Throws(new WebException()); mocker.GetMock() .Setup(s => s.DownloadFile(It.IsAny(), Path.Combine(path, "4.jpg"))); mocker.GetMock() .Setup(s => s.DownloadFile(It.IsAny(), Path.Combine(path, "5.jpg"))) .Throws(new WebException()); mocker.GetMock() .Setup(s => s.DownloadFile(It.IsAny(), Path.Combine(path, "6.jpg"))); mocker.GetMock() .Setup(s => s.DownloadFile(It.IsAny(), Path.Combine(path, "7.jpg"))) .Throws(new WebException()); mocker.GetMock() .Setup(s => s.DownloadFile(It.IsAny(), Path.Combine(path, "8.jpg"))); mocker.GetMock() .Setup(s => s.DownloadFile(It.IsAny(), Path.Combine(path, "9.jpg"))) .Throws(new WebException()); mocker.GetMock() .Setup(s => s.DownloadFile(It.IsAny(), Path.Combine(path, "10.jpg"))); mocker.GetMock() .Setup(S => S.CreateDirectory(It.IsAny())) .Returns(""); //Act mocker.Resolve().Start(notification, 0, 0); //Assert mocker.VerifyAllMocks(); mocker.GetMock().Verify(s => s.DownloadFile(It.IsAny(), It.IsAny()), Times.Exactly(fakeSeries.Count)); } [Test] public void BannerDownload_all_failed_download() { //Setup var fakeSeries = Builder.CreateListOfSize(10) .Build(); var mocker = new AutoMoqer(MockBehavior.Strict); mocker.Resolve(); var notification = new ProgressNotification("Banner Download"); mocker.GetMock() .Setup(c => c.GetAllSeries()) .Returns(fakeSeries); mocker.GetMock() .Setup(s => s.DownloadFile(It.IsAny(), It.IsAny())) .Throws(new WebException()); mocker.GetMock() .Setup(S => S.CreateDirectory(It.IsAny())) .Returns(""); //Act mocker.Resolve().Start(notification, 0, 0); //Assert mocker.VerifyAllMocks(); mocker.GetMock().Verify(s => s.DownloadFile(It.IsAny(), It.IsAny()), Times.Exactly(fakeSeries.Count)); } [Test] public void BannerDownload_single_banner() { //Setup var fakeSeries = Builder.CreateNew() .With(s => s.SeriesId = 1) .Build(); var mocker = new AutoMoqer(MockBehavior.Strict); mocker.Resolve(); var notification = new ProgressNotification("Banner Download"); mocker.GetMock() .Setup(c => c.GetSeries(1)) .Returns(fakeSeries); mocker.GetMock() .Setup(s => s.DownloadFile(It.IsAny(), It.IsAny())) .Throws(new WebException()); mocker.GetMock() .Setup(S => S.CreateDirectory(It.IsAny())) .Returns(""); //Act mocker.Resolve().Start(notification, 1, 0); //Assert mocker.VerifyAllMocks(); mocker.GetMock().Verify(s => s.DownloadFile(It.IsAny(), It.IsAny()), Times.Once()); } [Test] public void Download_Banner() { //Setup var fakeSeries = Builder.CreateNew() .With(s => s.SeriesId = 1) .Build(); var mocker = new AutoMoqer(MockBehavior.Strict); var notification = new ProgressNotification("Banner Download"); mocker.GetMock() .Setup(s => s.DownloadFile(It.IsAny(), It.IsAny())) .Throws(new WebException()); //Act mocker.Resolve().DownloadBanner(notification, fakeSeries); //Assert mocker.VerifyAllMocks(); mocker.GetMock().Verify(s => s.DownloadFile(It.IsAny(), It.IsAny()), Times.Once()); } } }