2014-03-10 05:18:05 +00:00
|
|
|
# coding=UTF-8
|
|
|
|
# Author: Dennis Lutter <lad1337@gmail.com>
|
|
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
|
|
#
|
2014-11-12 16:43:14 +00:00
|
|
|
# This file is part of SickGear.
|
2014-03-10 05:18:05 +00:00
|
|
|
#
|
2014-11-12 16:43:14 +00:00
|
|
|
# SickGear is free software: you can redistribute it and/or modify
|
2014-03-10 05:18:05 +00:00
|
|
|
# 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.
|
|
|
|
#
|
2014-11-12 16:43:14 +00:00
|
|
|
# SickGear is distributed in the hope that it will be useful,
|
2014-03-10 05:18:05 +00:00
|
|
|
# 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
|
2014-11-12 16:43:14 +00:00
|
|
|
# along with SickGear. If not, see <http://www.gnu.org/licenses/>.
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-06-09 11:13:00 +00:00
|
|
|
from __future__ import print_function
|
2014-03-10 05:18:05 +00:00
|
|
|
import random
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
import test_lib as test
|
|
|
|
|
|
|
|
import sys, os.path
|
|
|
|
|
|
|
|
from sickbeard.postProcessor import PostProcessor
|
|
|
|
import sickbeard
|
|
|
|
from sickbeard.tv import TVEpisode, TVShow
|
2014-09-24 04:51:48 +00:00
|
|
|
from sickbeard.name_cache import addNameToCache
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
class PPInitTests(unittest.TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.pp = PostProcessor(test.FILEPATH)
|
|
|
|
|
|
|
|
def test_init_file_name(self):
|
|
|
|
self.assertEqual(self.pp.file_name, test.FILENAME)
|
|
|
|
|
|
|
|
def test_init_folder_name(self):
|
|
|
|
self.assertEqual(self.pp.folder_name, test.SHOWNAME)
|
|
|
|
|
|
|
|
class PPBasicTests(test.SickbeardTestDBCase):
|
|
|
|
|
|
|
|
def test_process(self):
|
2014-04-26 11:17:28 +00:00
|
|
|
show = TVShow(1,3)
|
2014-03-10 05:18:05 +00:00
|
|
|
show.name = test.SHOWNAME
|
|
|
|
show.location = test.SHOWDIR
|
|
|
|
show.saveToDB()
|
|
|
|
|
|
|
|
sickbeard.showList = [show]
|
|
|
|
ep = TVEpisode(show, test.SEASON, test.EPISODE)
|
2015-08-11 11:51:26 +00:00
|
|
|
ep.name = 'some ep name'
|
2014-03-10 05:18:05 +00:00
|
|
|
ep.saveToDB()
|
|
|
|
|
2014-09-24 04:51:48 +00:00
|
|
|
addNameToCache('show name', 3)
|
|
|
|
sickbeard.PROCESS_METHOD = 'move'
|
|
|
|
|
2014-03-10 05:18:05 +00:00
|
|
|
pp = PostProcessor(test.FILEPATH)
|
|
|
|
self.assertTrue(pp.process())
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2015-06-09 11:13:00 +00:00
|
|
|
print('==================')
|
|
|
|
print('STARTING - PostProcessor TESTS')
|
|
|
|
print('==================')
|
|
|
|
print('######################################################################')
|
2014-03-10 05:18:05 +00:00
|
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(PPInitTests)
|
|
|
|
unittest.TextTestRunner(verbosity=2).run(suite)
|
2015-06-09 11:13:00 +00:00
|
|
|
print('######################################################################')
|
2014-03-10 05:18:05 +00:00
|
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(PPBasicTests)
|
|
|
|
unittest.TextTestRunner(verbosity=2).run(suite)
|