1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-17 10:45:49 +02:00

80 lines
2.1 KiB
C#
Raw Normal View History

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