2020-03-05 20:34:08 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
##########################################################################
|
|
|
|
# OpenLP - Open Source Lyrics Projection #
|
|
|
|
# ---------------------------------------------------------------------- #
|
2020-12-30 21:42:49 +00:00
|
|
|
# Copyright (c) 2008-2021 OpenLP Developers #
|
2020-03-05 20:34:08 +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, either version 3 of the License, or #
|
|
|
|
# (at your option) any later version. #
|
|
|
|
# #
|
|
|
|
# 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, see <https://www.gnu.org/licenses/>. #
|
|
|
|
##########################################################################
|
|
|
|
"""
|
|
|
|
For the Presentation tests
|
|
|
|
"""
|
|
|
|
import pytest
|
|
|
|
from unittest.mock import MagicMock, patch
|
|
|
|
|
|
|
|
from openlp.core.common.registry import Registry
|
|
|
|
from openlp.plugins.presentations.lib.mediaitem import PresentationMediaItem
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
2020-10-11 06:41:03 +00:00
|
|
|
def media_item(settings, mock_plugin):
|
2020-03-05 20:34:08 +00:00
|
|
|
"""Local test setup"""
|
|
|
|
Registry().register('service_manager', MagicMock())
|
|
|
|
Registry().register('main_window', MagicMock())
|
2020-10-11 06:41:03 +00:00
|
|
|
with patch('openlp.plugins.presentations.lib.mediaitem.FolderLibraryItem._setup'), \
|
2020-03-05 20:34:08 +00:00
|
|
|
patch('openlp.plugins.presentations.lib.mediaitem.PresentationMediaItem.setup_item'):
|
2020-10-11 06:41:03 +00:00
|
|
|
m_item = PresentationMediaItem(None, mock_plugin, MagicMock())
|
2020-03-05 20:34:08 +00:00
|
|
|
m_item.settings_section = 'media'
|
|
|
|
return m_item
|
|
|
|
|
|
|
|
|
2020-12-22 04:41:57 +00:00
|
|
|
@pytest.fixture()
|
2020-04-09 21:55:27 +00:00
|
|
|
def mock_plugin(temp_folder):
|
2020-03-05 20:34:08 +00:00
|
|
|
m_plugin = MagicMock()
|
|
|
|
m_plugin.settings_section = temp_folder
|
2020-10-11 06:41:03 +00:00
|
|
|
m_plugin.manager = MagicMock()
|
2020-03-05 20:34:08 +00:00
|
|
|
yield m_plugin
|