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

79 lines
2.7 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()
Registry().register(u'main_window', self.main_window)
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.
"""
# GIVEN: A mocked QDialog.exec_() method
with patch(u'PyQt4.QtGui.QDialog.exec_') as mocked_exec:
theme_list = [u'First Theme', u'Second Theme']
# WHEN: Show the dialog and add pass a theme list.
self.form.exec_()
self.form.load_themes(theme_list)
# THEN: There should be three items in the combo box.
assert self.form.theme_combo_box.count() == 3, u'There should be three items (themes) in the combo box.'
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
"""
# GIVEN: A mocked QDialog.exec_() method
with patch(u'PyQt4.QtGui.QDialog.exec_') as mocked_exec:
2013-03-28 21:24:19 +00:00
# WHEN: Show the dialog and create a new custom item.
2013-03-28 20:03:58 +00:00
self.form.exec_()
self.form.load_custom(0)
2013-03-30 08:46:34 +00:00
# THEN: The line edits should not contain any text.
2013-03-28 20:03:58 +00:00
self.assertEqual(self.form.title_edit.text(), u'', u'The title edit should be empty')
self.assertEqual(self.form.credit_edit.text(), u'', u'The credit edit should be empty')
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
with patch(u'PyQt4.QtGui.QDialog.exec_') as mocked_exec:
# WHEN: Show the dialog and add a new slide.
self.form.exec_()
QtTest.QTest.mouseClick(self.form.add_button, QtCore.Qt.LeftButton)
2013-03-30 08:46:34 +00:00
# THEN: One slide should be added.
2013-03-28 22:12:09 +00:00
assert self.form.slide_list_view.count() == 1, u'There should be one slide added.'