using System.IO; using System.Net; using FluentAssertions; using Moq; using NUnit.Framework; using NzbDrone.Common; using NzbDrone.Core.Configuration; using NzbDrone.Core.Download.Clients; using NzbDrone.Core.Parser.Model; using NzbDrone.Core.Test.Framework; using NzbDrone.Test.Common; namespace NzbDrone.Core.Test.Download.DownloadClientTests { [TestFixture] public class PneumaticProviderFixture : CoreTest { private const string _nzbUrl = "http://www.nzbs.com/url"; private const string _title = "30.Rock.S01E05.hdtv.xvid-LoL"; private const string _pneumaticFolder = @"d:\nzb\pneumatic\"; private const string _sabDrop = @"d:\unsorted tv\"; private string _nzbPath; private RemoteEpisode _remoteEpisode; [SetUp] public void Setup() { _nzbPath = _pneumaticFolder + _title + ".nzb"; Mocker.GetMock().SetupGet(c => c.PneumaticFolder).Returns(_pneumaticFolder); Mocker.GetMock().SetupGet(c => c.DownloadedEpisodesFolder).Returns(_sabDrop); _remoteEpisode = new RemoteEpisode(); _remoteEpisode.Report = new ReportInfo(); _remoteEpisode.Report.Title = _title; _remoteEpisode.Report.NzbUrl = _nzbUrl; _remoteEpisode.ParsedEpisodeInfo = new ParsedEpisodeInfo(); _remoteEpisode.ParsedEpisodeInfo.FullSeason = false; } private void WithExistingFile() { Mocker.GetMock().Setup(c => c.FileExists(_nzbPath)).Returns(true); } private void WithFailedDownload() { Mocker.GetMock().Setup(c => c.DownloadFile(It.IsAny(), It.IsAny())).Throws(new WebException()); } [Test] public void should_download_file_if_it_doesnt_exist() { Subject.DownloadNzb(_remoteEpisode).Should().BeTrue(); Mocker.GetMock().Verify(c => c.DownloadFile(_nzbUrl, _nzbPath),Times.Once()); } [Test] public void should_not_download_file_if_it_doesn_exist() { WithExistingFile(); Subject.DownloadNzb(_remoteEpisode).Should().BeTrue(); Mocker.GetMock().Verify(c => c.DownloadFile(It.IsAny(), It.IsAny()), Times.Never()); } [Test] public void should_return_false_on_failed_download() { WithFailedDownload(); Subject.DownloadNzb(_remoteEpisode).Should().BeFalse(); ExceptionVerification.ExpectedWarns(1); } [Test] public void should_skip_if_full_season_download() { _remoteEpisode.Report.Title = "30 Rock - Season 1"; _remoteEpisode.ParsedEpisodeInfo.FullSeason = true; Mocker.Resolve().DownloadNzb(_remoteEpisode).Should().BeFalse(); } [Test] public void should_replace_illegal_characters_in_title() { var illegalTitle = "Saturday Night Live - S38E08 - Jeremy Renner/Maroon 5 [SDTV]"; var expectedFilename = Path.Combine(_pneumaticFolder, "Saturday Night Live - S38E08 - Jeremy Renner+Maroon 5 [SDTV].nzb"); _remoteEpisode.Report.Title = illegalTitle; Subject.DownloadNzb(_remoteEpisode).Should().BeTrue(); Mocker.GetMock().Verify(c => c.DownloadFile(It.IsAny(), expectedFilename), Times.Once()); } } }