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

87 lines
3.4 KiB
Python
Raw Normal View History

2014-03-14 22:08:44 +00:00
# -*- coding: utf-8 -*-
2019-04-13 13:00:22 +00:00
##########################################################################
# OpenLP - Open Source Lyrics Projection #
# ---------------------------------------------------------------------- #
# Copyright (c) 2008-2020 OpenLP Developers #
2019-04-13 13:00:22 +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, either version 3 of the License, or #
# (at your option) any later version. #
# #
# 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, see <https://www.gnu.org/licenses/>. #
##########################################################################
2013-03-30 09:01:21 +00:00
"""
Module to test the EditCustomSlideForm.
"""
from unittest import TestCase
from unittest.mock import MagicMock, patch
2013-03-30 09:01:21 +00:00
2015-11-07 00:49:40 +00:00
from PyQt5 import QtWidgets
2013-03-30 09:01:21 +00:00
2017-10-07 07:05:07 +00:00
from openlp.core.common.registry import Registry
2013-03-30 09:01:21 +00:00
from openlp.plugins.custom.forms.editcustomslideform import EditCustomSlideForm
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
2016-05-31 21:40:13 +00:00
def test_basic(self):
2013-03-30 09:01:21 +00:00
"""
Test if the dialog is correctly set up.
"""
2015-11-07 00:49:40 +00:00
# GIVEN: A mocked QDialog.exec() method
2018-10-27 01:40:20 +00:00
with patch('PyQt5.QtWidgets.QDialog.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
2016-05-31 21:40:13 +00:00
def test_set_text(self):
2013-03-30 09:01:21 +00:00
"""
Test the set_text() method.
"""
2015-11-07 00:49:40 +00:00
# GIVEN: A mocked QDialog.exec() method
2018-10-27 01:40:20 +00:00
with patch('PyQt5.QtWidgets.QDialog.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()