mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-19 12:59:36 -07:00
Added in untracked files for guessit.
Fixed issue #332, we confirm if str or list and take action depending on result.
This commit is contained in:
parent
6a0158d801
commit
0fac36b4fc
42 changed files with 4188 additions and 14 deletions
54
lib/guessit/test/test_api.py
Normal file
54
lib/guessit/test/test_api.py
Normal file
|
@ -0,0 +1,54 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# GuessIt - A library for guessing information from filenames
|
||||
# Copyright (c) 2014 Nicolas Wack <wackou@gmail.com>
|
||||
#
|
||||
# GuessIt is free software; you can redistribute it and/or modify it under
|
||||
# the terms of the Lesser GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# GuessIt 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
|
||||
# Lesser GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the Lesser GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
|
||||
from __future__ import absolute_import, division, print_function, unicode_literals
|
||||
|
||||
from guessit.test.guessittest import *
|
||||
|
||||
|
||||
class TestApi(TestGuessit):
|
||||
def test_api(self):
|
||||
movie_path = 'Movies/Dark City (1998)/Dark.City.(1998).DC.BDRip.720p.DTS.X264-CHD.mkv'
|
||||
|
||||
movie_info = guessit.guess_movie_info(movie_path)
|
||||
video_info = guessit.guess_video_info(movie_path)
|
||||
episode_info = guessit.guess_episode_info(movie_path)
|
||||
file_info = guessit.guess_file_info(movie_path)
|
||||
|
||||
self.assertEqual(guessit.guess_file_info(movie_path, type='movie'), movie_info)
|
||||
self.assertEqual(guessit.guess_file_info(movie_path, type='video'), video_info)
|
||||
self.assertEqual(guessit.guess_file_info(movie_path, type='episode'), episode_info)
|
||||
|
||||
self.assertEqual(guessit.guess_file_info(movie_path, options={'type': 'movie'}), movie_info)
|
||||
self.assertEqual(guessit.guess_file_info(movie_path, options={'type': 'video'}), video_info)
|
||||
self.assertEqual(guessit.guess_file_info(movie_path, options={'type': 'episode'}), episode_info)
|
||||
|
||||
self.assertEqual(guessit.guess_file_info(movie_path, options={'type': 'episode'}, type='movie'), episode_info) # kwargs priority other options
|
||||
|
||||
movie_path_name_only = 'Movies/Dark City (1998)/Dark.City.(1998).DC.BDRip.720p.DTS.X264-CHD'
|
||||
file_info_name_only = guessit.guess_file_info(movie_path_name_only, options={"name_only": True})
|
||||
|
||||
self.assertFalse('container' in file_info_name_only)
|
||||
self.assertTrue('container' in file_info)
|
||||
|
||||
suite = allTests(TestApi)
|
||||
|
||||
if __name__ == '__main__':
|
||||
TextTestRunner(verbosity=2).run(suite)
|
Loading…
Add table
Add a link
Reference in a new issue