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.Core.Test/ParserTests/ArtistTitleInfoFixture.cs

67 lines
2.2 KiB

using FluentAssertions;
using NUnit.Framework;
using NzbDrone.Core.Test.Framework;
namespace NzbDrone.Core.Test.ParserTests
{
[TestFixture]
public class ArtistTitleInfoFixture : CoreTest
{
// TODO: Redo this test and parsed info for Albums which do have a year association
[Test]
[Ignore("Artist Don't have year association thus we dont use this currently")]
public void should_have_year_zero_when_title_doesnt_have_a_year()
{
const string title = "Alien Ant Farm - TruAnt [Flac]";
var result = Parser.Parser.ParseAlbumTitle(title).ArtistTitleInfo;
result.Year.Should().Be(0);
}
[Test]
[Ignore("Artist Don't have year association thus we dont use this currently")]
public void should_have_same_title_for_title_and_title_without_year_when_title_doesnt_have_a_year()
{
const string title = "Alien Ant Farm - TruAnt [Flac]";
var result = Parser.Parser.ParseAlbumTitle(title).ArtistTitleInfo;
result.Title.Should().Be(result.TitleWithoutYear);
}
[Test]
[Ignore("Artist Don't have year association thus we dont use this currently")]
public void should_have_year_when_title_has_a_year()
{
const string title = "Alien Ant Farm - TruAnt [Flac]";
var result = Parser.Parser.ParseAlbumTitle(title).ArtistTitleInfo;
result.Year.Should().Be(2004);
}
[Test]
[Ignore("Artist Don't have year association thus we dont use this currently")]
public void should_have_year_in_title_when_title_has_a_year()
{
const string title = "Alien Ant Farm - TruAnt [Flac]";
var result = Parser.Parser.ParseAlbumTitle(title).ArtistTitleInfo;
result.Title.Should().Be("House 2004");
}
[Test]
[Ignore("Artist Don't have year association thus we dont use this currently")]
public void should_title_without_year_should_not_contain_year()
{
const string title = "Alien Ant Farm - TruAnt [Flac]";
var result = Parser.Parser.ParseAlbumTitle(title).ArtistTitleInfo;
result.TitleWithoutYear.Should().Be("House");
}
}
}