mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-10 11:25:05 -05:00
0d9fbc1ad7
This version of SickBeard uses both TVDB and TVRage to search and gather it's series data from allowing you to now have access to and download shows that you couldn't before because of being locked into only what TheTVDB had to offer. Also this edition is based off the code we used in our XEM editon so it does come with scene numbering support as well as all the other features our XEM edition has to offer. Please before using this with your existing database (sickbeard.db) please make a backup copy of it and delete any other database files such as cache.db and failed.db if present, we HIGHLY recommend starting out with no database files at all to make this a fresh start but the choice is at your own risk! Enjoy!
112 lines
4.0 KiB
Python
112 lines
4.0 KiB
Python
# coding=UTF-8
|
|
# Author: Dennis Lutter <lad1337@gmail.com>
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
#
|
|
# This file is part of Sick Beard.
|
|
#
|
|
# Sick Beard 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.
|
|
#
|
|
# Sick Beard 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 Sick Beard. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
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.getURL = 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(tvdbdid)
|
|
show.name = show_name
|
|
show.quality = curData["q"]
|
|
show.saveToDB()
|
|
sickbeard.showList.append(show)
|
|
|
|
for epNumber in curData["e"]:
|
|
episode = TVEpisode(show, curData["s"], epNumber)
|
|
episode.status = c.WANTED
|
|
episode.saveToDB()
|
|
|
|
bestResult = search.findEpisode(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)
|