forked from midgetspy/Sick-Beard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
to much to tell … added a snatch tester …which test if the whole sear…
…ch parsing picking routine works as wanted
- Loading branch information
Showing
8 changed files
with
227 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
# coding=UTF-8 | ||
# Author: Dennis Lutter <[email protected]> | ||
# 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": {"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": {"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']} | ||
} | ||
|
||
|
||
|
||
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 | ||
|
||
# the real one tries to contact tvdb just stop it from getting more info on the ep | ||
def _fake_specifyEP(self, season, episode): | ||
pass | ||
|
||
TVEpisode.specifyEpisode = _fake_specifyEP | ||
|
||
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) | ||
|
||
episode = TVEpisode(show, curData["s"], curData["e"]) | ||
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) | ||
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 forceSearch: | ||
test_name = 'test_manual_%s_%s' % (name, tvdbdid) | ||
else: | ||
test_name = 'test_%s_%s' % (name, 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) |
Oops, something went wrong.