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.
|
|
|
using FluentAssertions;
|
|
|
|
using NUnit.Framework;
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Test.ParserTests
|
|
|
|
{
|
|
|
|
|
|
|
|
[TestFixture]
|
|
|
|
public class ReleaseGroupParserFixture : CoreTest
|
|
|
|
{
|
|
|
|
[TestCase("Castle.2009.S01E14.English.HDTV.XviD-LOL", "LOL")]
|
|
|
|
[TestCase("Castle 2009 S01E14 English HDTV XviD LOL", "LOL")]
|
|
|
|
[TestCase("Acropolis Now S05 EXTRAS DVDRip XviD RUNNER", "RUNNER")]
|
|
|
|
[TestCase("Punky.Brewster.S01.EXTRAS.DVDRip.XviD-RUNNER", "RUNNER")]
|
|
|
|
[TestCase("2020.NZ.2011.12.02.PDTV.XviD-C4TV", "C4TV")]
|
|
|
|
[TestCase("The.Office.S03E115.DVDRip.XviD-OSiTV", "OSiTV")]
|
|
|
|
[TestCase("The Office - S01E01 - Pilot [HTDV-480p]", "DRONE")]
|
|
|
|
[TestCase("The Office - S01E01 - Pilot [HTDV-720p]", "DRONE")]
|
|
|
|
[TestCase("The Office - S01E01 - Pilot [HTDV-1080p]", "DRONE")]
|
|
|
|
[TestCase("The.Walking.Dead.S04E13.720p.WEB-DL.AAC2.0.H.264-Cyphanix", "Cyphanix")]
|
|
|
|
public void should_parse_release_group(string title, string expected)
|
|
|
|
{
|
|
|
|
Parser.Parser.ParseReleaseGroup(title).Should().Be(expected);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void should_not_include_extension_in_release_roup()
|
|
|
|
{
|
|
|
|
const string path = @"C:\Test\Doctor.Who.2005.s01e01.internal.bdrip.x264-archivist.mkv";
|
|
|
|
|
|
|
|
Parser.Parser.ParsePath(path).ReleaseGroup.Should().Be("archivist");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|