using System; using System.Linq; using System.Text; using FluentAssertions; using Moq; using NUnit.Framework; using NzbDrone.Common.Http; using NzbDrone.Common.Serializer; using NzbDrone.Core.Indexers; using NzbDrone.Core.Indexers.HDBits; using NzbDrone.Core.Parser.Model; using NzbDrone.Core.Test.Framework; using NzbDrone.Test.Common; namespace NzbDrone.Core.Test.IndexerTests.HDBitsTests { [TestFixture] public class HDBitsFixture : CoreTest { [SetUp] public void Setup() { Subject.Definition = new IndexerDefinition() { Name = "HdBits", Settings = new HDBitsSettings() { ApiKey = "fakekey" } }; } [Test] public void should_parse_recent_feed_from_HDBits() { var responseJson = ReadAllText(@"Files/Indexers/HdBits/RecentFeed.json"); Mocker.GetMock() .Setup(o => o.Execute(It.Is(v => v.Method == HttpMethod.POST))) .Returns(r => new HttpResponse(r, new HttpHeader(), responseJson)); var torrents = Subject.FetchRecent(); torrents.Should().HaveCount(2); torrents.First().Should().BeOfType(); var first = torrents.First() as TorrentInfo; first.Guid.Should().Be("HDBits-257142"); first.Title.Should().Be("Supernatural S10E17 1080p WEB-DL DD5.1 H.264-ECI"); first.DownloadProtocol.Should().Be(DownloadProtocol.Torrent); first.DownloadUrl.Should().Be("https://hdbits.org/download.php?id=257142&passkey=fakekey"); first.InfoUrl.Should().Be("https://hdbits.org/details.php?id=257142"); first.PublishDate.Should().Be(DateTime.Parse("2015-04-04T20:30:46+0000").ToUniversalTime()); first.Size.Should().Be(1718009717); first.InfoHash.Should().Be("EABC50AEF9F53CEDED84ADF14144D3368E586F3A"); first.MagnetUrl.Should().BeNullOrEmpty(); first.Peers.Should().Be(47); first.Seeders.Should().Be(46); } [Test] public void should_warn_on_wrong_passkey() { var responseJson = new { status = 5, message = "Invalid authentication credentials" }.ToJson(); Mocker.GetMock() .Setup(v => v.Execute(It.IsAny())) .Returns(r => new HttpResponse(r, new HttpHeader(), Encoding.UTF8.GetBytes(responseJson))); var torrents = Subject.FetchRecent(); torrents.Should().BeEmpty(); ExceptionVerification.ExpectedWarns(1); } } }