mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-30 16:33:37 +00:00
43778d8edd
Add BitMeTV torrent provider. Add TVChaosUK torrent provider. Add HD-Space torrent provider. Add Shazbat torrent provider. Remove Animenzb provider. Change use tvdbid for searching usenet providers. Change consolidate global and per show ignore and require words functions. Change "Require word" title and notes on Config Search page to properly describe its functional logic. Add "Reject Blu-ray M2TS releases" to BTN provider. Add regular expression capability to ignore and require words by starting wordlist with "regex:". Add list shows with custom ignore and require words under the global counterparts on the Search Settings page. Fix failure to search for more than one selected wanted episode.
113 lines
4.1 KiB
Python
113 lines
4.1 KiB
Python
# coding=UTF-8
|
|
# Author: Dennis Lutter <lad1337@gmail.com>
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
#
|
|
# 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/>.
|
|
|
|
from __future__ import print_function
|
|
import random
|
|
import unittest
|
|
|
|
import test_lib as test
|
|
|
|
import sys, os.path
|
|
|
|
import sickbeard.search as search
|
|
import sickbeard
|
|
from sickbeard.tv import TVEpisode, TVShow
|
|
import sickbeard.common as c
|
|
|
|
tests = {'Dexter': {'a': 1, 'q': c.HD, 's': 5, 'e': [7], 'b': 'Dexter.S05E07.720p.BluRay.X264-REWARD', 'i': ['Dexter.S05E07.720p.BluRay.X264-REWARD', 'Dexter.S05E07.720p.X264-REWARD']},
|
|
'House': {'a': 1, 'q': c.HD, 's': 4, 'e': [5], 'b': 'House.4x5.720p.BluRay.X264-REWARD', 'i': ['Dexter.S05E04.720p.X264-REWARD', 'House.4x5.720p.BluRay.X264-REWARD']},
|
|
'Hells Kitchen': {'a': 1, 'q': c.SD, 's': 6, 'e': [14, 15], 'b': 'Hells.Kitchen.s6e14e15.HDTV.XviD-ASAP', 'i': ['Hells.Kitchen.S06E14.HDTV.XviD-ASAP', 'Hells.Kitchen.6x14.HDTV.XviD-ASAP', 'Hells.Kitchen.s6e14e15.HDTV.XviD-ASAP']}
|
|
}
|
|
|
|
|
|
def _create_fake_xml(items):
|
|
xml = '<?xml version="1.0" encoding="UTF-8" ?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:newznab="http://www.newznab.com/DTD/2010/feeds/attributes/" encoding="utf-8"><channel>'
|
|
for item in items:
|
|
xml += '<item><title>' + item + '</title>\n'
|
|
xml += '<link>http://fantasy.com/' + item + '</link></item>'
|
|
xml += '</channel></rss>'
|
|
return xml
|
|
|
|
|
|
searchItems = []
|
|
|
|
|
|
class SearchTest(test.SickbeardTestDBCase):
|
|
|
|
def _fake_getURL(self, url, headers=None):
|
|
global searchItems
|
|
return _create_fake_xml(searchItems)
|
|
|
|
def _fake_isActive(self):
|
|
return True
|
|
|
|
def __init__(self, something):
|
|
for provider in sickbeard.providers.sortedProviderList():
|
|
provider.get_url = self._fake_getURL
|
|
#provider.isActive = self._fake_isActive
|
|
|
|
super(SearchTest, self).__init__(something)
|
|
|
|
|
|
def test_generator(tvdbdid, show_name, curData, forceSearch):
|
|
|
|
def test(self):
|
|
global searchItems
|
|
searchItems = curData['i']
|
|
show = TVShow(1, tvdbdid)
|
|
show.name = show_name
|
|
show.quality = curData['q']
|
|
show.saveToDB()
|
|
sickbeard.showList.append(show)
|
|
episode = None
|
|
|
|
for epNumber in curData['e']:
|
|
episode = TVEpisode(show, curData['s'], epNumber)
|
|
episode.status = c.WANTED
|
|
episode.saveToDB()
|
|
|
|
bestResult = search.search_providers(show, episode.season, episode.episode, forceSearch)
|
|
if not bestResult:
|
|
self.assertEqual(curData['b'], bestResult)
|
|
self.assertEqual(curData['b'], bestResult.name) #first is expected, second is choosen one
|
|
return test
|
|
|
|
if __name__ == '__main__':
|
|
print('==================')
|
|
print('STARTING - Snatch TESTS')
|
|
print('==================')
|
|
print('######################################################################')
|
|
# create the test methods
|
|
tvdbdid = 1
|
|
for forceSearch in (True, False):
|
|
for name, curData in tests.items():
|
|
if not curData['a']:
|
|
continue
|
|
fname = name.replace(' ', '_')
|
|
if forceSearch:
|
|
test_name = 'test_manual_%s_%s' % (fname, tvdbdid)
|
|
else:
|
|
test_name = 'test_%s_%s' % (fname, tvdbdid)
|
|
|
|
test = test_generator(tvdbdid, name, curData, forceSearch)
|
|
setattr(SearchTest, test_name, test)
|
|
tvdbdid += 1
|
|
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(SearchTest)
|
|
unittest.TextTestRunner(verbosity=2).run(suite)
|