1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00

Fixed: Parsing of some Web releases (#10155)

This commit is contained in:
martylukyy
2024-07-10 14:50:42 +02:00
committed by GitHub
parent 85b310c81c
commit c63d08e7a0
2 changed files with 3 additions and 1 deletions
@@ -206,6 +206,7 @@ namespace NzbDrone.Core.Test.ParserTests
[TestCase("The.Movie.2022.NORDiC.1080p.DV.HDR.WEB.H 265-NiDHUG", false)]
[TestCase("Movie Title 2018 [WEB 1080p HEVC Opus] [Netaro]", false)]
[TestCase("Movie Title 2018 (WEB 1080p HEVC Opus) [Netaro]", false)]
[TestCase("Movie.Title.2024.German.Dubbed.DL.AAC.1080p.WEB.AVC-GROUP", false)]
public void should_parse_webdl1080p_quality(string title, bool proper)
{
ParseAndVerifyQuality(title, QualitySource.WEBDL, proper, Resolution.R1080p);
@@ -226,6 +227,7 @@ namespace NzbDrone.Core.Test.ParserTests
[TestCase("[HorribleSubs] Movie Title! 2018 [Web][MKV][h264][2160p][AAC 2.0][Softsubs (HorribleSubs)]", false)]
[TestCase("Movie Name 2020 WEB-DL 4K H265 10bit HDR DDP5.1 Atmos-PTerWEB", false)]
[TestCase("The.Movie.2022.NORDiC.2160p.DV.HDR.WEB.H.265-NiDHUG", false)]
[TestCase("Movie.Name.2024.German.Dubbed.DL.AAC.2160p.DV.HDR.WEB.HEVC-GROUP", false)]
public void should_parse_webdl2160p_quality(string title, bool proper)
{
ParseAndVerifyQuality(title, QualitySource.WEBDL, proper, Resolution.R2160p);