2012-11-19 02:17:00 +00:00
|
|
|
using System.IO;
|
2012-08-30 00:20:48 +00:00
|
|
|
using System.Net;
|
|
|
|
using FluentAssertions;
|
|
|
|
using Moq;
|
|
|
|
using NUnit.Framework;
|
|
|
|
using NzbDrone.Common;
|
2013-02-24 06:48:52 +00:00
|
|
|
using NzbDrone.Core.Configuration;
|
2013-03-05 05:33:34 +00:00
|
|
|
using NzbDrone.Core.Download.Clients;
|
2012-08-30 00:20:48 +00:00
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
using NzbDrone.Test.Common;
|
|
|
|
|
2013-04-01 06:22:16 +00:00
|
|
|
namespace NzbDrone.Core.Test.Download.DownloadClientTests
|
2012-08-30 00:20:48 +00:00
|
|
|
{
|
|
|
|
[TestFixture]
|
2013-02-17 05:44:06 +00:00
|
|
|
public class PneumaticProviderFixture : CoreTest
|
2012-08-30 00:20:48 +00:00
|
|
|
{
|
|
|
|
private const string nzbUrl = "http://www.nzbs.com/url";
|
2012-08-30 15:33:09 +00:00
|
|
|
private const string title = "30.Rock.S01E05.hdtv.xvid-LoL";
|
2012-08-30 00:20:48 +00:00
|
|
|
private const string pneumaticFolder = @"d:\nzb\pneumatic\";
|
2012-08-30 15:33:09 +00:00
|
|
|
private const string sabDrop = @"d:\unsorted tv\";
|
|
|
|
private string nzbPath;
|
2012-08-30 00:20:48 +00:00
|
|
|
|
|
|
|
[SetUp]
|
|
|
|
public void Setup()
|
|
|
|
{
|
2012-08-30 15:33:09 +00:00
|
|
|
nzbPath = pneumaticFolder + title + ".nzb";
|
|
|
|
|
2013-05-30 15:29:43 +00:00
|
|
|
Mocker.GetMock<IConfigService>().SetupGet(c => c.PneumaticFolder).Returns(pneumaticFolder);
|
2013-05-15 02:57:57 +00:00
|
|
|
Mocker.GetMock<IConfigService>().SetupGet(c => c.DownloadedEpisodesFolder).Returns(sabDrop);
|
2012-08-30 00:20:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void WithExistingFile()
|
|
|
|
{
|
2013-05-10 23:53:50 +00:00
|
|
|
Mocker.GetMock<IDiskProvider>().Setup(c => c.FileExists(nzbPath)).Returns(true);
|
2012-08-30 00:20:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void WithFailedDownload()
|
|
|
|
{
|
2013-04-10 23:41:45 +00:00
|
|
|
Mocker.GetMock<IHttpProvider>().Setup(c => c.DownloadFile(It.IsAny<string>(), It.IsAny<string>())).Throws(new WebException());
|
2012-08-30 00:20:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void should_download_file_if_it_doesnt_exist()
|
|
|
|
{
|
2013-04-15 01:41:39 +00:00
|
|
|
Mocker.Resolve<PneumaticClient>().DownloadNzb(nzbUrl, title, false).Should().BeTrue();
|
2012-08-30 00:20:48 +00:00
|
|
|
|
2013-04-10 23:41:45 +00:00
|
|
|
Mocker.GetMock<IHttpProvider>().Verify(c => c.DownloadFile(nzbUrl, nzbPath),Times.Once());
|
2012-08-30 00:20:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void should_not_download_file_if_it_doesn_exist()
|
|
|
|
{
|
|
|
|
WithExistingFile();
|
|
|
|
|
2013-04-15 01:41:39 +00:00
|
|
|
Mocker.Resolve<PneumaticClient>().DownloadNzb(nzbUrl, title, false).Should().BeTrue();
|
2012-08-30 00:20:48 +00:00
|
|
|
|
2013-04-10 23:41:45 +00:00
|
|
|
Mocker.GetMock<IHttpProvider>().Verify(c => c.DownloadFile(It.IsAny<string>(), It.IsAny<string>()), Times.Never());
|
2012-08-30 00:20:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void should_return_false_on_failed_download()
|
|
|
|
{
|
|
|
|
WithFailedDownload();
|
|
|
|
|
2013-04-15 01:41:39 +00:00
|
|
|
Mocker.Resolve<PneumaticClient>().DownloadNzb(nzbUrl, title, false).Should().BeFalse();
|
2012-08-30 00:20:48 +00:00
|
|
|
|
|
|
|
ExceptionVerification.ExpectedWarns(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void should_skip_if_full_season_download()
|
|
|
|
{
|
2013-04-15 01:41:39 +00:00
|
|
|
Mocker.Resolve<PneumaticClient>().DownloadNzb(nzbUrl, "30 Rock - Season 1", false).Should().BeFalse();
|
2012-08-30 00:20:48 +00:00
|
|
|
}
|
2012-11-19 02:17:00 +00:00
|
|
|
|
|
|
|
[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");
|
|
|
|
|
2013-04-15 01:41:39 +00:00
|
|
|
Mocker.Resolve<PneumaticClient>().DownloadNzb(nzbUrl, illegalTitle, false).Should().BeTrue();
|
2012-11-19 02:17:00 +00:00
|
|
|
|
2013-04-10 23:41:45 +00:00
|
|
|
Mocker.GetMock<IHttpProvider>().Verify(c => c.DownloadFile(It.IsAny<string>(), expectedFilename), Times.Once());
|
2012-11-19 02:17:00 +00:00
|
|
|
}
|
2012-08-30 00:20:48 +00:00
|
|
|
}
|
|
|
|
}
|