Confirm scene name is not folder name for batch releases

This commit is contained in:
Mark McDowall 2021-04-07 18:03:17 -07:00
parent ac8283d733
commit 75e9d33fea
1 changed files with 26 additions and 0 deletions

View File

@ -165,6 +165,32 @@ namespace NzbDrone.Core.Test.MediaFiles.EpisodeImport
.BeNull();
}
[Test]
public void should_not_use_folder_name_as_scenename_if_it_is_for_batch()
{
var batchName = "[HorribleSubs] Series Title (01-62) [1080p] (Batch)";
_localEpisode.DownloadClientEpisodeInfo = new ParsedEpisodeInfo
{
FullSeason = false,
ReleaseTitle = batchName
};
_localEpisode.Path = Path.Combine(@"C:\Test\Unsorted TV", batchName, "[HorribleSubs] Series Title - 14 [1080p].mkv")
.AsOsAgnostic();
_localEpisode.OtherVideoFiles = true;
_localEpisode.FolderEpisodeInfo = new ParsedEpisodeInfo
{
ReleaseTitle = _seasonName,
FullSeason = false
};
SceneNameCalculator.GetSceneName(_localEpisode).Should()
.BeNull();
}
[Test]
public void should_not_use_folder_name_as_scenename_if_there_are_other_video_files()
{