1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00

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

View File

@ -165,6 +165,32 @@ public void should_not_use_folder_name_as_scenename_if_it_is_for_a_full_season()
.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()
{