mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
107 lines
3.1 KiB
C#
107 lines
3.1 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using FizzWare.NBuilder;
|
|
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Core.Notifications.Xbmc;
|
|
using NzbDrone.Core.Notifications.Xbmc.Model;
|
|
using NzbDrone.Core.Test.Framework;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
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 List<TvShow> _xbmcSeries;
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
_settings = Builder<XbmcSettings>.CreateNew()
|
|
.Build();
|
|
|
|
_xbmcSeries = Builder<TvShow>.CreateListOfSize(3)
|
|
.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 GivenMatchingTvdbId()
|
|
{
|
|
_series = new Series
|
|
{
|
|
TvdbId = TVDB_ID,
|
|
Title = "TV Show"
|
|
};
|
|
}
|
|
|
|
private void GivenMatchingTitle()
|
|
{
|
|
_series = new Series
|
|
{
|
|
TvdbId = 1000,
|
|
Title = _xbmcSeries.First().Label
|
|
};
|
|
}
|
|
|
|
private void GivenMatchingSeries()
|
|
{
|
|
_series = new Series
|
|
{
|
|
TvdbId = 1000,
|
|
Title = "Does not exist"
|
|
};
|
|
}
|
|
|
|
[Test]
|
|
public void should_return_null_when_series_is_not_found()
|
|
{
|
|
GivenMatchingSeries();
|
|
|
|
Subject.GetSeriesPath(_settings, _series).Should().BeNull();
|
|
}
|
|
|
|
[Test]
|
|
public void should_return_path_when_tvdbId_matches()
|
|
{
|
|
GivenMatchingTvdbId();
|
|
|
|
Subject.GetSeriesPath(_settings, _series).Should().Be(_xbmcSeries.First().File);
|
|
}
|
|
|
|
[Test]
|
|
public void should_return_path_when_title_matches()
|
|
{
|
|
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();
|
|
}
|
|
}
|
|
}
|