openlp/tests/interfaces/openlp_plugins/custom/forms/test_customform.py

111 lines
4.0 KiB
Python
Raw Normal View History

2013-03-28 20:03:58 +00:00
"""
2013-03-30 09:01:21 +00:00
Module to test the EditCustomForm.
2013-03-28 20:03:58 +00:00
"""
from unittest import TestCase
from mock import MagicMock, patch
2013-03-28 22:08:14 +00:00
from PyQt4 import QtGui, QtTest, QtCore
2013-03-28 20:03:58 +00:00
from openlp.core.lib import Registry
# Import needed due to import problems.
from openlp.plugins.custom.lib.mediaitem import CustomMediaItem
from openlp.plugins.custom.forms.editcustomform import EditCustomForm
2013-03-30 09:01:21 +00:00
class TestEditCustomForm(TestCase):
2013-03-28 20:03:58 +00:00
"""
Test the EditCustomForm.
"""
def setUp(self):
"""
Create the UI
"""
Registry.create()
self.app = QtGui.QApplication([])
self.main_window = QtGui.QMainWindow()
2013-08-31 18:17:38 +00:00
Registry().register('main_window', self.main_window)
2013-03-28 20:03:58 +00:00
media_item = MagicMock()
manager = MagicMock()
self.form = EditCustomForm(media_item, self.main_window, manager)
def tearDown(self):
"""
Delete all the C++ objects at the end so that we don't have a segfault
"""
del self.form
del self.main_window
del self.app
2013-03-30 09:46:32 +00:00
def load_themes_test(self):
"""
Test the load_themes() method.
"""
2013-04-08 18:30:11 +00:00
# GIVEN: A theme list.
2013-08-31 18:17:38 +00:00
theme_list = ['First Theme', 'Second Theme']
2013-04-08 18:30:11 +00:00
# WHEN: Show the dialog and add pass a theme list.
self.form.load_themes(theme_list)
2013-03-30 09:46:32 +00:00
2013-04-08 18:30:11 +00:00
# THEN: There should be three items in the combo box.
2013-08-31 18:17:38 +00:00
assert self.form.theme_combo_box.count() == 3, 'There should be three items (themes) in the combo box.'
2013-03-30 09:46:32 +00:00
2013-03-28 22:10:24 +00:00
def load_custom_test(self):
2013-03-28 20:03:58 +00:00
"""
2013-03-28 22:08:14 +00:00
Test the load_custom() method.
2013-03-28 20:03:58 +00:00
"""
2013-04-08 18:30:11 +00:00
# WHEN: Create a new custom item.
self.form.load_custom(0)
2013-03-28 20:03:58 +00:00
2013-04-08 18:30:11 +00:00
# THEN: The line edits should not contain any text.
2013-08-31 18:17:38 +00:00
self.assertEqual(self.form.title_edit.text(), '', 'The title edit should be empty')
self.assertEqual(self.form.credit_edit.text(), '', 'The credit edit should be empty')
2013-03-28 20:03:58 +00:00
2013-03-28 22:08:14 +00:00
def on_add_button_clicked_test(self):
"""
Test the on_add_button_clicked_test method / add_button button.
"""
# GIVEN: A mocked QDialog.exec_() method
2013-08-31 18:17:38 +00:00
with patch('PyQt4.QtGui.QDialog.exec_') as mocked_exec:
2013-04-08 18:30:11 +00:00
# WHEN: Add a new slide.
2013-03-28 22:08:14 +00:00
QtTest.QTest.mouseClick(self.form.add_button, QtCore.Qt.LeftButton)
2013-04-08 18:30:11 +00:00
2013-03-30 08:46:34 +00:00
# THEN: One slide should be added.
2013-08-31 18:17:38 +00:00
assert self.form.slide_list_view.count() == 1, 'There should be one slide added.'
2013-04-17 18:33:44 +00:00
def validate_not_valid_part1_test(self):
"""
Test the _validate() method.
"""
# GIVEN: Mocked methods.
2013-08-31 18:17:38 +00:00
with patch('openlp.plugins.custom.forms.editcustomform.critical_error_message_box') as \
2013-04-17 18:33:44 +00:00
mocked_critical_error_message_box:
2013-08-31 18:17:38 +00:00
self.form.title_edit.displayText = MagicMock(return_value='')
2013-04-17 18:33:44 +00:00
mocked_setFocus = MagicMock()
self.form.title_edit.setFocus = mocked_setFocus
# WHEN: Call the method.
result = self.form._validate()
# THEN: The validate method should have returned False.
2013-08-31 18:17:38 +00:00
assert not result, 'The _validate() method should have retured False'
2013-04-17 18:33:44 +00:00
mocked_setFocus.assert_called_with()
2013-08-31 18:17:38 +00:00
mocked_critical_error_message_box.assert_called_with(message='You need to type in a title.')
2013-04-17 18:33:44 +00:00
def validate_not_valid_part2_test(self):
"""
Test the _validate() method.
"""
# GIVEN: Mocked methods.
2013-08-31 18:17:38 +00:00
with patch('openlp.plugins.custom.forms.editcustomform.critical_error_message_box') as \
2013-04-17 18:33:44 +00:00
mocked_critical_error_message_box:
2013-08-31 18:17:38 +00:00
self.form.title_edit.displayText = MagicMock(return_value='something')
2013-07-17 14:19:21 +00:00
self.form.slide_list_view.count = MagicMock(return_value=0)
2013-04-17 18:33:44 +00:00
# WHEN: Call the method.
result = self.form._validate()
# THEN: The validate method should have returned False.
2013-08-31 18:17:38 +00:00
assert not result, 'The _validate() method should have retured False'
mocked_critical_error_message_box.assert_called_with(message='You need to add at least one slide.')