phenny/modules/test/test_lastfm.py

35 lines
974 B
Python
Raw Normal View History

2012-06-04 03:04:51 -04:00
"""
test_lastfm.py - tests for the lastfm module
author: mutantmonkey <mutantmonkey@mutantmonkey.in>
"""
import re
import unittest
from mock import MagicMock, Mock
from modules.lastfm import now_playing
2012-06-04 03:04:51 -04:00
class TestLastfm(unittest.TestCase):
user1 = 'test'
user2 = 'telnoratti'
2012-06-04 03:04:51 -04:00
def setUp(self):
self.phenny = MagicMock()
def test_now_playing(self):
input = Mock(group=lambda x: self.user1)
now_playing(self.phenny, input)
out = self.phenny.say.call_args[0][0]
m = re.match('^{0} listened to ".+" by .+ on .+ .*$'.format(self.user1), out, flags=re.UNICODE)
2012-06-04 03:04:51 -04:00
self.assertTrue(m)
def test_now_playing_sender(self):
input = Mock(group=lambda x: '')
input.nick = self.user1
now_playing(self.phenny, input)
out = self.phenny.say.call_args[0][0]
m = re.match('^{0} listened to ".+" by .+ on .+ .*$'.format(self.user1), out, flags=re.UNICODE)
2012-06-04 03:04:51 -04:00
self.assertTrue(m)