openlp/tests/functional/openlp_plugins/custom/test_mediaitem.py

124 lines
5.8 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 #
###############################################################################
2014-12-16 07:47:46 +00:00
"""
This module contains tests for the lib submodule of the Songs plugin.
"""
from unittest import TestCase
2018-10-02 04:39:42 +00:00
from unittest.mock import MagicMock, patch
2014-12-16 07:47:46 +00:00
2015-11-07 00:49:40 +00:00
from PyQt5 import QtCore
2014-12-16 07:47:46 +00:00
2017-10-07 07:05:07 +00:00
from openlp.core.common.registry import Registry
from openlp.core.lib.plugin import PluginStatus
from openlp.core.lib.serviceitem import ServiceItem
from openlp.plugins.custom.lib.mediaitem import CustomMediaItem
2014-12-16 07:47:46 +00:00
from tests.helpers.testmixin import TestMixin
2018-10-02 04:39:42 +00:00
2014-12-18 21:15:14 +00:00
FOOTER = ['Arky Arky (Unknown)', 'Public Domain', 'CCLI 123456']
2014-12-16 07:47:46 +00:00
class TestMediaItem(TestCase, TestMixin):
"""
Test the functions in the :mod:`lib` module.
"""
def setUp(self):
"""
Set up the components need for all tests.
"""
Registry.create()
Registry().register('service_list', MagicMock())
Registry().register('main_window', MagicMock())
with patch('openlp.core.lib.mediamanageritem.MediaManagerItem._setup'), \
patch('openlp.core.lib.mediamanageritem.MediaManagerItem.setup_item'), \
patch('openlp.plugins.custom.forms.editcustomform.EditCustomForm.__init__'), \
patch('openlp.plugins.custom.lib.mediaitem.CustomMediaItem.setup_item'):
self.media_item = CustomMediaItem(None, MagicMock())
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()
2016-05-31 21:40:13 +00:00
def test_service_load_inactive(self):
2014-12-16 07:47:46 +00:00
"""
Test the service load in custom with a default service item
"""
# GIVEN: An empty Service Item
service_item = ServiceItem(None)
# WHEN: I search for the custom in the database
item = self.media_item.service_load(service_item)
# THEN: the processing should be ignored
2017-12-22 17:15:30 +00:00
assert item is None, 'The Service item is inactive so processing should be bypassed'
2014-12-16 07:47:46 +00:00
2016-05-31 21:40:13 +00:00
def test_service_load_basic_custom_false(self):
2014-12-16 07:47:46 +00:00
"""
2014-12-18 21:15:14 +00:00
Test the service load in custom with a default service item and no requirement to add to the database
"""
# GIVEN: An empty Service Item and an active plugin
service_item = ServiceItem(None)
service_item.raw_footer = FOOTER
self.media_item.plugin = MagicMock()
self.media_item.plugin.status = PluginStatus.Active
self.media_item.plugin.db_manager = MagicMock()
self.media_item.plugin.db_manager.get_object_filtered = MagicMock()
self.media_item.plugin.db_manager.get_object_filtered.return_value = None
with patch('openlp.plugins.custom.lib.mediaitem.CustomSlide'):
# WHEN: I search for the custom in the database
self.media_item.add_custom_from_service = False
self.media_item.create_from_service_item = MagicMock()
self.media_item.service_load(service_item)
# THEN: the item should not be added to the database.
2017-12-22 17:15:30 +00:00
assert self.media_item.create_from_service_item.call_count == 0, \
'The item should not have been added to the database'
2014-12-18 21:15:14 +00:00
2016-05-31 21:40:13 +00:00
def test_service_load_basic_custom_true(self):
2014-12-18 21:15:14 +00:00
"""
Test the service load in custom with a default service item and a requirement to add to the database
2014-12-16 07:47:46 +00:00
"""
# GIVEN: An empty Service Item and an active plugin
service_item = ServiceItem(None)
2014-12-18 21:15:14 +00:00
service_item.raw_footer = FOOTER
2014-12-16 07:47:46 +00:00
self.media_item.plugin = MagicMock()
self.media_item.plugin.status = PluginStatus.Active
self.media_item.plugin.db_manager = MagicMock()
self.media_item.plugin.db_manager.get_object_filtered = MagicMock()
self.media_item.plugin.db_manager.get_object_filtered.return_value = None
2014-12-18 21:15:14 +00:00
with patch('openlp.plugins.custom.lib.mediaitem.CustomSlide'):
2014-12-16 07:47:46 +00:00
# WHEN: I search for the custom in the database
2014-12-18 21:15:14 +00:00
self.media_item.add_custom_from_service = True
self.media_item.create_from_service_item = MagicMock()
self.media_item.service_load(service_item)
2014-12-16 07:47:46 +00:00
2014-12-18 21:15:14 +00:00
# THEN: the item should not be added to the database.
2017-12-22 17:15:30 +00:00
assert self.media_item.create_from_service_item.call_count == 1, \
'The item should have been added to the database'