openlp/tests/interfaces/openlp_core_ui/test_thememanager.py

108 lines
4.7 KiB
Python
Raw Normal View History

2013-10-23 19:25:46 +00:00
# -*- coding: utf-8 -*-
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
###############################################################################
# OpenLP - Open Source Lyrics Projection #
# --------------------------------------------------------------------------- #
2015-01-18 13:39:21 +00:00
# Copyright (c) 2008-2015 OpenLP Developers #
2013-10-23 19:25:46 +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-12-31 20:29:03 +00:00
Interface tests to test the themeManager class and related methods.
2013-10-23 19:25:46 +00:00
"""
from unittest import TestCase
2013-12-31 20:29:03 +00:00
from openlp.core.common import Registry, Settings
from openlp.core.ui import ThemeManager
2013-10-23 19:25:46 +00:00
from tests.functional import patch, MagicMock
2014-03-13 20:34:46 +00:00
from tests.helpers.testmixin import TestMixin
2013-10-23 19:25:46 +00:00
2014-03-13 20:34:46 +00:00
class TestThemeManager(TestCase, TestMixin):
2013-10-23 19:25:46 +00:00
"""
2013-12-31 20:29:03 +00:00
Test the functions in the ThemeManager module
2013-10-23 19:25:46 +00:00
"""
def setUp(self):
"""
Create the UI
"""
2014-03-13 20:34:46 +00:00
self.build_settings()
self.setup_application()
2013-12-31 20:29:03 +00:00
Registry.create()
self.theme_manager = ThemeManager()
2013-10-23 19:25:46 +00:00
def tearDown(self):
"""
Delete all the C++ objects at the end so that we don't have a segfault
"""
2014-03-13 20:34:46 +00:00
self.destroy_settings()
del self.theme_manager
2013-10-23 19:25:46 +00:00
2013-12-31 20:29:03 +00:00
def initialise_test(self):
2013-10-23 19:25:46 +00:00
"""
2013-12-31 20:29:03 +00:00
Test the thememanager initialise - basic test
2013-10-23 19:25:46 +00:00
"""
# GIVEN: A new a call to initialise
2013-12-31 20:29:03 +00:00
self.theme_manager.build_theme_path = MagicMock()
self.theme_manager.load_first_time_themes = MagicMock()
2013-10-23 19:25:46 +00:00
Settings().setValue('themes/global theme', 'my_theme')
2014-03-13 20:37:02 +00:00
# WHEN: the initialisation is run
2013-12-31 20:29:03 +00:00
self.theme_manager.bootstrap_initialise()
2013-10-23 19:25:46 +00:00
# THEN:
2013-12-31 20:29:03 +00:00
self.assertEqual(1, self.theme_manager.build_theme_path.call_count,
2013-12-06 19:00:37 +00:00
'The function build_theme_path should have been called')
2013-12-31 20:29:03 +00:00
self.assertEqual(1, self.theme_manager.load_first_time_themes.call_count,
2013-12-06 19:00:37 +00:00
'The function load_first_time_themes should have been called only once')
2013-12-31 20:29:03 +00:00
self.assertEqual(self.theme_manager.global_theme, 'my_theme',
2013-12-06 19:00:37 +00:00
'The global theme should have been set to my_theme')
2013-10-23 19:25:46 +00:00
2013-12-31 20:29:03 +00:00
def build_theme_path_test(self):
2013-10-23 19:25:46 +00:00
"""
2013-12-31 20:29:03 +00:00
Test the thememanager build_theme_path - basic test
2013-10-23 19:25:46 +00:00
"""
# GIVEN: A new a call to initialise
with patch('openlp.core.common.applocation.check_directory_exists') as mocked_check_directory_exists:
# GIVEN: A mocked out Settings class and a mocked out AppLocation.get_directory()
mocked_check_directory_exists.return_value = True
Settings().setValue('themes/global theme', 'my_theme')
2013-12-31 20:29:03 +00:00
self.theme_manager.theme_form = MagicMock()
self.theme_manager.load_first_time_themes = MagicMock()
2013-10-23 19:25:46 +00:00
# WHEN: the build_theme_path is run
2013-12-31 20:29:03 +00:00
self.theme_manager.build_theme_path()
2013-10-23 19:25:46 +00:00
2013-12-31 20:29:03 +00:00
# THEN:
2013-12-31 21:02:35 +00:00
assert self.theme_manager.thumb_path.startswith(self.theme_manager.path) is True, \
'The thumb path and the main path should start with the same value'
def click_on_new_theme_test(self):
"""
Test the on_add_theme event handler is called by the UI
"""
# GIVEN: An initial form
Settings().setValue('themes/global theme', 'my_theme')
mocked_event = MagicMock()
self.theme_manager.on_add_theme = mocked_event
self.theme_manager.setup_ui(self.theme_manager)
# WHEN displaying the UI and pressing cancel
new_theme = self.theme_manager.toolbar.actions['newTheme']
new_theme.trigger()
assert mocked_event.call_count == 1, 'The on_add_theme method should have been called once'