Skip to content

Commit

Permalink
Fix Addic7ed provider TypeError
Browse files Browse the repository at this point in the history
  • Loading branch information
vitiko98 committed Dec 24, 2021
1 parent 048307e commit a88f0a7
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libs/subliminal_patch/providers/addic7ed.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,9 @@ def _get_show_ids(self):
# LXML parser seems to fail when parsing Addic7ed.com HTML markup.
# Last known version to work properly is 3.6.4 (next version, 3.7.0, fails)
# Assuming the site's markup is bad, and stripping it down to only contain what's needed.
show_cells = re.findall(show_cells_re, r.content)
show_cells = [cell.decode("utf-8", "ignore") for cell in re.findall(show_cells_re, r.content)]
if show_cells:
soup = ParserBeautifulSoup(''.join(show_cells).decode('utf-8', 'ignore'), ['lxml', 'html.parser'])
soup = ParserBeautifulSoup(''.join(show_cells), ['lxml', 'html.parser'])
else:
# If RegEx fails, fall back to original r.content and use 'html.parser'
soup = ParserBeautifulSoup(r.content, ['html.parser'])
Expand Down Expand Up @@ -461,7 +461,7 @@ def query(self, show_id, series, season, year=None, country=None):

def query_movie(self, movie_id, title, year=None):
# get the page of the movie
logger.info('Getting the page of movie id %d', movie_id)
logger.info('Getting the page of movie id %s', movie_id)
r = self.session.get(self.server_url + 'movie/' + movie_id,
timeout=10,
headers={
Expand Down
70 changes: 70 additions & 0 deletions tests/subliminal_patch/test_addic7ed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
#!/usr/bin/env python3

import os
import pytest
import datetime
import tempfile

import subliminal
from subliminal_patch.providers.addic7ed import Addic7edProvider
from subliminal_patch.providers.addic7ed import Addic7edSubtitle
from dogpile.cache.region import register_backend as register_cache_backend
from subzero.language import Language


_ENV_VARS = (
"ANTICAPTCHA_CLASS",
"ANTICAPTCHA_ACCOUNT_KEY",
"ADDIC7ED_USERNAME",
"ADDIC7ED_PASSWORD",
)


def _can_run():
for env_var in _ENV_VARS:
if not os.environ.get(env_var):
return True

return False


pytestmark = pytest.mark.skipif(
_can_run(), reason=f"Some environment variables not set: {_ENV_VARS}"
)


@pytest.fixture(scope="session")
def region():
register_cache_backend(
"subzero.cache.file", "subzero.cache_backends.file", "SZFileBackend"
)
subliminal.region.configure(
"subzero.cache.file",
expiration_time=datetime.timedelta(days=30),
arguments={"appname": "sz_cache", "app_cache_dir": tempfile.gettempdir()},
)
subliminal.region.backend.sync()


def test_list_subtitles_episode(region, episodes):
item = episodes["breaking_bad_s01e01"]
language = Language("eng")
with Addic7edProvider(
os.environ["ADDIC7ED_USERNAME"], os.environ["ADDIC7ED_PASSWORD"]
) as provider:
subtitles = provider.list_subtitles(item, {language})
assert len(subtitles) == 6

subliminal.region.backend.sync()


def test_list_subtitles_movie(region, movies):
item = movies["dune"]
language = Language("eng")
with Addic7edProvider(
os.environ["ADDIC7ED_USERNAME"], os.environ["ADDIC7ED_PASSWORD"]
) as provider:
subtitles = provider.list_subtitles(item, {language})
assert len(subtitles) == 2

subliminal.region.backend.sync()

0 comments on commit a88f0a7

Please sign in to comment.