add clock tests

master
mutantmonkey 2012-06-02 15:06:08 -07:00
parent 0e675fb713
commit 888854adb2
1 changed files with 77 additions and 0 deletions

View File

@ -0,0 +1,77 @@
"""
test_clock.py - tests for the clock module
author: mutantmonkey <mutantmonkey@mutantmonkey.in>
"""
import re
import datetime
import unittest
from mock import MagicMock, Mock, patch
from modules.clock import f_time, beats, yi, tock, npl
class TestClock(unittest.TestCase):
def setUp(self):
self.phenny = MagicMock()
@patch('time.time')
def test_time(self, mock_time):
mock_time.return_value = 1338674651
input = Mock(
match=Mock(group=lambda x: 'EDT'),
sender='#phenny', nick='phenny_test')
f_time(self.phenny, input)
self.phenny.msg.called_once_with('#phenny',
"Sat, 02 Jun 2012 18:04:11 EDT")
@patch('time.time')
def test_beats_zero(self, mock_time):
mock_time.return_value = 0
beats(self.phenny, None)
self.phenny.say.assert_called_with('@041')
@patch('time.time')
def test_beats_normal(self, mock_time):
mock_time.return_value = 369182
beats(self.phenny, None)
self.phenny.say.assert_called_with('@314')
@patch('time.time')
def test_yi_normal(self, mock_time):
mock_time.return_value = 369182
yi(self.phenny, None)
self.phenny.say.assert_called_with('Not yet...')
@patch('time.time')
def test_yi_soon(self, mock_time):
mock_time.return_value = 1339419000
yi(self.phenny, None)
self.phenny.say.assert_called_with('Soon...')
@patch('time.time')
def test_yi_now(self, mock_time):
mock_time.return_value = 1339419650
yi(self.phenny, None)
self.phenny.say.assert_called_with('Yes! PARTAI!')
def test_tock(self):
tock(self.phenny, None)
out = self.phenny.say.call_args[0][0]
m = re.match('^.* - tycho.usno.navy.mil$',
out, flags=re.UNICODE)
self.assertTrue(m)
def test_npl(self):
npl(self.phenny, None)
out = self.phenny.say.call_args[0][0]
m = re.match('^.* - ntp1.npl.co.uk$',
out, flags=re.UNICODE)
self.assertTrue(m)