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

88 lines
3.6 KiB
Python
Raw Normal View History

2014-03-14 22:08:44 +00:00
# -*- coding: utf-8 -*-
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
###############################################################################
# OpenLP - Open Source Lyrics Projection #
# --------------------------------------------------------------------------- #
2016-12-31 11:05:48 +00:00
# Copyright (c) 2008-2017 OpenLP Developers #
2014-03-14 22:08:44 +00:00
# --------------------------------------------------------------------------- #
# This program is free software; you can redistribute it and/or modify it #
# under the terms of the GNU General Public License as published by the Free #
# Software Foundation; version 2 of the License. #
# #
# This program is distributed in the hope that it will be useful, but WITHOUT #
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or #
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for #
# more details. #
# #
# You should have received a copy of the GNU General Public License along #
# with this program; if not, write to the Free Software Foundation, Inc., 59 #
# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
###############################################################################
2013-03-30 09:01:21 +00:00
"""
Module to test the EditCustomSlideForm.
"""
from unittest import TestCase
2015-11-07 00:49:40 +00:00
from PyQt5 import QtWidgets
2013-03-30 09:01:21 +00:00
2013-12-13 17:44:05 +00:00
from openlp.core.common import Registry
2013-03-30 09:01:21 +00:00
from openlp.plugins.custom.forms.editcustomslideform import EditCustomSlideForm
from tests.interfaces import MagicMock, patch
2014-03-14 22:08:44 +00:00
from tests.helpers.testmixin import TestMixin
2013-03-30 09:01:21 +00:00
2014-03-14 22:08:44 +00:00
class TestEditCustomSlideForm(TestCase, TestMixin):
2013-03-30 09:01:21 +00:00
"""
Test the EditCustomSlideForm.
"""
def setUp(self):
"""
Create the UI
"""
Registry.create()
self.setup_application()
2015-11-07 00:49:40 +00:00
self.main_window = QtWidgets.QMainWindow()
2013-08-31 18:17:38 +00:00
Registry().register('main_window', self.main_window)
2013-03-30 09:01:21 +00:00
self.form = EditCustomSlideForm()
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
def basic_test(self):
"""
Test if the dialog is correctly set up.
"""
2015-11-07 00:49:40 +00:00
# GIVEN: A mocked QDialog.exec() method
with patch('PyQt5.QtWidgets.QDialog.exec') as mocked_exec:
2013-03-30 09:01:21 +00:00
# WHEN: Show the dialog.
2015-11-07 00:49:40 +00:00
self.form.exec()
2013-03-30 09:01:21 +00:00
# THEN: The dialog should be empty.
2013-08-31 18:17:38 +00:00
assert self.form.slide_text_edit.toPlainText() == '', 'There should not be any text in the text editor.'
2013-03-30 09:01:21 +00:00
def set_text_test(self):
"""
Test the set_text() method.
"""
2015-11-07 00:49:40 +00:00
# GIVEN: A mocked QDialog.exec() method
with patch('PyQt5.QtWidgets.QDialog.exec') as mocked_exec:
2013-03-30 09:01:21 +00:00
mocked_set_focus = MagicMock()
self.form.slide_text_edit.setFocus = mocked_set_focus
2013-08-31 18:17:38 +00:00
wanted_text = 'THIS TEXT SHOULD BE SHOWN.'
2013-03-30 09:01:21 +00:00
# WHEN: Show the dialog and set the text.
2015-11-07 00:49:40 +00:00
self.form.exec()
2013-03-30 09:01:21 +00:00
self.form.set_text(wanted_text)
# THEN: The dialog should show the text.
assert self.form.slide_text_edit.toPlainText() == wanted_text, \
2013-08-31 18:17:38 +00:00
'The text editor should show the correct text.'
2013-03-30 09:01:21 +00:00
# THEN: The dialog should have focus.
mocked_set_focus.assert_called_with()