openlp/tests/functional/openlp_core/ui/test_themeform.py

54 lines
2.7 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
###############################################################################
# OpenLP - Open Source Lyrics Projection #
# --------------------------------------------------------------------------- #
2019-02-14 15:09:09 +00:00
# Copyright (c) 2008-2019 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 #
###############################################################################
"""
Package to test the openlp.core.ui.themeform package.
"""
from unittest import TestCase
from unittest.mock import MagicMock, patch
from openlp.core.common.path import Path
from openlp.core.ui.themeform import ThemeForm
class TestThemeManager(TestCase):
"""
Test the functions in the ThemeManager Class
"""
2017-05-13 07:05:44 +00:00
def setUp(self):
with patch('openlp.core.ui.themeform.ThemeForm._setup'):
2017-05-13 07:05:44 +00:00
self.instance = ThemeForm(None)
2017-05-13 07:05:44 +00:00
def test_on_image_path_edit_path_changed(self):
"""
2017-05-13 07:05:44 +00:00
Test the `image_path_edit.pathChanged` handler
"""
2017-05-13 07:05:44 +00:00
# GIVEN: An instance of Theme Form
with patch.object(self.instance, 'set_background_page_values') as mocked_set_background_page_values:
self.instance.theme = MagicMock()
2017-05-13 07:05:44 +00:00
# WHEN: `on_image_path_edit_path_changed` is clicked
self.instance.on_image_path_edit_path_changed(Path('/', 'new', 'pat.h'))
2017-05-13 07:05:44 +00:00
# THEN: The theme background file should be set and `set_background_page_values` should have been called
2017-12-20 21:18:44 +00:00
assert self.instance.theme.background_filename == Path('/', 'new', 'pat.h')
2017-05-13 07:05:44 +00:00
mocked_set_background_page_values.assert_called_once_with()