aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/subliminal_patch/test_subf2m.py
diff options
context:
space:
mode:
authorJayZed <[email protected]>2024-09-29 21:05:46 -0400
committerJayZed <[email protected]>2024-09-29 21:05:46 -0400
commitc2a1e4d62c1bbb372127a78e4419a96d3c00e81c (patch)
treeaf19b97bbb71b514ef39928e55769fa85064e23a /tests/subliminal_patch/test_subf2m.py
parent4cc6806193127f9d6d3f2dab26969471d9bbf159 (diff)
parent0200bb96d98127ee32b6b66f8d6b9e21d4571a4d (diff)
downloadbazarr-c2a1e4d62c1bbb372127a78e4419a96d3c00e81c.tar.gz
bazarr-c2a1e4d62c1bbb372127a78e4419a96d3c00e81c.zip
Merge branch 'development' of https://github.com/morpheus65535/bazarr into developmentv1.4.5-beta.7
Diffstat (limited to 'tests/subliminal_patch/test_subf2m.py')
-rw-r--r--tests/subliminal_patch/test_subf2m.py33
1 files changed, 27 insertions, 6 deletions
diff --git a/tests/subliminal_patch/test_subf2m.py b/tests/subliminal_patch/test_subf2m.py
index e8369d2fa..b8901179b 100644
--- a/tests/subliminal_patch/test_subf2m.py
+++ b/tests/subliminal_patch/test_subf2m.py
@@ -184,15 +184,36 @@ def test_download_subtitle_episode(provider, subtitle_episode):
assert subtitle_episode.is_valid()
-def test_download_subtitle_episode_with_title(provider):
+ "language,page_link,release_info,episode_number,episode_title",
+ [
+ (
+ "en",
+ "https://subf2m.co/subtitles/courage-the-cowardly-dog/english/2232402",
+ "Season 3 complete.",
+ 13,
+ "Feast of the Bullfrogs",
+ ),
+ (
+ "en",
+ "https://subf2m.co/subtitles/rick-and-morty-sixth-season/english/3060783",
+ "Used Subtitle Tools to convert from SUP to SRT, then ran the cleaner to remove HI. Grabbed subs from Rick.and.Morty.S06.1080p.BluRay.x264-STORiES.",
+ 7,
+ "Full Meta Jackrick",
+ ),
+ ],
+)
+def test_download_subtitle_episode_with_title(
+ provider, language, page_link, release_info, episode_number, episode_title
+):
sub = Subf2mSubtitle(
- Language.fromalpha2("en"),
- "https://subf2m.co/subtitles/courage-the-cowardly-dog/english/2232402",
- "Season 3 complete.",
- 13,
+ Language.fromalpha2(language),
+ page_link,
+ release_info,
+ episode_number,
)
- sub.episode_title = "Feast of the Bullfrogs"
+ sub.episode_title = episode_title
provider.download_subtitle(sub)
assert sub.is_valid()