1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567
|
#!/usr/bin/env python
# encoding:utf-8
# author:dbr/Ben
# project:tvdb_api
# repository:http://github.com/dbr/tvdb_api
# license:unlicense (http://unlicense.org/)
"""Unittests for tvdb_api
"""
import os
import sys
import types
import datetime
import pytest
# Force parent directory onto path
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
import tvdb_api # noqa: E402
from tvdb_api import ( # noqa: E402
tvdb_shownotfound,
tvdb_seasonnotfound,
tvdb_episodenotfound,
tvdb_attributenotfound,
)
import requests_cache.backends # noqa: E402
import requests_cache.backends.base # noqa: E402
try:
from collections.abc import MutableMapping
except ImportError:
from collections import MutableMapping
import pickle # noqa: E402
IS_PY2 = sys.version_info[0] == 2
if IS_PY2:
# Not really but good enough for backwards-compat here
FileNotFoundError = IOError
# By default tests use persistent (commited to Git) cache.
# Setting this env-var allows the cache to be populated.
# This is necessary if, say, adding new test case or TVDB response changes.
# It is recommended to clear the cache directory before re-populating the cache.
ALLOW_CACHE_WRITE_ENV_VAR = "TVDB_API_TESTS_ALLOW_CACHE_WRITE"
ALLOW_CACHE_WRITE = os.getenv(ALLOW_CACHE_WRITE_ENV_VAR, "0") == "1"
class FileCacheDict(MutableMapping):
def __init__(self, base_dir):
self._base_dir = base_dir
def __getitem__(self, key):
path = os.path.join(self._base_dir, key)
try:
with open(path, "rb") as f:
data = pickle.load(f)
return data
except FileNotFoundError:
if not ALLOW_CACHE_WRITE:
raise RuntimeError("No cache file found %s" % path)
raise KeyError
def __setitem__(self, key, item):
if ALLOW_CACHE_WRITE:
path = os.path.join(self._base_dir, key)
with open(path, "wb") as f:
# Dump with protocol 2 to allow Python 2.7 support
f.write(pickle.dumps(item, protocol=2))
else:
raise RuntimeError(
"Requested uncached URL and $%s not set to 1" % (ALLOW_CACHE_WRITE_ENV_VAR)
)
def __delitem__(self, key):
raise RuntimeError("Removing items from test-cache not supported")
def __len__(self):
raise NotImplementedError()
def __iter__(self):
raise NotImplementedError()
def clear(self):
raise NotImplementedError()
def __str__(self):
return str(dict(self.items()))
class FileCache(requests_cache.backends.base.BaseCache):
def __init__(self, _name, fc_base_dir, **options):
super(FileCache, self).__init__(**options)
self.responses = FileCacheDict(base_dir=fc_base_dir)
self.keys_map = FileCacheDict(base_dir=fc_base_dir)
def get_test_cache_session():
here = os.path.dirname(os.path.abspath(__file__))
additional = "_py2" if sys.version_info[0] == 2 else ""
sess = requests_cache.CachedSession(
backend="filesystem",
fc_base_dir=os.path.join(here, "httpcache%s" % additional),
include_get_headers=True,
allowable_codes=(200, 404),
)
sess.cache.create_key = types.MethodType(tvdb_api.create_key, sess.cache)
return sess
class TestTvdbBasic:
# Used to store the cached instance of Tvdb()
t = None
@classmethod
def setup_class(cls):
if cls.t is None:
cls.t = tvdb_api.Tvdb(cache=get_test_cache_session(), banners=False)
def test_different_case(self):
"""Checks the auto-correction of show names is working.
It should correct the weirdly capitalised 'sCruBs' to 'Scrubs'
"""
assert self.t['scrubs'][1][4]['episodeName'] == 'My Old Lady'
assert self.t['sCruBs']['seriesName'] == 'Scrubs'
def test_spaces(self):
"""Checks shownames with spaces
"""
assert self.t['My Name Is Earl']['seriesName'] == 'My Name Is Earl'
assert self.t['My Name Is Earl'][1][4]['episodeName'] == 'Faked My Own Death'
def test_numeric(self):
"""Checks numeric show names
"""
assert self.t['24'][2][20]['episodeName'] == 'Day 2: 3:00 A.M. - 4:00 A.M.'
assert self.t['24']['seriesName'] == '24'
def test_show_iter(self):
"""Iterating over a show returns each seasons
"""
assert len([season for season in self.t['scrubs']]) == 10
def test_season_iter(self):
"""Iterating over a show returns episodes
"""
assert len([episode for episode in self.t['scrubs'][1]]) == 24
def test_get_episode_overview(self):
"""Checks episode overview is retrieved correctly.
"""
assert self.t['Scrubs'][1][6]['overview'].startswith(
'Dr. Cox is still facing the threat of suspension'
)
try:
self.t['Scrubs']['something nonsensical']
except tvdb_attributenotfound:
pass # good
else:
raise AssertionError("Expected attribute error")
def test_get_parent(self):
"""Check accessing series from episode instance
"""
show = self.t['Scrubs']
season = show[1]
episode = show[1][1]
assert season.show == show
assert episode.season == season
assert episode.season.show == show
def test_no_season(self):
show = self.t['Katekyo Hitman Reborn']
print(tvdb_api)
print(show[1][1])
class TestTvdbErrors:
t = None
@classmethod
def setup_class(cls):
if cls.t is None:
cls.t = tvdb_api.Tvdb(cache=get_test_cache_session(), banners=False)
def test_seasonnotfound(self):
"""Checks exception is thrown when season doesn't exist.
"""
with pytest.raises(tvdb_seasonnotfound):
self.t['Scrubs'][42]
def test_shownotfound(self):
"""Checks exception is thrown when episode doesn't exist.
"""
with pytest.raises(tvdb_shownotfound):
self.t['the fake show thingy']
def test_shownotfound_by_id(self):
"""Checks exception is thrown when episode doesn't exist.
"""
with pytest.raises(tvdb_shownotfound):
self.t[999999999999999999999999]
def test_episodenotfound(self):
"""Checks exception is raised for non-existent episode
"""
with pytest.raises(tvdb_episodenotfound):
self.t['Scrubs'][1][30]
def test_attributenamenotfound(self):
"""Checks exception is thrown for if an attribute isn't found.
"""
with pytest.raises(tvdb_attributenotfound):
self.t['Scrubs'][1][6]['afakeattributething']
self.t['Scrubs']['afakeattributething']
class TestTvdbSearch:
# Used to store the cached instance of Tvdb()
t = None
@classmethod
def setup_class(cls):
if cls.t is None:
cls.t = tvdb_api.Tvdb(cache=get_test_cache_session(), banners=False)
def test_search_len(self):
"""There should be only one result matching
"""
assert len(self.t['My Name Is Earl'].search('Faked My Own Death')) == 1
def test_search_checkname(self):
"""Checks you can get the episode name of a search result
"""
assert self.t['Scrubs'].search('my first')[0]['episodeName'] == 'My First Day'
assert (
self.t['My Name Is Earl'].search('Faked My Own Death')[0]['episodeName']
== 'Faked My Own Death'
)
def test_search_multiresults(self):
"""Checks search can return multiple results
"""
assert len(self.t['Scrubs'].search('my first')) >= 3
def test_search_no_params_error(self):
"""Checks not supplying search info raises TypeError"""
with pytest.raises(TypeError):
self.t['Scrubs'].search()
def test_search_season(self):
"""Checks the searching of a single season"""
assert len(self.t['Scrubs'][1].search("First")) == 3
def test_search_show(self):
"""Checks the searching of an entire show"""
assert len(self.t['CNNNN'].search('CNNNN', key='episodeName')) == 3
def test_aired_on(self):
"""Tests aired_on show method"""
sr = self.t['Scrubs'].aired_on(datetime.date(2001, 10, 2))
assert len(sr) == 1
assert sr[0]['episodeName'] == u'My First Day'
try:
sr = self.t['Scrubs'].aired_on(datetime.date(1801, 1, 1))
except tvdb_episodenotfound:
pass # Good
else:
raise AssertionError("expected episode not found exception")
class TestTvdbData:
# Used to store the cached instance of Tvdb()
t = None
@classmethod
def setup_class(cls):
if cls.t is None:
cls.t = tvdb_api.Tvdb(cache=get_test_cache_session(), banners=False)
def test_episode_data(self):
"""Check the firstaired value is retrieved
"""
assert self.t['lost']['firstAired'] == '2004-09-22'
class TestTvdbMisc:
# Used to store the cached instance of Tvdb()
t = None
@classmethod
def setup_class(cls):
if cls.t is None:
cls.t = tvdb_api.Tvdb(cache=get_test_cache_session(), banners=False)
def test_repr_show(self):
"""Check repr() of Season
"""
assert (
repr(self.t['CNNNN']).replace("u'", "'")
== "<Show 'Chaser Non-Stop News Network (CNNNN)' (containing 3 seasons)>"
)
def test_repr_season(self):
"""Check repr() of Season
"""
assert repr(self.t['CNNNN'][1]) == "<Season instance (containing 9 episodes)>"
def test_repr_episode(self):
"""Check repr() of Episode
"""
assert repr(self.t['CNNNN'][1][1]).replace("u'", "'") == "<Episode 01x01 - 'Terror Alert'>"
def test_available_langs(self):
"""Check available_languages returns something sane looking
"""
langs = self.t.available_languages()
print(langs)
assert "en" in langs
class TestTvdbLanguages:
def test_episode_name_french(self):
"""Check episode data is in French (language="fr")
"""
t = tvdb_api.Tvdb(cache=get_test_cache_session(), language="fr")
assert t['scrubs'][1][1]['episodeName'] == "Mon premier jour"
assert t['scrubs']['overview'].startswith(u"J.D. est un jeune m\xe9decin qui d\xe9bute")
def test_episode_name_spanish(self):
"""Check episode data is in Spanish (language="es")
"""
t = tvdb_api.Tvdb(cache=get_test_cache_session(), language="es")
assert t['scrubs'][1][1]['episodeName'] == u'Mi primer día'
assert t['scrubs']['overview'].startswith(u'Scrubs es una divertida comedia')
def test_multilanguage_selection(self):
"""Check selected language is used
"""
t_en = tvdb_api.Tvdb(cache=get_test_cache_session(), language="en")
t_it = tvdb_api.Tvdb(cache=get_test_cache_session(), language="it")
assert t_en['dexter'][1][2]['episodeName'] == "Crocodile"
assert t_it['dexter'][1][2]['episodeName'] == "Lacrime di coccodrillo"
class TestTvdbUnicode:
def test_search_in_chinese(self):
"""Check searching for show with language=zh returns Chinese seriesname
"""
t = tvdb_api.Tvdb(cache=get_test_cache_session(), language="zh")
show = t[u'T\xecnh Ng\u01b0\u1eddi Hi\u1ec7n \u0110\u1ea1i']
assert type(show) == tvdb_api.Show
assert show['seriesName'] == u'T\xecnh Ng\u01b0\u1eddi Hi\u1ec7n \u0110\u1ea1i'
@pytest.mark.skip('Новое API не возвращает сразу все языки')
def test_search_in_all_languages(self):
"""Check search_all_languages returns Chinese show, with language=en
"""
t = tvdb_api.Tvdb(cache=get_test_cache_session(), search_all_languages=True, language="en")
show = t[u'T\xecnh Ng\u01b0\u1eddi Hi\u1ec7n \u0110\u1ea1i']
assert type(show) == tvdb_api.Show
assert show['seriesName'] == u'Virtues Of Harmony II'
class TestTvdbBanners:
# Used to store the cached instance of Tvdb()
t = None
@classmethod
def setup_class(cls):
if cls.t is None:
cls.t = tvdb_api.Tvdb(cache=get_test_cache_session(), banners=True)
def test_have_banners(self):
"""Check banners at least one banner is found
"""
assert len(self.t['scrubs']['_banners']) > 0
def test_banner_url(self):
"""Checks banner URLs start with http://
"""
for banner_type, banner_data in self.t['scrubs']['_banners'].items():
for res, res_data in banner_data.items():
if res != 'raw':
for bid, banner_info in res_data.items():
assert banner_info['_bannerpath'].startswith("http://")
@pytest.mark.skip('В новом API нет картинки у эпизода')
def test_episode_image(self):
"""Checks episode 'filename' image is fully qualified URL
"""
assert self.t['scrubs'][1][1]['filename'].startswith("http://")
@pytest.mark.skip('В новом API у сериала кроме банера больше нет картинок')
def test_show_artwork(self):
"""Checks various image URLs within season data are fully qualified
"""
for key in ['banner', 'fanart', 'poster']:
assert self.t['scrubs'][key].startswith("http://")
class TestTvdbActors:
t = None
@classmethod
def setup_class(cls):
if cls.t is None:
cls.t = tvdb_api.Tvdb(cache=get_test_cache_session(), actors=True)
def test_actors_is_correct_datatype(self):
"""Check show/_actors key exists and is correct type"""
assert isinstance(self.t['scrubs']['_actors'], tvdb_api.Actors)
def test_actors_has_actor(self):
"""Check show has at least one Actor
"""
assert isinstance(self.t['scrubs']['_actors'][0], tvdb_api.Actor)
def test_actor_has_name(self):
"""Check first actor has a name"""
names = [actor['name'] for actor in self.t['scrubs']['_actors']]
assert u"Zach Braff" in names
def test_actor_image_corrected(self):
"""Check image URL is fully qualified
"""
for actor in self.t['scrubs']['_actors']:
if actor['image'] is not None:
# Actor's image can be None, it displays as the placeholder
# image on thetvdb.com
assert actor['image'].startswith("http://")
class TestTvdbDoctest:
def test_doctest(self):
"""Check docstring examples works"""
import doctest
doctest.testmod(tvdb_api)
class TestTvdbCustomCaching:
def test_true_false_string(self):
"""Tests setting cache to True/False/string
Basic tests, only checking for errors
"""
tvdb_api.Tvdb(cache=True)
tvdb_api.Tvdb(cache=False)
tvdb_api.Tvdb(cache="/tmp")
def test_invalid_cache_option(self):
"""Tests setting cache to invalid value
"""
try:
tvdb_api.Tvdb(cache=2.3)
except ValueError:
pass
else:
pytest.fail("Expected ValueError from setting cache to float")
def test_custom_request_session(self):
from requests import Session as OriginalSession
class Used(Exception):
pass
class CustomCacheForTest(OriginalSession):
call_count = 0
def request(self, *args, **kwargs):
raise Used("Hurray")
c = CustomCacheForTest()
t = tvdb_api.Tvdb(cache=c)
try:
t['scrubs']
except Used:
pass
else:
pytest.fail("Did not use custom session")
class TestTvdbById:
t = None
@classmethod
def setup_class(cls):
if cls.t is None:
cls.t = tvdb_api.Tvdb(cache=get_test_cache_session(), actors=True)
def test_actors_is_correct_datatype(self):
"""Check show/_actors key exists and is correct type"""
assert self.t[76156]['seriesName'] == 'Scrubs'
class TestTvdbShowOrdering:
def test_ordering(self):
"""Test Tvdb.search method
"""
t_dvd = tvdb_api.Tvdb(cache=get_test_cache_session(), dvdorder=True)
t_air = tvdb_api.Tvdb(cache=get_test_cache_session())
assert u'The Train Job' == t_air['Firefly'][1][1]['episodeName']
assert u'Serenity' == t_dvd['Firefly'][1][1]['episodeName']
assert (
u'The Cat and the Claw (1)' == t_air['Batman The Animated Series'][1][1]['episodeName']
)
assert u'On Leather Wings' == t_dvd['Batman The Animated Series'][1][1]['episodeName']
class TestTvdbShowSearch:
# Used to store the cached instance of Tvdb()
t = None
@classmethod
def setup_class(cls):
if cls.t is None:
cls.t = tvdb_api.Tvdb(cache=get_test_cache_session())
def test_search(self):
"""Test Tvdb.search method
"""
results = self.t.search("my name is earl")
all_ids = [x['id'] for x in results]
assert 75397 in all_ids
class TestTvdbAltNames:
t = None
@classmethod
def setup_class(cls):
if cls.t is None:
cls.t = tvdb_api.Tvdb(cache=get_test_cache_session(), actors=True)
def test_1(self):
"""Tests basic access of series name alias
"""
results = self.t.search("Don't Trust the B---- in Apartment 23")
series = results[0]
assert 'Apartment 23' in series['aliases']
if __name__ == '__main__':
cache = get_test_cache_session()
t = tvdb_api.Tvdb(cache=cache)
t['scrubs'][1][2]
t = tvdb_api.Tvdb(cache=cache)
t['scrubs'][1][2]
# pytest.main()
|