1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

New: Parse HBOMaxHD as WEBDL

Closes #5489
This commit is contained in:
Mark McDowall
2023-03-15 21:01:37 -07:00
parent cfcf1ad1ab
commit c80c1db947
2 changed files with 3 additions and 1 deletions
@@ -204,6 +204,7 @@ namespace NzbDrone.Core.Test.ParserTests
[TestCase("[HorribleSubs] Series Title! S01 [Web][MKV][h264][AAC 2.0][Softsubs (HorribleSubs)]", false)]
[TestCase("Series.Title.S04E13.960p.WEB-DL.AAC2.0.H.264-squalor", false)]
[TestCase("Series.Title.S16.DP.WEB.720p.DDP.5.1.H.264.PLEX", false)]
[TestCase("Series.Title.S01E01.Erste.Begegnungen.German.DD51.Synced.DL.720p.HBOMaxHD.AVC-TVS", false)]
public void should_parse_webdl720p_quality(string title, bool proper)
{
ParseAndVerifyQuality(title, Quality.WEBDL720p, proper);
@@ -247,6 +248,7 @@ namespace NzbDrone.Core.Test.ParserTests
[TestCase("Series.Title.S02E02.This.Year.Will.Be.Different.1080p.WEB.H 265", false)]
[TestCase("Series Title Season 2 [WEB 1080p HEVC Opus] [Netaro]", false)]
[TestCase("Series Title Season 2 (WEB 1080p HEVC Opus) [Netaro]", false)]
[TestCase("Series.Title.S01E01.Erste.Begegnungen.German.DD51.Synced.DL.1080p.HBOMaxHD.AVC-TVS", false)]
public void should_parse_webdl1080p_quality(string title, bool proper)
{
ParseAndVerifyQuality(title, Quality.WEBDL1080p, proper);