diff options
author | Vitiko <[email protected]> | 2024-07-14 19:02:50 -0400 |
---|---|---|
committer | Vitiko <[email protected]> | 2024-07-14 19:02:50 -0400 |
commit | 91a35317cc1f627030b7bae4d9776acef4745afd (patch) | |
tree | bd42bcde6c83379d0688ed0eb95aa02b2f6a509d /tests/subliminal_patch | |
parent | 127a7aebadde462babba33d2115dc058a854954c (diff) | |
download | bazarr-91a35317cc1f627030b7bae4d9776acef4745afd.tar.gz bazarr-91a35317cc1f627030b7bae4d9776acef4745afd.zip |
Subdl Provider: add tests and use standard utils
Diffstat (limited to 'tests/subliminal_patch')
-rw-r--r-- | tests/subliminal_patch/test_subdl.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/subliminal_patch/test_subdl.py b/tests/subliminal_patch/test_subdl.py new file mode 100644 index 000000000..47fe7577d --- /dev/null +++ b/tests/subliminal_patch/test_subdl.py @@ -0,0 +1,36 @@ +import os + +import pytest +from subliminal_patch.providers.subdl import SubdlProvider +from subliminal_patch.providers.subdl import SubdlSubtitle + + [email protected](scope="session") +def provider(): + with SubdlProvider(os.environ["SUBDL_TOKEN"]) as provider: + yield provider + + +def test_list_subtitles_movie(provider, movies, languages): + for sub in provider.list_subtitles(movies["dune"], {languages["en"]}): + assert sub.language == languages["en"] + + +def test_download_subtitle(provider, languages): + data = { + "language": languages["en"], + "forced": False, + "hearing_impaired": False, + "page_link": "https://subdl.com/s/info/ebC6BrLCOC", + "download_link": "/subtitle/2808552-2770424.zip", + "file_id": "SUBDL::dune-2021-2770424.zip", + "release_names": ["Dune Part 1 WebDl"], + "uploader": "makoto77", + "season": 0, + "episode": None, + } + + sub = SubdlSubtitle(**data) + provider.download_subtitle(sub) + + assert sub.is_valid() |