openlp/tests/functional/openlp_plugins/remotes/test_router.py

100 lines
3.2 KiB
Python
Raw Normal View History

2013-03-29 08:25:33 +00:00
"""
This module contains tests for the lib submodule of the Remotes plugin.
"""
import os
from unittest import TestCase
from tempfile import mkstemp
from mock import MagicMock
2013-03-29 08:25:33 +00:00
from openlp.core.lib import Settings
2013-04-08 16:53:11 +00:00
from openlp.plugins.remotes.lib.httpserver import HttpRouter, fetch_password, make_sha_hash
2013-03-29 08:25:33 +00:00
from PyQt4 import QtGui
__default_settings__ = {
u'remotes/twelve hour': True,
u'remotes/port': 4316,
u'remotes/https port': 4317,
u'remotes/https enabled': False,
u'remotes/user id': u'openlp',
u'remotes/password': u'password',
u'remotes/authentication enabled': False,
u'remotes/ip address': u'0.0.0.0'
}
2013-03-29 09:06:43 +00:00
class TestRouter(TestCase):
2013-03-29 08:25:33 +00:00
"""
Test the functions in the :mod:`lib` module.
"""
def setUp(self):
"""
Create the UI
"""
fd, self.ini_file = mkstemp(u'.ini')
Settings().set_filename(self.ini_file)
self.application = QtGui.QApplication.instance()
Settings().extend_default_settings(__default_settings__)
2013-03-29 09:06:43 +00:00
self.router = HttpRouter()
2013-03-29 08:25:33 +00:00
def tearDown(self):
"""
Delete all the C++ objects at the end so that we don't have a segfault
"""
del self.application
os.unlink(self.ini_file)
2013-03-29 09:32:46 +00:00
def fetch_password_unknown_test(self):
"""
Test the fetch password code with an unknown userid
"""
# GIVEN: A default configuration
# WHEN: called with the defined userid
password = fetch_password(u'itwinkle')
# THEN: the function should return None
self.assertEqual(password, None, u'The result for fetch_password should be None')
def fetch_password_known_test(self):
"""
Test the fetch password code with the defined userid
"""
# GIVEN: A default configuration
# WHEN: called with the defined userid
password = fetch_password(u'openlp')
2013-04-08 16:53:11 +00:00
required_password = make_sha_hash(u'password')
2013-03-29 09:32:46 +00:00
# THEN: the function should return the correct password
self.assertEqual(password, required_password, u'The result for fetch_password should be the defined password')
def sha_password_encrypter_test(self):
"""
Test hash password function
"""
# GIVEN: A default configuration
# WHEN: called with the defined userid
2013-04-08 16:53:11 +00:00
required_password = make_sha_hash(u'password')
test_value = u'5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8'
2013-03-29 09:32:46 +00:00
# THEN: the function should return the correct password
self.assertEqual(required_password, test_value,
2013-04-08 16:53:11 +00:00
u'The result for make_sha_hash should return the correct encrypted password')
2013-03-29 09:32:46 +00:00
2013-03-29 08:25:33 +00:00
def process_http_request_test(self):
"""
2013-03-29 09:06:43 +00:00
Test the router control functionality
2013-03-29 08:25:33 +00:00
"""
2013-03-29 09:06:43 +00:00
# GIVEN: A testing set of Routes
mocked_function = MagicMock()
test_route = [
(r'^/stage/api/poll$', mocked_function),
]
self.router.routes = test_route
# WHEN: called with a poll route
self.router.process_http_request(u'/stage/api/poll', None)
2013-03-29 08:25:33 +00:00
2013-03-29 09:06:43 +00:00
# THEN: the function should have been called only once
assert mocked_function.call_count == 1, \
u'The mocked function should have been matched and called once.'