Files
phenny/modules/test/test_validate.py
mutantmonkey 1472c36fed validate: switch site to validate
Since http://vtluug.org/ seems to always be invalid HTML at inconvenient
times, switch to using http://validator.w3.org/ itself, which I would
hope would always be valid.
2013-09-30 22:47:59 -07:00

32 lines
844 B
Python

"""
test_validate.py - tests for the validation module
author: mutantmonkey <mutantmonkey@mutantmonkey.in>
"""
import re
import unittest
from mock import MagicMock, Mock
from modules.validate import val
class TestValidate(unittest.TestCase):
def setUp(self):
self.phenny = MagicMock()
def test_valid(self):
url = 'http://validator.w3.org/'
input = Mock(group=lambda x: url)
val(self.phenny, input)
self.phenny.reply.assert_called_once_with('{0} is Valid'.format(url))
def test_invalid(self):
url = 'http://microsoft.com/'
input = Mock(group=lambda x: url)
val(self.phenny, input)
out = self.phenny.reply.call_args[0][0]
m = re.match('^{0} is Invalid \(\d+ errors\)'.format(url),
out, flags=re.UNICODE)
self.assertTrue(m)