diff --git a/src/NzbDrone.Core.Test/Files/Indexers/TorrentRss/EvolutionWorld.xml b/src/NzbDrone.Core.Test/Files/Indexers/TorrentRss/EvolutionWorld.xml
new file mode 100644
index 000000000..48c5b651b
--- /dev/null
+++ b/src/NzbDrone.Core.Test/Files/Indexers/TorrentRss/EvolutionWorld.xml
@@ -0,0 +1,30 @@
+
+
+
+ Evolution World
+ Advanced RSS Feed for xbtitFM by Petr1fied
+ http://ew.pw
+ Tue, 15 Aug 2017 00:00:00 +0000
+ (c) 2017 Evolution World
+
+
+
+ TVShow Bluray 720p] Fargo S01 Complete Season 1 720p BRRip DD5.1 x264-PSYPHER [SEEDERS (3)/LEECHERS (0)]]]>
+ Fargo S01 Complete Season 1 720p BRRip DD5.1 x264-PSYPHER
Plot:
Various chronicles of deception, intrigue and murder in and around frozen Minnesota.
Note::- Encode is tested and its perfect, no sync issue there in any episode. All episodes comes with AC3 Audio for better audio and video plaback and English Subs are muxed in video .
TECHNiCAL Information:
RUNTIME..................: 1 hr x 10 Total SIZE...............: 9.75 GiB Total Episodes...........: 10 VIDEO CODEC..............: x264 2nd Pass (High,L4.1) RESOLUTION...............: 1280x720 BITRATE (Video)..........: 2100 Kbps - 2400 kbps Aspect Ratio.............: 16:9 Video Container..........: MKV FRAMERATE................: 23.967 fps AUDIO....................: English AC3 6 Channel 384 kbps SUBTITLES................: English, English (SDH) CHAPTERS.................: Yes SOURCE...................: DON (Thanks !)
GENRE...................: Crime | Drama | Thriller RATING..................: 9.1/10 from 140,765 users IMDB link...............: http://www.imdb.com/title/tt2802850/]]>
+ http://ew.pw/index.php?page=torrent-details&id=dea071a7a62a0d662538d46402fb112f30b8c9fa
+ http://ew.pw/index.php?page=torrent-details&id=dea071a7a62a0d662538d46402fb112f30b8c9fa
+
+ Sun, 13 Aug 2017 22:21:43 +0000
+
+
+
+ TVShow Bluray 720p] American Horror Story S04 Complete Season 4 720p BRRip DD5.1 x264 - PSYPHER [SEEDERS (2)/LEECHERS (0)]]]>
+
+ http://ew.pw/index.php?page=torrent-details&id=2725fe19ea2addf5aafbd523d134191b8abbb2ee
+ http://ew.pw/index.php?page=torrent-details&id=2725fe19ea2addf5aafbd523d134191b8abbb2ee
+
+ Fri, 28 Jul 2017 16:29:51 +0000
+
+
+
+
\ No newline at end of file
diff --git a/src/NzbDrone.Core.Test/IndexerTests/BasicRssParserFixture.cs b/src/NzbDrone.Core.Test/IndexerTests/BasicRssParserFixture.cs
index b2819434d..ce3abe40e 100644
--- a/src/NzbDrone.Core.Test/IndexerTests/BasicRssParserFixture.cs
+++ b/src/NzbDrone.Core.Test/IndexerTests/BasicRssParserFixture.cs
@@ -30,6 +30,7 @@ public void should_parse_size(string sizeString, long expectedSize)
[TestCase("100 Kb/s")]
[TestCase(" 12341234")]
[TestCase("12341234 other")]
+ [TestCase("")]
public void should_not_parse_size(string sizeString)
{
var result = RssParser.ParseSize(sizeString, true);
diff --git a/src/NzbDrone.Core.Test/IndexerTests/TorrentRssIndexerTests/TorrentRssIndexerFixture.cs b/src/NzbDrone.Core.Test/IndexerTests/TorrentRssIndexerTests/TorrentRssIndexerFixture.cs
index 23d653e5a..0a384c099 100644
--- a/src/NzbDrone.Core.Test/IndexerTests/TorrentRssIndexerTests/TorrentRssIndexerFixture.cs
+++ b/src/NzbDrone.Core.Test/IndexerTests/TorrentRssIndexerTests/TorrentRssIndexerFixture.cs
@@ -261,6 +261,33 @@ public void should_parse_recent_feed_from_AlphaRatio()
torrentInfo.DownloadUrl.Should().Be("https://alpharatio.cc/torrents.php?action=download&authkey=private_auth_key&torrent_pass=private_torrent_pass&id=465831");
}
+ [Test]
+ public void should_parse_recent_feed_from_EveolutionWorld_without_size()
+ {
+ Subject.Definition.Settings.As().AllowZeroSize = true;
+ GivenRecentFeedResponse("TorrentRss/EvolutionWorld.xml");
+
+ var releases = Subject.FetchRecent();
+
+ releases.Should().HaveCount(2);
+ releases.First().Should().BeOfType();
+
+ var torrentInfo = releases.First() as TorrentInfo;
+
+ torrentInfo.Title.Should().Be("[TVShow --> TVShow Bluray 720p] Fargo S01 Complete Season 1 720p BRRip DD5.1 x264-PSYPHER [SEEDERS (3)/LEECHERS (0)]");
+ torrentInfo.DownloadProtocol.Should().Be(DownloadProtocol.Torrent);
+ torrentInfo.DownloadUrl.Should().Be("http://ew.pw/download.php?id=dea071a7a62a0d662538d46402fb112f30b8c9fa&f=Fargo%20S01%20Complete%20Season%201%20720p%20BRRip%20DD5.1%20x264-PSYPHER.torrent&auth=secret");
+ torrentInfo.InfoUrl.Should().BeNullOrEmpty();
+ torrentInfo.CommentUrl.Should().BeNullOrEmpty();
+ torrentInfo.Indexer.Should().Be(Subject.Definition.Name);
+ torrentInfo.PublishDate.Should().Be(DateTime.Parse("2017-08-13T22:21:43Z").ToUniversalTime());
+ torrentInfo.Size.Should().Be(0);
+ torrentInfo.InfoHash.Should().BeNull();
+ torrentInfo.MagnetUrl.Should().BeNull();
+ torrentInfo.Peers.Should().NotHaveValue();
+ torrentInfo.Seeders.Should().NotHaveValue();
+ }
+
[Test]
public void should_record_indexer_failure_if_unsupported_feed()
{
diff --git a/src/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj b/src/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj
index 5ca9e255f..d5dfb6972 100644
--- a/src/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj
+++ b/src/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj
@@ -432,6 +432,10 @@
sqlite3.dll
Always
+
+ Designer
+ Always
+ AlwaysDesigner
diff --git a/src/NzbDrone.Core/Indexers/RssParser.cs b/src/NzbDrone.Core/Indexers/RssParser.cs
index 5687adb51..b9bfa7000 100644
--- a/src/NzbDrone.Core/Indexers/RssParser.cs
+++ b/src/NzbDrone.Core/Indexers/RssParser.cs
@@ -343,6 +343,11 @@ protected virtual string ParseUrl(string value)
public static long ParseSize(string sizeString, bool defaultToBinaryPrefix)
{
+ if (sizeString.IsNullOrWhiteSpace())
+ {
+ return 0;
+ }
+
if (sizeString.All(char.IsDigit))
{
return long.Parse(sizeString);