Radarr/NzbDrone.Core.Test/TvDbProviderTest.cs

138 lines
4.2 KiB
C#
Raw Normal View History

2011-05-22 16:53:21 +00:00
// ReSharper disable RedundantUsingDirective
using System;
2011-06-18 02:00:44 +00:00
using System.Collections.Generic;
using System.Linq;
2011-06-02 21:06:46 +00:00
using FluentAssertions;
using NUnit.Framework;
using NzbDrone.Core.Providers;
using NzbDrone.Core.Test.Framework;
2011-06-13 04:24:57 +00:00
using TvdbLib.Data;
2010-09-23 03:19:47 +00:00
namespace NzbDrone.Core.Test
{
2011-06-18 02:00:44 +00:00
[TestFixture]
2010-10-07 22:17:24 +00:00
// ReSharper disable InconsistentNaming
public class TvDbProviderTest : TestBase
2010-09-23 03:19:47 +00:00
{
2011-06-02 21:06:46 +00:00
[TestCase("The Simpsons")]
[TestCase("Family Guy")]
[TestCase("South Park")]
2010-10-05 06:21:18 +00:00
public void successful_search(string title)
2010-09-23 03:19:47 +00:00
{
var result = new TvDbProvider().SearchSeries(title);
2011-06-02 21:06:46 +00:00
result.Should().NotBeEmpty();
result[0].SeriesName.Should().Be(title);
2010-09-23 03:19:47 +00:00
}
2010-10-05 06:21:18 +00:00
2011-06-02 21:06:46 +00:00
[TestCase("The Simpsons")]
[TestCase("Family Guy")]
[TestCase("South Park")]
2010-10-05 06:21:18 +00:00
public void successful_title_lookup(string title)
{
var tvCont = new TvDbProvider();
var result = tvCont.GetSeries(title);
2011-06-02 21:06:46 +00:00
result.SeriesName.Should().Be(title);
2010-10-05 06:21:18 +00:00
}
2011-06-13 04:24:57 +00:00
2011-06-02 21:06:46 +00:00
[TestCase(new object[] { "CAPITAL", "capital", true })]
[TestCase(new object[] { "Something!!", "Something", true })]
[TestCase(new object[] { "Simpsons 2000", "Simpsons", true })]
[TestCase(new object[] { "Simp222sons", "Simpsons", true })]
[TestCase(new object[] { "Simpsons", "The Simpsons", true })]
[TestCase(new object[] { "Law and order", "Law & order", true })]
[TestCase(new object[] { "xxAndxx", "xxxx", false })]
[TestCase(new object[] { "Andxx", "xx", false })]
[TestCase(new object[] { "xxAnd", "xx", false })]
[TestCase(new object[] { "Thexx", "xx", false })]
[TestCase(new object[] { "Thexx", "xx", false })]
[TestCase(new object[] { "xxThexx", "xxxxx", false })]
[TestCase(new object[] { "Simpsons The", "Simpsons", true })]
2010-10-05 06:21:18 +00:00
public void Name_match_test(string a, string b, bool match)
{
bool result = TvDbProvider.IsTitleMatch(a, b);
Assert.AreEqual(match, result, "{0} , {1}", a, b);
}
[Test]
public void no_search_result()
{
//setup
var tvdbProvider = new TvDbProvider();
//act
2011-03-30 06:18:35 +00:00
var result = tvdbProvider.SearchSeries(Guid.NewGuid().ToString());
2010-10-05 06:21:18 +00:00
//assert
2011-06-02 21:06:46 +00:00
result.Should().BeEmpty();
2010-10-05 06:21:18 +00:00
}
[Test]
public void no_result_title_lookup()
{
//setup
var tvdbProvider = new TvDbProvider();
//act
var result = tvdbProvider.GetSeries("clone high");
//assert
Assert.IsNull(result);
}
[Test]
public void American_dad_fix()
{
//setup
var tvdbProvider = new TvDbProvider();
//act
var result = tvdbProvider.GetSeries(73141, true);
2011-06-13 04:24:57 +00:00
var seasonsNumbers = result.Episodes.Select(e => e.SeasonNumber)
.Distinct().ToList();
2011-06-13 04:24:57 +00:00
var seasons = new List<List<TvdbEpisode>>(seasonsNumbers.Count);
2011-06-13 04:24:57 +00:00
foreach (var season in seasonsNumbers)
{
seasons.Insert(season, result.Episodes.Where(e => e.SeasonNumber == season).ToList());
}
foreach (var episode in result.Episodes)
{
Console.WriteLine(episode);
}
//assert
2011-06-13 04:24:57 +00:00
seasonsNumbers.Should().HaveCount(7);
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);
foreach (var season in seasons)
{
season.Should().OnlyHaveUniqueItems();
}
//Make sure no episode number is skipped
foreach (var season in seasons)
{
for (int i = 1; i < season.Count; i++)
{
season.Should().Contain(c => c.EpisodeNumber == i, "Can't find Episode S{0:00}E{1:00}",
season[0].SeasonNumber, i);
}
}
}
2010-09-23 03:19:47 +00:00
}
2011-04-10 02:44:01 +00:00
}