mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
124 lines
3.6 KiB
C#
124 lines
3.6 KiB
C#
// ReSharper disable RedundantUsingDirective
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
using Ninject;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Core.Providers;
|
|
using NzbDrone.Core.Test.Framework;
|
|
using NzbDrone.Test.Common;
|
|
using TvdbLib.Data;
|
|
using TvdbLib.Exceptions;
|
|
|
|
namespace NzbDrone.Core.Test.ProviderTests
|
|
{
|
|
[TestFixture]
|
|
// ReSharper disable InconsistentNaming
|
|
public class TvDbProviderTest : CoreTest
|
|
{
|
|
private TvDbProvider tvDbProvider;
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
tvDbProvider = new StandardKernel().Get<TvDbProvider>();
|
|
}
|
|
|
|
[TearDown]
|
|
public void TearDown()
|
|
{
|
|
ExceptionVerification.MarkInconclusive(typeof(TvdbNotAvailableException));
|
|
}
|
|
|
|
[TestCase("The Simpsons")]
|
|
[TestCase("Family Guy")]
|
|
[TestCase("South Park")]
|
|
public void successful_search(string title)
|
|
{
|
|
var result = tvDbProvider.SearchSeries(title);
|
|
|
|
result.Should().NotBeEmpty();
|
|
result[0].SeriesName.Should().Be(title);
|
|
}
|
|
|
|
|
|
[Test]
|
|
public void no_search_result()
|
|
{
|
|
//act
|
|
var result = tvDbProvider.SearchSeries(Guid.NewGuid().ToString());
|
|
|
|
//assert
|
|
result.Should().BeEmpty();
|
|
}
|
|
|
|
|
|
[Test]
|
|
public void none_unique_season_episode_number()
|
|
{
|
|
//act
|
|
var result = tvDbProvider.GetSeries(75978, true);//Family guy
|
|
|
|
//Asserts that when episodes are grouped by Season/Episode each group contains maximum of
|
|
//one item.
|
|
result.Episodes.GroupBy(e => e.SeasonNumber.ToString("000") + e.EpisodeNumber.ToString("000"))
|
|
.Max(e => e.Count()).Should().Be(1);
|
|
|
|
}
|
|
|
|
[Test]
|
|
public void American_dad_fix()
|
|
{
|
|
//act
|
|
var result = tvDbProvider.GetSeries(73141, true);
|
|
|
|
var seasonsNumbers = result.Episodes.Select(e => e.SeasonNumber)
|
|
.Distinct().ToList();
|
|
|
|
var seasons = new Dictionary<int, List<TvdbEpisode>>(seasonsNumbers.Count);
|
|
|
|
foreach (var season in seasonsNumbers)
|
|
{
|
|
seasons.Add(season, result.Episodes.Where(e => e.SeasonNumber == season).ToList());
|
|
}
|
|
|
|
foreach (var episode in result.Episodes)
|
|
{
|
|
Console.WriteLine(episode);
|
|
}
|
|
|
|
//assert
|
|
seasonsNumbers.Should().HaveCount(8);
|
|
seasons[1].Should().HaveCount(23);
|
|
seasons[2].Should().HaveCount(19);
|
|
seasons[3].Should().HaveCount(16);
|
|
seasons[4].Should().HaveCount(20);
|
|
seasons[5].Should().HaveCount(18);
|
|
seasons[6].Should().HaveCount(19);
|
|
|
|
foreach (var season in seasons)
|
|
{
|
|
season.Value.Should().OnlyHaveUniqueItems("Season {0}", season.Key);
|
|
}
|
|
|
|
//Make sure no episode number is skipped
|
|
foreach (var season in seasons)
|
|
{
|
|
for (int i = 1; i < season.Value.Count; i++)
|
|
{
|
|
//Skip specials, because someone decided 1,3,4,6,7,21 is how you count...
|
|
if (season.Key == 0)
|
|
continue;
|
|
|
|
season.Value.Should().Contain(c => c.EpisodeNumber == i, "Can't find Episode S{0:00}E{1:00}",
|
|
season.Value[0].SeasonNumber, i);
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
} |