Fixed: Parses size in Wombles Description field so min/maxsize checks works on Wombles feed.
This commit is contained in:
parent
21c901eab4
commit
3b57194d47
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,64 @@
|
||||||
|
using System;
|
||||||
|
using System.Linq;
|
||||||
|
using FluentAssertions;
|
||||||
|
using Moq;
|
||||||
|
using NLog;
|
||||||
|
using NUnit.Framework;
|
||||||
|
using NzbDrone.Common.Cache;
|
||||||
|
using NzbDrone.Common.Http;
|
||||||
|
using NzbDrone.Core.Indexers;
|
||||||
|
using NzbDrone.Core.Indexers.TorrentRss;
|
||||||
|
using NzbDrone.Core.Indexers.Wombles;
|
||||||
|
using NzbDrone.Core.Parser.Model;
|
||||||
|
using NzbDrone.Core.Test.Framework;
|
||||||
|
using NzbDrone.Core.ThingiProvider;
|
||||||
|
using NzbDrone.Test.Common;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Test.IndexerTests.WomblesTests
|
||||||
|
{
|
||||||
|
|
||||||
|
[TestFixture]
|
||||||
|
public class TorrentRssIndexerFixture : CoreTest<Wombles>
|
||||||
|
{
|
||||||
|
[SetUp]
|
||||||
|
public void Setup()
|
||||||
|
{
|
||||||
|
|
||||||
|
Subject.Definition = new IndexerDefinition()
|
||||||
|
{
|
||||||
|
Name = "Wombles",
|
||||||
|
Settings = new NullConfig(),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private void GivenRecentFeedResponse(string rssXmlFile)
|
||||||
|
{
|
||||||
|
var recentFeed = ReadAllText(@"Files/Indexers/" + rssXmlFile);
|
||||||
|
|
||||||
|
Mocker.GetMock<IHttpClient>()
|
||||||
|
.Setup(o => o.Execute(It.IsAny<HttpRequest>()))
|
||||||
|
.Returns<HttpRequest>(r => new HttpResponse(r, new HttpHeader(), recentFeed));
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void should_parse_recent_feed_from_wombles()
|
||||||
|
{
|
||||||
|
GivenRecentFeedResponse("Wombles/wombles.xml");
|
||||||
|
|
||||||
|
var releases = Subject.FetchRecent();
|
||||||
|
|
||||||
|
releases.Should().HaveCount(5);
|
||||||
|
|
||||||
|
var releaseInfo = releases.First();
|
||||||
|
|
||||||
|
releaseInfo.Title.Should().Be("One.Child.S01E01.720p.HDTV.x264-TLA");
|
||||||
|
releaseInfo.DownloadProtocol.Should().Be(DownloadProtocol.Usenet);
|
||||||
|
releaseInfo.DownloadUrl.Should().Be("http://indexer.local/nzb/bb4/One.Child.S01E01.720p.HDTV.x264-TLA.nzb");
|
||||||
|
releaseInfo.InfoUrl.Should().BeNullOrEmpty();
|
||||||
|
releaseInfo.CommentUrl.Should().BeNullOrEmpty();
|
||||||
|
releaseInfo.Indexer.Should().Be(Subject.Definition.Name);
|
||||||
|
releaseInfo.PublishDate.Should().Be(DateTime.Parse("2016-02-17 23:03:52 +0000").ToUniversalTime());
|
||||||
|
releaseInfo.Size.Should().Be(956*1024*1024);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -245,6 +245,7 @@
|
||||||
<Compile Include="IndexerTests\TorrentleechTests\TorrentleechFixture.cs" />
|
<Compile Include="IndexerTests\TorrentleechTests\TorrentleechFixture.cs" />
|
||||||
<Compile Include="IndexerTests\TorrentRssIndexerTests\TorrentRssIndexerFixture.cs" />
|
<Compile Include="IndexerTests\TorrentRssIndexerTests\TorrentRssIndexerFixture.cs" />
|
||||||
<Compile Include="IndexerTests\TorrentRssIndexerTests\TestTorrentRssIndexer.cs" />
|
<Compile Include="IndexerTests\TorrentRssIndexerTests\TestTorrentRssIndexer.cs" />
|
||||||
|
<Compile Include="IndexerTests\WomblesTests\WomblesFixture.cs" />
|
||||||
<Compile Include="IndexerTests\XElementExtensionsFixture.cs" />
|
<Compile Include="IndexerTests\XElementExtensionsFixture.cs" />
|
||||||
<Compile Include="InstrumentationTests\DatabaseTargetFixture.cs" />
|
<Compile Include="InstrumentationTests\DatabaseTargetFixture.cs" />
|
||||||
<Compile Include="JobTests\JobRepositoryFixture.cs" />
|
<Compile Include="JobTests\JobRepositoryFixture.cs" />
|
||||||
|
|
|
@ -5,10 +5,9 @@ namespace NzbDrone.Core.Indexers.Wombles
|
||||||
{
|
{
|
||||||
public class WomblesRssParser : RssParser
|
public class WomblesRssParser : RssParser
|
||||||
{
|
{
|
||||||
protected override long GetSize(XElement item)
|
public WomblesRssParser()
|
||||||
{
|
{
|
||||||
// TODO: this can be found in the description element.
|
ParseSizeInDescription = true;
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override DateTime GetPublishDate(XElement item)
|
protected override DateTime GetPublishDate(XElement item)
|
||||||
|
|
Loading…
Reference in New Issue