2011-05-22 19:53:21 +03:00
|
|
|
// ReSharper disable RedundantUsingDirective
|
2011-10-21 02:42:17 +03:00
|
|
|
|
2011-05-22 19:53:21 +03:00
|
|
|
using System;
|
2011-06-18 05:00:44 +03:00
|
|
|
using System.Collections.Generic;
|
2011-05-29 04:58:35 +03:00
|
|
|
using System.Linq;
|
2013-01-03 04:09:13 +03:00
|
|
|
using Autofac;
|
2011-06-03 00:06:46 +03:00
|
|
|
using FluentAssertions;
|
|
|
|
using NUnit.Framework;
|
2011-10-29 07:54:33 +03:00
|
|
|
using NzbDrone.Common;
|
2010-09-28 07:25:41 +03:00
|
|
|
using NzbDrone.Core.Providers;
|
2011-05-19 06:55:35 +03:00
|
|
|
using NzbDrone.Core.Test.Framework;
|
2011-11-27 06:53:13 +03:00
|
|
|
using NzbDrone.Test.Common;
|
2012-10-17 03:08:47 +03:00
|
|
|
using TvdbLib.Data;
|
|
|
|
using TvdbLib.Exceptions;
|
2010-09-23 06:19:47 +03:00
|
|
|
|
2011-10-21 02:42:17 +03:00
|
|
|
namespace NzbDrone.Core.Test.ProviderTests
|
2010-09-23 06:19:47 +03:00
|
|
|
{
|
2011-06-18 05:00:44 +03:00
|
|
|
[TestFixture]
|
2010-10-08 01:17:24 +03:00
|
|
|
// ReSharper disable InconsistentNaming
|
2013-02-02 23:54:03 +03:00
|
|
|
public class TvDbProviderTest : SqlCeTest
|
2010-09-23 06:19:47 +03:00
|
|
|
{
|
2011-11-03 08:04:14 +03:00
|
|
|
private TvDbProvider tvDbProvider;
|
|
|
|
|
|
|
|
[SetUp]
|
|
|
|
public void Setup()
|
|
|
|
{
|
2013-01-03 04:09:13 +03:00
|
|
|
var builder = new ContainerBuilder();
|
|
|
|
|
|
|
|
builder.RegisterType<EnvironmentProvider>();
|
|
|
|
builder.RegisterType<TvDbProvider>();
|
|
|
|
|
|
|
|
var container = builder.Build();
|
|
|
|
|
|
|
|
tvDbProvider = container.Resolve<TvDbProvider>();
|
2011-11-03 08:04:14 +03:00
|
|
|
}
|
|
|
|
|
2011-11-27 06:53:13 +03:00
|
|
|
[TearDown]
|
|
|
|
public void TearDown()
|
|
|
|
{
|
2012-10-17 03:08:47 +03:00
|
|
|
ExceptionVerification.MarkInconclusive(typeof(TvdbNotAvailableException));
|
2011-11-27 06:53:13 +03:00
|
|
|
}
|
|
|
|
|
2011-06-03 00:06:46 +03:00
|
|
|
[TestCase("The Simpsons")]
|
|
|
|
[TestCase("Family Guy")]
|
|
|
|
[TestCase("South Park")]
|
2012-12-21 00:27:54 +03:00
|
|
|
[TestCase("Franklin & Bash")]
|
2010-10-05 09:21:18 +03:00
|
|
|
public void successful_search(string title)
|
2010-09-23 06:19:47 +03:00
|
|
|
{
|
2011-11-03 08:04:14 +03:00
|
|
|
var result = tvDbProvider.SearchSeries(title);
|
2011-06-03 00:06:46 +03:00
|
|
|
|
|
|
|
result.Should().NotBeEmpty();
|
|
|
|
result[0].SeriesName.Should().Be(title);
|
2010-09-23 06:19:47 +03:00
|
|
|
}
|
2010-10-05 09:21:18 +03:00
|
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void no_search_result()
|
|
|
|
{
|
|
|
|
//act
|
2011-11-03 08:04:14 +03:00
|
|
|
var result = tvDbProvider.SearchSeries(Guid.NewGuid().ToString());
|
2010-10-05 09:21:18 +03:00
|
|
|
|
|
|
|
//assert
|
2011-06-03 00:06:46 +03:00
|
|
|
result.Should().BeEmpty();
|
2010-10-05 09:21:18 +03:00
|
|
|
}
|
|
|
|
|
2011-05-29 04:58:35 +03:00
|
|
|
|
2011-06-19 20:56:54 +03:00
|
|
|
[Test]
|
|
|
|
public void none_unique_season_episode_number()
|
|
|
|
{
|
|
|
|
//act
|
2011-11-03 08:04:14 +03:00
|
|
|
var result = tvDbProvider.GetSeries(75978, true);//Family guy
|
2011-06-19 20:56:54 +03:00
|
|
|
|
|
|
|
//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);
|
|
|
|
|
|
|
|
}
|
2010-09-23 06:19:47 +03:00
|
|
|
}
|
2011-04-10 05:44:01 +03:00
|
|
|
}
|