mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-19 21:46:50 -04:00
52 lines
1.7 KiB
C#
52 lines
1.7 KiB
C#
using System;
|
|
using System.Linq;
|
|
using FluentAssertions;
|
|
using Moq;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Common.Http;
|
|
using NzbDrone.Core.Indexers;
|
|
using NzbDrone.Core.Indexers.Fanzub;
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
namespace NzbDrone.Core.Test.IndexerTests.FanzubTests
|
|
{
|
|
[TestFixture]
|
|
public class FanzubFixture : CoreTest<Fanzub>
|
|
{
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
Subject.Definition = new IndexerDefinition()
|
|
{
|
|
Name = "Fanzub",
|
|
Settings = new FanzubSettings()
|
|
};
|
|
}
|
|
|
|
[Test]
|
|
public void should_parse_recent_feed_from_fanzub()
|
|
{
|
|
var recentFeed = ReadAllText(@"Files/Indexers/Fanzub/fanzub.xml");
|
|
|
|
Mocker.GetMock<IHttpClient>()
|
|
.Setup(o => o.Execute(It.Is<HttpRequest>(v => v.Method == HttpMethod.GET)))
|
|
.Returns<HttpRequest>(r => new HttpResponse(r, new HttpHeader(), recentFeed));
|
|
|
|
var releases = Subject.FetchRecent();
|
|
|
|
releases.Should().HaveCount(3);
|
|
|
|
var releaseInfo = releases.First();
|
|
|
|
releaseInfo.Title.Should().Be("[Vivid] Hanayamata - 10 [A33D6606]");
|
|
releaseInfo.DownloadProtocol.Should().Be(DownloadProtocol.Usenet);
|
|
releaseInfo.DownloadUrl.Should().Be("http://fanzub.com/nzb/296464/Vivid%20Hanayamata%20-%2010.nzb");
|
|
releaseInfo.InfoUrl.Should().BeNullOrEmpty();
|
|
releaseInfo.CommentUrl.Should().BeNullOrEmpty();
|
|
releaseInfo.Indexer.Should().Be(Subject.Definition.Name);
|
|
releaseInfo.PublishDate.Should().Be(DateTime.Parse("2014/09/13 12:56:53"));
|
|
releaseInfo.Size.Should().Be(556246858);
|
|
}
|
|
}
|
|
}
|