You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/src/NzbDrone.Core.Test/MetadataSource/SearchArtistComparerFixture.cs

72 lines
2.0 KiB

using System.Collections.Generic;
using System.Linq;
using FluentAssertions;
using NUnit.Framework;
using NzbDrone.Core.Books;
using NzbDrone.Core.MetadataSource;
using NzbDrone.Core.Test.Framework;
namespace NzbDrone.Core.Test.MetadataSource
{
[TestFixture]
public class SearchAuthorComparerFixture : CoreTest
{
private List<Author> _author;
[SetUp]
public void Setup()
{
_author = new List<Author>();
}
private void WithSeries(string name)
{
_author.Add(new Author { Name = name });
}
[Test]
public void should_prefer_the_walking_dead_over_talking_dead_when_searching_for_the_walking_dead()
{
WithSeries("Talking Dead");
WithSeries("The Walking Dead");
_author.Sort(new SearchAuthorComparer("the walking dead"));
_author.First().Name.Should().Be("The Walking Dead");
}
[Test]
public void should_prefer_the_walking_dead_over_talking_dead_when_searching_for_walking_dead()
{
WithSeries("Talking Dead");
WithSeries("The Walking Dead");
_author.Sort(new SearchAuthorComparer("walking dead"));
_author.First().Name.Should().Be("The Walking Dead");
}
[Test]
public void should_prefer_blacklist_over_the_blacklist_when_searching_for_blacklist()
{
WithSeries("The Blacklist");
WithSeries("Blacklist");
_author.Sort(new SearchAuthorComparer("blacklist"));
_author.First().Name.Should().Be("Blacklist");
}
[Test]
public void should_prefer_the_blacklist_over_blacklist_when_searching_for_the_blacklist()
{
WithSeries("Blacklist");
WithSeries("The Blacklist");
_author.Sort(new SearchAuthorComparer("the blacklist"));
_author.First().Name.Should().Be("The Blacklist");
}
}
}