mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-12-27 01:28:16 +08:00
Subdl Provider: add tests and use standard utils
This commit is contained in:
parent
127a7aebad
commit
91a35317cc
2 changed files with 38 additions and 5 deletions
|
@ -17,8 +17,7 @@ from .mixins import ProviderRetryMixin
|
|||
from subliminal_patch.subtitle import Subtitle
|
||||
from subliminal.subtitle import fix_line_ending
|
||||
from subliminal_patch.providers import Provider
|
||||
from subliminal_patch.subtitle import guess_matches
|
||||
from guessit import guessit
|
||||
from subliminal_patch.providers import utils
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
@ -57,7 +56,6 @@ class SubdlSubtitle(Subtitle):
|
|||
|
||||
def get_matches(self, video):
|
||||
matches = set()
|
||||
type_ = "movie" if isinstance(video, Movie) else "episode"
|
||||
|
||||
# handle movies and series separately
|
||||
if isinstance(video, Episode):
|
||||
|
@ -77,8 +75,7 @@ class SubdlSubtitle(Subtitle):
|
|||
# imdb
|
||||
matches.add('imdb_id')
|
||||
|
||||
# other properties
|
||||
matches |= guess_matches(video, guessit(self.release_info, {"type": type_}))
|
||||
utils.update_matches(matches, video, self.release_info)
|
||||
|
||||
self.matches = matches
|
||||
|
||||
|
|
36
tests/subliminal_patch/test_subdl.py
Normal file
36
tests/subliminal_patch/test_subdl.py
Normal file
|
@ -0,0 +1,36 @@
|
|||
import os
|
||||
|
||||
import pytest
|
||||
from subliminal_patch.providers.subdl import SubdlProvider
|
||||
from subliminal_patch.providers.subdl import SubdlSubtitle
|
||||
|
||||
|
||||
@pytest.fixture(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()
|
Loading…
Reference in a new issue