openlp/tests/functional/openlp_core/lib/test_theme.py

115 lines
4.4 KiB
Python
Raw Normal View History

2013-10-13 17:02:12 +00:00
# -*- 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 #
2013-10-13 17:02:12 +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 #
###############################################################################
"""
Package to test the openlp.core.lib.theme package.
"""
2017-09-26 16:39:13 +00:00
from pathlib import Path
from unittest import TestCase
2013-10-13 17:02:12 +00:00
2017-05-13 07:47:22 +00:00
from openlp.core.lib.theme import Theme
2013-10-13 17:02:12 +00:00
2017-05-13 07:47:22 +00:00
class TestTheme(TestCase):
2013-10-13 17:02:12 +00:00
"""
2017-05-21 16:06:40 +00:00
Test the Theme class
2013-10-13 17:02:12 +00:00
"""
2016-07-24 20:41:27 +00:00
def test_new_theme(self):
2013-10-13 17:02:12 +00:00
"""
2017-05-13 07:47:22 +00:00
Test the Theme constructor
2013-10-13 17:02:12 +00:00
"""
2017-05-21 16:02:02 +00:00
# GIVEN: The Theme class
2016-07-24 20:41:27 +00:00
# WHEN: A theme object is created
2017-05-13 07:47:22 +00:00
default_theme = Theme()
2013-10-13 17:02:12 +00:00
2016-07-24 20:41:27 +00:00
# THEN: The default values should be correct
2017-05-13 07:47:22 +00:00
self.check_theme(default_theme)
2016-07-24 20:41:27 +00:00
def test_expand_json(self):
2013-10-13 17:02:12 +00:00
"""
2016-07-24 20:41:27 +00:00
Test the expand_json method
2013-10-13 17:02:12 +00:00
"""
2017-05-21 16:02:02 +00:00
# GIVEN: A Theme object and some JSON to "expand"
2017-05-13 07:47:22 +00:00
theme = Theme()
2016-07-24 20:41:27 +00:00
theme_json = {
'background': {
'border_color': '#000000',
'type': 'solid'
},
'display': {
'vertical_align': 0
},
'font': {
'footer': {
'bold': False
},
'main': {
'name': 'Arial'
}
}
}
2013-10-13 17:02:12 +00:00
2017-05-21 16:02:02 +00:00
# WHEN: Theme.expand_json() is run
2016-07-24 20:41:27 +00:00
theme.expand_json(theme_json)
# THEN: The attributes should be set on the object
2017-05-13 07:47:22 +00:00
self.check_theme(theme)
2016-07-24 20:41:27 +00:00
def test_extend_image_filename(self):
2013-10-13 17:02:12 +00:00
"""
2016-07-24 20:41:27 +00:00
Test the extend_image_filename method
2013-10-13 17:02:12 +00:00
"""
2016-07-24 20:41:27 +00:00
# GIVEN: A theme object
2017-05-13 07:47:22 +00:00
theme = Theme()
2017-09-26 16:39:13 +00:00
theme.theme_name = 'MyBeautifulTheme'
theme.background_filename = Path('video.mp4')
2016-07-24 20:41:27 +00:00
theme.background_type = 'video'
2017-09-26 16:39:13 +00:00
path = Path.home()
2013-10-13 17:02:12 +00:00
2017-05-21 16:02:02 +00:00
# WHEN: Theme.extend_image_filename is run
2016-07-24 20:41:27 +00:00
theme.extend_image_filename(path)
# THEN: The filename of the background should be correct
2017-09-26 16:39:13 +00:00
expected_filename = path / 'MyBeautifulTheme' / 'video.mp4'
2017-12-17 17:52:17 +00:00
assert expected_filename == theme.background_filename
assert 'MyBeautifulTheme' == theme.theme_name
2017-05-13 07:47:22 +00:00
def test_save_retrieve(self):
"""
Load a dummy theme, save it and reload it
"""
# GIVEN: The default Theme class
# WHEN: A theme object is created
default_theme = Theme()
# THEN: The default values should be correct
2017-05-24 19:31:48 +00:00
save_theme_json = default_theme.export_theme()
2017-05-13 07:47:22 +00:00
lt = Theme()
lt.load_theme(save_theme_json)
self.check_theme(lt)
def check_theme(self, theme):
2017-12-17 17:52:17 +00:00
assert '#000000' == theme.background_border_color, 'background_border_color should be "#000000"'
assert 'solid' == theme.background_type, 'background_type should be "solid"'
assert 0 == theme.display_vertical_align, 'display_vertical_align should be 0'
assert theme.font_footer_bold is False, 'font_footer_bold should be False'
assert 'Arial' == theme.font_main_name, 'font_main_name should be "Arial"'
assert 47 == len(theme.__dict__), 'The theme should have 47 attributes'