openlp/tests/interfaces/openlp_plugins/songs/forms/test_editverseform.py

123 lines
5.3 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:01:36 +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-07 12:34:35 +00:00
"""
Package to test the openlp.plugins.songs.forms.editverseform package.
"""
from unittest import TestCase
2015-11-07 00:49:40 +00:00
from PyQt5 import QtCore, QtTest, QtWidgets
2013-03-07 12:34:35 +00:00
from openlp.core.common import Registry, Settings
2013-03-07 12:34:35 +00:00
from openlp.plugins.songs.forms.editverseform import EditVerseForm
2014-03-14 22:08:44 +00:00
from tests.helpers.testmixin import TestMixin
2013-03-07 12:34:35 +00:00
__default_settings__ = {
'songs/enable chords': True,
}
2013-03-07 12:34:35 +00:00
2014-03-14 22:08:44 +00:00
class TestEditVerseForm(TestCase, TestMixin):
2013-03-14 22:22:18 +00:00
"""
Test the EditVerseForm class
"""
2013-03-07 12:34:35 +00:00
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)
self.build_settings()
Settings().extend_default_settings(__default_settings__)
2013-03-07 12:34:35 +00:00
self.form = EditVerseForm()
def tearDown(self):
"""
Delete all the C++ objects at the end so that we don't have a segfault
"""
self.destroy_settings()
2013-03-07 12:34:35 +00:00
del self.form
del self.main_window
2016-05-31 21:40:13 +00:00
def test_ui_defaults(self):
2013-03-07 12:34:35 +00:00
"""
Test the EditVerseForm defaults are correct
"""
# GIVEN: An EditVerseForm instance
# WHEN: The form is shown
# THEN: The default value is correct
2013-08-31 18:17:38 +00:00
self.assertEqual(self.form.verse_text_edit.toPlainText(), '', 'The verse edit box is empty.')
def test_type_verse_text(self):
2013-03-11 21:47:55 +00:00
"""
Test that typing into the verse text edit box returns the correct text
"""
2013-03-14 22:22:18 +00:00
# GIVEN: An instance of the EditVerseForm and some text to type
text = 'Amazing Grace, how sweet the sound!'
2013-03-11 21:47:55 +00:00
# WHEN: Some verse text is typed into the text edit
2013-03-14 22:22:18 +00:00
QtTest.QTest.keyClicks(self.form.verse_text_edit, text)
2013-03-11 21:47:55 +00:00
# THEN: The verse text edit should have the verse text in it
2013-03-14 22:22:18 +00:00
self.assertEqual(text, self.form.verse_text_edit.toPlainText(),
2013-08-31 18:17:38 +00:00
'The verse text edit should have the typed out verse')
2013-03-11 21:47:55 +00:00
2016-05-31 21:40:13 +00:00
def test_insert_verse(self):
"""
2013-03-11 21:24:55 +00:00
Test that clicking the insert button inserts the correct verse marker
"""
# GIVEN: An instance of the EditVerseForm
# WHEN: The Insert button is clicked
QtTest.QTest.mouseClick(self.form.insert_button, QtCore.Qt.LeftButton)
# THEN: The verse text edit should have a Verse:1 in it
2013-08-31 18:17:38 +00:00
self.assertIn('---[Verse:1]---', self.form.verse_text_edit.toPlainText(),
'The verse text edit should have a verse marker')
2013-03-11 21:24:55 +00:00
2016-05-31 21:40:13 +00:00
def test_insert_verse_2(self):
2013-03-11 21:24:55 +00:00
"""
Test that clicking the up button on the spin box and then clicking the insert button inserts the correct marker
"""
# GIVEN: An instance of the EditVerseForm
# WHEN: The spin button and then the Insert button are clicked
QtTest.QTest.keyClick(self.form.verse_number_box, QtCore.Qt.Key_Up)
QtTest.QTest.mouseClick(self.form.insert_button, QtCore.Qt.LeftButton)
# THEN: The verse text edit should have a Verse:1 in it
2013-08-31 18:17:38 +00:00
self.assertIn('---[Verse:2]---', self.form.verse_text_edit.toPlainText(),
'The verse text edit should have a "Verse 2" marker')
2013-03-11 21:47:55 +00:00
2016-05-31 21:40:13 +00:00
def test_insert_chorus(self):
2013-03-11 21:47:55 +00:00
"""
Test that clicking the verse type combo box and then clicking the insert button inserts the correct marker
"""
# GIVEN: An instance of the EditVerseForm
# WHEN: The verse type combo box and then the Insert button are clicked
QtTest.QTest.keyClick(self.form.verse_type_combo_box, QtCore.Qt.Key_Down)
QtTest.QTest.mouseClick(self.form.insert_button, QtCore.Qt.LeftButton)
# THEN: The verse text edit should have a Chorus:1 in it
2013-08-31 18:17:38 +00:00
self.assertIn('---[Chorus:1]---', self.form.verse_text_edit.toPlainText(),
'The verse text edit should have a "Chorus 1" marker')