mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 01:15:05 +00:00
c75ef36cfe
Fix double use of var `result` overwrites the return value and causes an error in _parse_custom_exceptions. Change remove Python 3.7 from CI
294 lines
12 KiB
Python
294 lines
12 KiB
Python
# coding=UTF-8
|
|
# Author: Dennis Lutter <lad1337@gmail.com>
|
|
#
|
|
# This file is part of SickGear.
|
|
#
|
|
# SickGear is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# SickGear is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with SickGear. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import unittest
|
|
import test_lib as test
|
|
from random import randint
|
|
|
|
import datetime
|
|
import copy
|
|
import sickgear
|
|
from sickgear.tv import TVEpisode, TVShow, TVidProdid, prodid_bitshift
|
|
from exceptions_helper import MultipleShowObjectsException
|
|
from sickgear.helpers import find_show_by_id
|
|
from sickgear import indexermapper
|
|
from sickgear.indexers.indexer_api import TVInfoAPI
|
|
from sickgear.indexers.indexer_config import TVINFO_IMDB, TVINFO_TMDB, TVINFO_TVDB, TVINFO_TVMAZE, TVINFO_TVRAGE
|
|
from sickgear.scene_exceptions import ReleaseMap
|
|
|
|
# noinspection PyUnreachableCode
|
|
if False:
|
|
from typing import Optional
|
|
|
|
|
|
class TVShowTests(test.SickbeardTestDBCase):
|
|
|
|
def setUp(self):
|
|
super(TVShowTests, self).setUp()
|
|
sickgear.showList = []
|
|
sickgear.showDict = {}
|
|
_ = ReleaseMap()
|
|
|
|
def test_init_indexerid(self):
|
|
show_obj = TVShow(1, 1, 'en')
|
|
self.assertEqual(show_obj.prodid, 1)
|
|
|
|
def test_change_indexerid(self):
|
|
show_obj = TVShow(1, 1, 'en')
|
|
show_obj.name = 'show name'
|
|
show_obj.tvrname = 'show name'
|
|
show_obj.network = 'cbs'
|
|
show_obj.genre = 'crime'
|
|
show_obj.runtime = 40
|
|
show_obj.status = '5'
|
|
show_obj.airs = 'monday'
|
|
show_obj.startyear = 1987
|
|
|
|
show_obj.save_to_db()
|
|
show_obj.load_from_db()
|
|
|
|
show_obj.prodid = 2
|
|
show_obj.save_to_db()
|
|
show_obj.load_from_db()
|
|
|
|
self.assertEqual(show_obj.prodid, 2)
|
|
|
|
def test_set_name(self):
|
|
show_obj = TVShow(1, 1, 'en')
|
|
show_obj.name = 'newName'
|
|
show_obj.save_to_db()
|
|
show_obj.load_from_db()
|
|
self.assertEqual(show_obj.name, 'newName')
|
|
|
|
|
|
class TVEpisodeTests(test.SickbeardTestDBCase):
|
|
|
|
def setUp(self):
|
|
super(TVEpisodeTests, self).setUp()
|
|
sickgear.showList = []
|
|
sickgear.showDict = {}
|
|
_ = ReleaseMap()
|
|
|
|
def test_init_empty_db(self):
|
|
show_obj = TVShow(1, 1, 'en')
|
|
ep_obj = TVEpisode(show_obj, 1, 1)
|
|
ep_obj.name = 'asdasdasdajkaj'
|
|
ep_obj.save_to_db()
|
|
ep_obj.load_from_db(1, 1)
|
|
self.assertEqual(ep_obj.name, 'asdasdasdajkaj')
|
|
|
|
|
|
class TVTests(test.SickbeardTestDBCase):
|
|
|
|
def setUp(self):
|
|
super(TVTests, self).setUp()
|
|
sickgear.showList = []
|
|
sickgear.showDict = {}
|
|
|
|
@staticmethod
|
|
def test_getEpisode():
|
|
show_obj = TVShow(1, 1, 'en')
|
|
show_obj.name = 'show name'
|
|
show_obj.tvrname = 'show name'
|
|
show_obj.network = 'cbs'
|
|
show_obj.genre = 'crime'
|
|
show_obj.runtime = 40
|
|
show_obj.status = '5'
|
|
show_obj.airs = 'monday'
|
|
show_obj.startyear = 1987
|
|
show_obj.save_to_db()
|
|
sickgear.showList = [show_obj]
|
|
sickgear.showDict = {show_obj.sid_int: show_obj}
|
|
|
|
|
|
class TVFormatPatternTests(test.SickbeardTestDBCase):
|
|
|
|
def setUp(self):
|
|
super(TVFormatPatternTests, self).setUp()
|
|
sickgear.showList = []
|
|
sickgear.showDict = {}
|
|
|
|
def test_getEpisode(self):
|
|
show_obj = TVShow(1, 1, 'en')
|
|
show_obj.name = 'show name'
|
|
show_obj.tvrname = 'show name'
|
|
show_obj.network = 'cbs'
|
|
show_obj.genre = 'crime'
|
|
show_obj.runtime = 40
|
|
show_obj.status = '5'
|
|
show_obj.airs = 'monday'
|
|
show_obj.startyear = 1987
|
|
sickgear.showList = [show_obj]
|
|
sickgear.showDict = {show_obj.sid_int: show_obj}
|
|
show_obj.sxe_ep_obj[1] = {}
|
|
show_obj.sxe_ep_obj[1][1] = TVEpisode(show_obj, 1, 1, '16)')
|
|
show_obj.sxe_ep_obj[1][1].dirty = False
|
|
show_obj.sxe_ep_obj[1][1].name = None
|
|
self.assertEqual(show_obj.sxe_ep_obj[1][1].dirty, False)
|
|
self.assertEqual(
|
|
show_obj.sxe_ep_obj[1][1]._format_pattern('%SN - %Sx%0E - %EN - %QN'),
|
|
'show name - 1x01 - tba - Unknown')
|
|
show_obj.sxe_ep_obj[1][1].dirty = False
|
|
show_obj.sxe_ep_obj[1][1].name = 'ep name'
|
|
self.assertEqual(show_obj.sxe_ep_obj[1][1].dirty, True)
|
|
self.assertEqual(
|
|
show_obj.sxe_ep_obj[1][1]._format_pattern('%SN - %Sx%0E - %EN - %QN'),
|
|
'show name - 1x01 - ep name - Unknown')
|
|
|
|
|
|
class TVidProdidTests(test.SickbeardTestDBCase):
|
|
@staticmethod
|
|
def max_bits(b):
|
|
return (1 << b) - 1
|
|
|
|
def test_TVidProdid(self):
|
|
max_tvid = self.max_bits(prodid_bitshift)
|
|
max_prodid = self.max_bits(60)
|
|
i = 0
|
|
while 1000 > i:
|
|
i += 1
|
|
tvid = randint(1, max_tvid)
|
|
prodid = randint(1, max_prodid)
|
|
tvid_prodid_obj = TVidProdid({tvid: prodid})
|
|
|
|
msg_vars = ': tvid = %s ; prodid = %s' % (tvid, prodid)
|
|
|
|
self.assertEqual(tvid, tvid_prodid_obj.tvid, msg='dict tvid test%s' % msg_vars)
|
|
self.assertEqual(prodid, tvid_prodid_obj.prodid, msg='dict prodid test%s' % msg_vars)
|
|
|
|
self.assertEqual((tvid, prodid), tvid_prodid_obj.tuple, msg='tuple test%s' % msg_vars)
|
|
self.assertEqual({tvid: prodid}, tvid_prodid_obj.dict, msg='dict test%s' % msg_vars)
|
|
self.assertEqual([tvid, prodid], tvid_prodid_obj.list, msg='list test%s' % msg_vars)
|
|
|
|
new_sid = prodid << prodid_bitshift | tvid
|
|
self.assertEqual(new_sid, tvid_prodid_obj.int, msg='int test%s' % msg_vars)
|
|
|
|
sid = tvid_prodid_obj.int
|
|
reverse_obj = TVidProdid(sid)
|
|
self.assertEqual(tvid, reverse_obj.tvid, msg='reverse int tvid test%s' % msg_vars)
|
|
self.assertEqual(prodid, reverse_obj.prodid, msg='reverse int prodid test%s' % msg_vars)
|
|
|
|
str_reverse_obj = TVidProdid('%s%s%s' % (tvid, TVidProdid.glue, prodid))
|
|
self.assertEqual(tvid, str_reverse_obj.tvid, msg='reverse str tvid test%s' % msg_vars)
|
|
self.assertEqual(prodid, str_reverse_obj.prodid, msg='reverse str prodid test%s' % msg_vars)
|
|
|
|
|
|
ids_base = {source: {'id': 0, 'status': indexermapper.MapStatus.NO_AUTOMATIC_CHANGE, 'date': datetime.date.today()}
|
|
for source in TVInfoAPI().all_sources}
|
|
|
|
shows = [{'tvid': TVINFO_TVDB, 'prodid': 123,
|
|
'ids': {TVINFO_TVMAZE: {'id': 22}, TVINFO_IMDB: {'id': 54321}, TVINFO_TMDB: {'id': 9877}}},
|
|
{'tvid': TVINFO_TVDB, 'prodid': 222,
|
|
'ids': {TVINFO_TVMAZE: {'id': 854}, TVINFO_IMDB: {'id': 9435}, TVINFO_TMDB: {'id': 2457}}},
|
|
{'tvid': TVINFO_TVMAZE, 'prodid': 123,
|
|
'ids': {TVINFO_TVMAZE: {'id': 957}, TVINFO_IMDB: {'id': 4751}, TVINFO_TMDB: {'id': 659}}},
|
|
{'tvid': TVINFO_TMDB, 'prodid': 123,
|
|
'ids': {TVINFO_TVMAZE: {'id': 428}, TVINFO_IMDB: {'id': 999}, TVINFO_TMDB: {'id': 754}}}
|
|
]
|
|
|
|
find_tests = [
|
|
{'para': {'show_id': {TVINFO_TVMAZE: 22, TVINFO_TVRAGE: 785}, 'no_mapped_ids': False},
|
|
'result': {'tvid': TVINFO_TVDB, 'prodid': 123},
|
|
'description': 'search via mapped id'},
|
|
{'para': {'show_id': {TVINFO_TVDB: 123}}, 'result': {'tvid': TVINFO_TVDB, 'prodid': 123},
|
|
'description': 'simple standard search via main id dict'},
|
|
{'para': {'show_id': {TVINFO_TVDB: 12345}}, 'result': None,
|
|
'description': 'simple standard search via main id dict, for non-existing show'},
|
|
{'para': {'show_id': {TVINFO_TVDB: 123, TVINFO_TVMAZE: 123}, 'check_multishow': True},
|
|
'result': {'success': False},
|
|
'description': 'search via 2 ids matching multiple shows and multi show check'},
|
|
{'para': {'show_id': {TVINFO_TVDB: 5555, TVINFO_TVMAZE: 123}, 'check_multishow': True},
|
|
'result': {'tvid': TVINFO_TVMAZE, 'prodid': 123},
|
|
'description': 'search via 2 ids matching only 1 show and multi show check'},
|
|
{'para': {'show_id': {TVINFO_TVDB: 123, TVINFO_TVMAZE: 123}},
|
|
'result': {'tvid': TVINFO_TVDB, 'prodid': 123},
|
|
'description': 'search via 2 ids matching only 1 show without multi show check #1'},
|
|
{'para': {'show_id': {TVINFO_TVDB: 123, TVINFO_TVRAGE: 22}},
|
|
'result': {'tvid': TVINFO_TVDB, 'prodid': 123},
|
|
'description': 'search via 2 ids matching only 1 show without multi show check #2'},
|
|
{'para': {'show_id': {TVINFO_TVMAZE: 22, TVINFO_TVRAGE: 785}},
|
|
'result': None,
|
|
'description': 'search for 2 non-existing ids without mapping'},
|
|
{'para': {'show_id': {TVINFO_IMDB: 123}},
|
|
'result': None, 'description': 'invalid sid search (tvid above tvid_bitmask)'},
|
|
{'para': {'show_id': '%s:123' % TVINFO_TVDB}, 'result': {'tvid': TVINFO_TVDB, 'prodid': 123},
|
|
'description': 'simple search via tvid_prodid string'},
|
|
{'para': {'show_id': '%s:123' % TVINFO_TVDB, 'check_multishow': True},
|
|
'result': {'tvid': TVINFO_TVDB, 'prodid': 123},
|
|
'description': 'simple search via tvid_prodid string and check multishow'},
|
|
]
|
|
|
|
|
|
class TVFindTests(test.SickbeardTestDBCase):
|
|
def setUp(self):
|
|
super(TVFindTests, self).setUp()
|
|
sickgear.showList = []
|
|
sickgear.showDict = {}
|
|
sickgear.indexermapper.indexer_list = [i for i in TVInfoAPI().all_sources]
|
|
for show in shows:
|
|
sh = TVShow(show['tvid'], show['prodid'])
|
|
ids = copy.deepcopy(ids_base)
|
|
if show.get('ids'):
|
|
for sub_ids in show['ids']:
|
|
ids[sub_ids].update(show['ids'][sub_ids])
|
|
ids[show['tvid']]['status'] = indexermapper.MapStatus.SOURCE
|
|
ids[show['tvid']]['id'] = show['prodid']
|
|
sh.ids = ids
|
|
sickgear.showList.append(sh)
|
|
sickgear.showDict[sh.sid_int] = sh
|
|
|
|
def test_find_show_by_id(self):
|
|
result = None # type: Optional[TVShow]
|
|
for show_test in find_tests:
|
|
success = True
|
|
try:
|
|
result = find_show_by_id(**show_test['para'])
|
|
except MultipleShowObjectsException:
|
|
success = False
|
|
if isinstance(show_test['result'], dict) and None is not show_test['result'].get('success', None):
|
|
self.assertEqual(success, show_test['result'].get('success', None),
|
|
msg='error finding show (%s) with para: %s' %
|
|
(show_test.get('description'), show_test['para']))
|
|
else:
|
|
self.assertEqual(result and {'tvid': result.tvid, 'prodid': result.prodid}, show_test['result'],
|
|
msg='error finding show (%s) with para: %s' %
|
|
(show_test.get('description'), show_test['para']))
|
|
|
|
|
|
if '__main__' == __name__:
|
|
print('==================')
|
|
print('STARTING - TV TESTS')
|
|
print('==================')
|
|
print('######################################################################')
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(TVShowTests)
|
|
unittest.TextTestRunner(verbosity=2).run(suite)
|
|
print('######################################################################')
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(TVEpisodeTests)
|
|
unittest.TextTestRunner(verbosity=2).run(suite)
|
|
print('######################################################################')
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(TVTests)
|
|
unittest.TextTestRunner(verbosity=2).run(suite)
|
|
print('######################################################################')
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(TVFormatPatternTests)
|
|
unittest.TextTestRunner(verbosity=2).run(suite)
|
|
print('######################################################################')
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(TVidProdidTests)
|
|
unittest.TextTestRunner(verbosity=2).run(suite)
|
|
print('######################################################################')
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(TVFindTests)
|
|
unittest.TextTestRunner(verbosity=2).run(suite)
|