2012-05-31 04:17:00 -04:00
|
|
|
"""
|
2012-06-01 01:31:34 -04:00
|
|
|
test_imdb.py - tests for the imdb module
|
2012-05-31 04:17:00 -04:00
|
|
|
author: mutantmonkey <mutantmonkey@mutantmonkey.in>
|
|
|
|
"""
|
|
|
|
|
|
|
|
# add current working directory to path
|
|
|
|
import sys
|
|
|
|
sys.path.append('.')
|
|
|
|
|
|
|
|
import re
|
|
|
|
import unittest
|
|
|
|
from mock import MagicMock, Mock
|
|
|
|
from modules.imdb import imdb_search, imdb
|
|
|
|
|
|
|
|
class TestImdb(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
self.phenny = MagicMock()
|
|
|
|
|
2012-06-01 01:31:34 -04:00
|
|
|
def test_imdb_search(self):
|
2012-05-31 04:17:00 -04:00
|
|
|
data = imdb_search('Hackers')
|
|
|
|
|
|
|
|
assert 'Plot' in data
|
|
|
|
assert 'Title' in data
|
|
|
|
assert 'Year' in data
|
|
|
|
assert 'imdbID' in data
|
|
|
|
|
|
|
|
def test_imdb(self):
|
|
|
|
input = Mock(group=lambda x: 'Antitrust')
|
|
|
|
imdb(self.phenny, input)
|
|
|
|
|
|
|
|
out = self.phenny.reply.call_args[0][0]
|
|
|
|
m = re.match('^.* \(.*\): .* http://imdb.com/title/[a-z\d]+$', out, flags=re.UNICODE)
|
|
|
|
self.assertTrue(m)
|