mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
Fixed: Updating Kodi won't fail if a series has an IMDB ID instead of a TVDB ID
This commit is contained in:
parent
8b1e0f68dd
commit
f021f9b146
@ -13,6 +13,7 @@ namespace NzbDrone.Core.Test.NotificationTests.Xbmc.Json
|
||||
[TestFixture]
|
||||
public class GetSeriesPathFixture : CoreTest<JsonApiProvider>
|
||||
{
|
||||
private const int TVDB_ID = 5;
|
||||
private XbmcSettings _settings;
|
||||
private Series _series;
|
||||
private string _response;
|
||||
@ -25,24 +26,28 @@ public void Setup()
|
||||
.Build();
|
||||
|
||||
_xbmcSeries = Builder<TvShow>.CreateListOfSize(3)
|
||||
.Build()
|
||||
.ToList();
|
||||
.All()
|
||||
.With(s => s.ImdbNumber = "0")
|
||||
.TheFirst(1)
|
||||
.With(s => s.ImdbNumber = TVDB_ID.ToString())
|
||||
.Build()
|
||||
.ToList();
|
||||
|
||||
Mocker.GetMock<IXbmcJsonApiProxy>()
|
||||
.Setup(s => s.GetSeries(_settings))
|
||||
.Returns(_xbmcSeries);
|
||||
}
|
||||
|
||||
private void WithMatchingTvdbId()
|
||||
private void GivenMatchingTvdbId()
|
||||
{
|
||||
_series = new Series
|
||||
{
|
||||
TvdbId = _xbmcSeries.First().ImdbNumber,
|
||||
TvdbId = TVDB_ID,
|
||||
Title = "TV Show"
|
||||
};
|
||||
}
|
||||
|
||||
private void WithMatchingTitle()
|
||||
private void GivenMatchingTitle()
|
||||
{
|
||||
_series = new Series
|
||||
{
|
||||
@ -51,7 +56,7 @@ private void WithMatchingTitle()
|
||||
};
|
||||
}
|
||||
|
||||
private void WithoutMatchingSeries()
|
||||
private void GivenMatchingSeries()
|
||||
{
|
||||
_series = new Series
|
||||
{
|
||||
@ -63,7 +68,7 @@ private void WithoutMatchingSeries()
|
||||
[Test]
|
||||
public void should_return_null_when_series_is_not_found()
|
||||
{
|
||||
WithoutMatchingSeries();
|
||||
GivenMatchingSeries();
|
||||
|
||||
Subject.GetSeriesPath(_settings, _series).Should().BeNull();
|
||||
}
|
||||
@ -71,7 +76,7 @@ public void should_return_null_when_series_is_not_found()
|
||||
[Test]
|
||||
public void should_return_path_when_tvdbId_matches()
|
||||
{
|
||||
WithMatchingTvdbId();
|
||||
GivenMatchingTvdbId();
|
||||
|
||||
Subject.GetSeriesPath(_settings, _series).Should().Be(_xbmcSeries.First().File);
|
||||
}
|
||||
@ -79,9 +84,24 @@ public void should_return_path_when_tvdbId_matches()
|
||||
[Test]
|
||||
public void should_return_path_when_title_matches()
|
||||
{
|
||||
WithMatchingTitle();
|
||||
GivenMatchingTitle();
|
||||
|
||||
Subject.GetSeriesPath(_settings, _series).Should().Be(_xbmcSeries.First().File);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void should_not_throw_when_imdb_number_is_not_a_number()
|
||||
{
|
||||
GivenMatchingTvdbId();
|
||||
|
||||
_xbmcSeries.ForEach(s => s.ImdbNumber = "tt12345");
|
||||
_xbmcSeries.Last().ImdbNumber = TVDB_ID.ToString();
|
||||
|
||||
Mocker.GetMock<IXbmcJsonApiProxy>()
|
||||
.Setup(s => s.GetSeries(_settings))
|
||||
.Returns(_xbmcSeries);
|
||||
|
||||
Subject.GetSeriesPath(_settings, _series).Should().NotBeNull();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -14,6 +14,7 @@ namespace NzbDrone.Core.Test.NotificationTests.Xbmc.Json
|
||||
[TestFixture]
|
||||
public class UpdateFixture : CoreTest<JsonApiProvider>
|
||||
{
|
||||
private const int TVDB_ID = 5;
|
||||
private XbmcSettings _settings;
|
||||
private Series _series;
|
||||
private List<TvShow> _xbmcSeries;
|
||||
@ -25,8 +26,10 @@ public void Setup()
|
||||
.Build();
|
||||
|
||||
_xbmcSeries = Builder<TvShow>.CreateListOfSize(3)
|
||||
.Build()
|
||||
.ToList();
|
||||
.TheFirst(1)
|
||||
.With(s => s.ImdbNumber = TVDB_ID.ToString())
|
||||
.Build()
|
||||
.ToList();
|
||||
|
||||
Mocker.GetMock<IXbmcJsonApiProxy>()
|
||||
.Setup(s => s.GetSeries(_settings))
|
||||
@ -41,7 +44,7 @@ public void Setup()
|
||||
public void should_update_using_series_path()
|
||||
{
|
||||
var series = Builder<Series>.CreateNew()
|
||||
.With(s => s.TvdbId = _xbmcSeries.First().ImdbNumber)
|
||||
.With(s => s.TvdbId = TVDB_ID)
|
||||
.Build();
|
||||
|
||||
Subject.Update(_settings, series);
|
||||
|
@ -65,7 +65,13 @@ public String GetSeriesPath(XbmcSettings settings, Series series)
|
||||
return null;
|
||||
}
|
||||
|
||||
var matchingSeries = allSeries.FirstOrDefault(s => s.ImdbNumber == series.TvdbId || s.Label == series.Title);
|
||||
var matchingSeries = allSeries.FirstOrDefault(s =>
|
||||
{
|
||||
var tvdbId = 0;
|
||||
Int32.TryParse(s.ImdbNumber, out tvdbId);
|
||||
|
||||
return tvdbId == series.TvdbId || s.Label == series.Title;
|
||||
});
|
||||
|
||||
if (matchingSeries != null) return matchingSeries.File;
|
||||
|
||||
|
@ -4,7 +4,7 @@ public class TvShow
|
||||
{
|
||||
public int TvShowId { get; set; }
|
||||
public string Label { get; set; }
|
||||
public int ImdbNumber { get; set; }
|
||||
public string ImdbNumber { get; set; }
|
||||
public string File { get; set; }
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user