forked from openlp/openlp
71 lines
3.2 KiB
Python
71 lines
3.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
|
|
|
|
###############################################################################
|
|
# OpenLP - Open Source Lyrics Projection #
|
|
# --------------------------------------------------------------------------- #
|
|
# Copyright (c) 2008-2017 OpenLP Developers #
|
|
# --------------------------------------------------------------------------- #
|
|
# 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 #
|
|
###############################################################################
|
|
"""
|
|
This module contains tests for the editverseform of the Songs plugin.
|
|
"""
|
|
from unittest import TestCase
|
|
|
|
from PyQt5 import QtCore, QtWidgets
|
|
|
|
from openlp.core.common import Registry, Settings
|
|
from openlp.core.lib import ServiceItem
|
|
from openlp.plugins.songs.forms.editverseform import EditVerseForm
|
|
from openlp.plugins.songs.lib.db import AuthorType
|
|
from tests.functional import patch, MagicMock
|
|
from tests.helpers.testmixin import TestMixin
|
|
|
|
|
|
class TestEditVerseForm(TestCase, TestMixin):
|
|
"""
|
|
Test the functions in the :mod:`lib` module.
|
|
"""
|
|
def setUp(self):
|
|
"""
|
|
Set up the components need for all tests.
|
|
"""
|
|
self.edit_verse_form = EditVerseForm(None)
|
|
self.setup_application()
|
|
self.build_settings()
|
|
QtCore.QLocale.setDefault(QtCore.QLocale('en_GB'))
|
|
|
|
def tearDown(self):
|
|
"""
|
|
Delete all the C++ objects at the end so that we don't have a segfault
|
|
"""
|
|
self.destroy_settings()
|
|
|
|
def update_suggested_verse_number_test(self):
|
|
"""
|
|
Test that update_suggested_verse_number() has no effect when editing a single verse
|
|
"""
|
|
# GIVEN some input values
|
|
self.edit_verse_form.has_single_verse = True
|
|
self.edit_verse_form.verse_type_combo_box.currentIndex = MagicMock(return_value=0)
|
|
self.edit_verse_form.verse_text_edit.toPlainText = MagicMock(return_value='Text')
|
|
self.edit_verse_form.verse_number_box.setValue(3)
|
|
|
|
# WHEN the method is called
|
|
self.edit_verse_form.update_suggested_verse_number()
|
|
|
|
# THEN the verse number must not be changed
|
|
self.assertEqual(3, self.edit_verse_form.verse_number_box.value(), 'The verse number should be 3')
|