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.
Lidarr/src/NzbDrone.Integration.Test/ApiTests/ArtistLookupFixture.cs

38 lines
983 B

using FluentAssertions;
using NUnit.Framework;
namespace NzbDrone.Integration.Test.ApiTests
{
[TestFixture]
public class ArtistLookupFixture : IntegrationTest
{
[TestCase("archer", "Archer (2009)")]
[TestCase("90210", "90210")]
public void lookup_new_artist_by_name(string term, string name)
{
var artist = Artist.Lookup(term);
artist.Should().NotBeEmpty();
artist.Should().Contain(c => c.ArtistName == name);
}
[Test]
public void lookup_new_series_by_tvdbid()
{
var artist = Artist.Lookup("lidarr:266189");
artist.Should().NotBeEmpty();
artist.Should().Contain(c => c.ArtistName == "The Blacklist");
}
[Test]
[Ignore("Unreliable")]
public void lookup_random_series_using_asterix()
{
var artist = Artist.Lookup("*");
artist.Should().NotBeEmpty();
}
}
}