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:
parent
ac8283d733
commit
75e9d33fea
@ -165,6 +165,32 @@ public void should_not_use_folder_name_as_scenename_if_it_is_for_a_full_season()
|
|||||||
.BeNull();
|
.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]
|
[Test]
|
||||||
public void should_not_use_folder_name_as_scenename_if_there_are_other_video_files()
|
public void should_not_use_folder_name_as_scenename_if_there_are_other_video_files()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user