openlp/tests/functional/openlp_plugins/images/test_imagetab.py

94 lines
4.0 KiB
Python
Raw Normal View History

2014-11-01 10:59:45 +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-11-01 10:59:45 +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 #
###############################################################################
"""
This module contains tests for the lib submodule of the Images plugin.
"""
from unittest import TestCase
2015-11-07 00:49:40 +00:00
from PyQt5 import QtWidgets
2014-11-01 10:59:45 +00:00
from openlp.core.common import Settings
from openlp.core.common import Registry
from openlp.plugins.images.lib.db import ImageFilenames, ImageGroups
from openlp.plugins.images.lib.mediaitem import ImageMediaItem
from openlp.plugins.images.lib import ImageTab
from tests.functional import MagicMock, patch
from tests.helpers.testmixin import TestMixin
__default_settings__ = {
'images/db type': 'sqlite',
'images/background color': '#000000',
}
class TestImageMediaItem(TestCase, TestMixin):
"""
This is a test case to test various methods in the ImageTab.
"""
def setUp(self):
"""
Create the UI
"""
Registry.create()
Registry().register('settings_form', MagicMock())
self.setup_application()
self.build_settings()
Settings().extend_default_settings(__default_settings__)
2015-11-07 00:49:40 +00:00
self.parent = QtWidgets.QMainWindow()
2014-11-01 10:59:45 +00:00
self.form = ImageTab(self.parent, 'Images', None, None)
self.form.settings_form.register_post_process = MagicMock()
def tearDown(self):
"""
Delete all the C++ objects at the end so that we don't have a segfault
"""
del self.parent
del self.form
self.destroy_settings()
def save_tab_nochange_test_test(self):
"""
Test no changes does not trigger post processing
"""
# GIVEN: No changes on the form.
self.initial_color = '#999999'
# WHEN: the save is invoked
self.form.save()
2014-11-01 11:06:17 +00:00
# THEN: the post process should not be requested
2014-11-01 10:59:45 +00:00
self.assertEqual(0, self.form.settings_form.register_post_process.call_count,
'Image Post processing should not have been requested')
def save_tab_change_test_test(self):
"""
2016-01-10 20:06:41 +00:00
Test a color change is applied and triggers post processing.
2014-11-01 10:59:45 +00:00
"""
# GIVEN: Apply a change to the form.
2016-01-10 20:06:41 +00:00
self.form.on_background_color_changed('#999999')
2014-11-01 10:59:45 +00:00
# WHEN: the save is invoked
self.form.save()
2014-11-01 11:06:17 +00:00
# THEN: the post process should be requested
2014-11-01 10:59:45 +00:00
self.assertEqual(1, self.form.settings_form.register_post_process.call_count,
2014-11-06 09:42:54 +00:00
'Image Post processing should have been requested')
2016-01-10 20:06:41 +00:00
# THEN: The color should be set
self.assertEqual(self.form.background_color, '#999999', 'The updated color should have been saved')