LazyList is now initilized using an empty list instead of null.

pull/3113/head
kay.one 11 years ago
parent 150b1902e9
commit 58a05fcef8

@ -1,50 +1,23 @@
using System; using System;
using System.Collections.Generic;
using System.Linq; using System.Linq;
using Autofac;
using FluentAssertions; using FluentAssertions;
using NUnit.Framework; using NUnit.Framework;
using NzbDrone.Common;
using NzbDrone.Core.MetadataSource; using NzbDrone.Core.MetadataSource;
using NzbDrone.Core.Providers;
using NzbDrone.Core.Test.Framework; using NzbDrone.Core.Test.Framework;
using NzbDrone.Test.Common;
namespace NzbDrone.Core.Test.ProviderTests namespace NzbDrone.Core.Test.ProviderTests
{ {
[TestFixture] [TestFixture]
public class TvDbProviderTest : CoreTest public class TvDbProviderTest : CoreTest<TvDbProxy>
{ {
private TvDbProxy tvDbProxy;
[SetUp]
public void Setup()
{
var builder = new ContainerBuilder();
builder.RegisterType<EnvironmentProvider>();
builder.RegisterType<TvDbProxy>();
var container = builder.Build();
tvDbProxy = container.Resolve<TvDbProxy>();
}
[TearDown]
public void TearDown()
{
//Todo: Is there a similar exception for wattvdb?
//ExceptionVerification.MarkInconclusive(typeof(TvdbNotAvailableException));
}
[TestCase("The Simpsons")] [TestCase("The Simpsons")]
[TestCase("Family Guy")] [TestCase("Family Guy")]
[TestCase("South Park")] [TestCase("South Park")]
[TestCase("Franklin & Bash")] [TestCase("Franklin & Bash")]
public void successful_search(string title) public void successful_search(string title)
{ {
var result = tvDbProxy.SearchSeries(title); var result = Subject.SearchSeries(title);
result.Should().NotBeEmpty(); result.Should().NotBeEmpty();
result[0].Title.Should().Be(title); result[0].Title.Should().Be(title);
@ -54,26 +27,28 @@ namespace NzbDrone.Core.Test.ProviderTests
[Test] [Test]
public void no_search_result() public void no_search_result()
{ {
var result = Subject.SearchSeries(Guid.NewGuid().ToString());
var result = tvDbProxy.SearchSeries(Guid.NewGuid().ToString());
result.Should().BeEmpty(); result.Should().BeEmpty();
} }
[Test] [Test]
public void none_unique_season_episode_number() public void none_unique_season_episode_number()
{ {
var result = Subject.GetEpisodes(75978);//Family guy
var result = tvDbProxy.GetEpisodes(75978);//Family guy
result.GroupBy(e => e.SeasonNumber.ToString("000") + e.EpisodeNumber.ToString("000")) result.GroupBy(e => e.SeasonNumber.ToString("000") + e.EpisodeNumber.ToString("000"))
.Max(e => e.Count()).Should().Be(1); .Max(e => e.Count()).Should().Be(1);
result.Select(c => c.TvDbEpisodeId).Should().OnlyHaveUniqueItems(); result.Select(c => c.TvDbEpisodeId).Should().OnlyHaveUniqueItems();
}
[Test]
public void should_be_able_to_get_series_detail()
{
var details = Subject.GetSeries(75978);
details.Should().NotBeNull();
details.Covers.Value.Should().NotBeEmpty();
} }
} }
} }

@ -6,6 +6,7 @@ namespace NzbDrone.Core.Datastore
public class LazyList<T> : LazyLoaded<List<T>> public class LazyList<T> : LazyLoaded<List<T>>
{ {
public LazyList() public LazyList()
: this(new List<T>())
{ {
} }

Loading…
Cancel
Save