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

85 lines
3.6 KiB
Python
Raw Normal View History

2016-01-11 21:57:45 +00:00
# -*- coding: utf-8 -*-
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
###############################################################################
# OpenLP - Open Source Lyrics Projection #
# --------------------------------------------------------------------------- #
2017-12-29 09:15:48 +00:00
# Copyright (c) 2008-2018 OpenLP Developers #
2016-01-11 21:57:45 +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 #
###############################################################################
"""
Test the media plugin
"""
from unittest import TestCase
from unittest.mock import MagicMock, patch
2016-01-11 21:57:45 +00:00
from PyQt5 import QtCore
from openlp.core.common.path import Path
2017-12-28 08:22:55 +00:00
from openlp.core.common.settings import Settings
from openlp.plugins.media.lib.mediaitem import MediaMediaItem
2016-01-11 21:57:45 +00:00
from tests.helpers.testmixin import TestMixin
__default_settings__ = {
'media/media auto start': QtCore.Qt.Unchecked,
'media/media files': []
}
class MediaItemTest(TestCase, TestMixin):
"""
Test the media item for Media
"""
def setUp(self):
"""
Set up the components need for all tests.
"""
with patch('openlp.plugins.media.lib.mediaitem.MediaManagerItem.__init__'),\
patch('openlp.plugins.media.lib.mediaitem.MediaMediaItem.setup'):
self.media_item = MediaMediaItem(None, MagicMock())
self.media_item.settings_section = 'media'
self.setup_application()
self.build_settings()
Settings().extend_default_settings(__default_settings__)
def tearDown(self):
"""
Clean up after the tests
"""
self.destroy_settings()
def test_search_found(self):
"""
Media Remote Search Successful find
"""
# GIVEN: The Mediaitem set up a list of media
Settings().setValue(self.media_item.settings_section + '/media files', [Path('test.mp3'), Path('test.mp4')])
2016-01-11 21:57:45 +00:00
# WHEN: Retrieving the test file
result = self.media_item.search('test.mp4', False)
# THEN: a file should be found
2017-12-22 21:04:29 +00:00
assert result == [['test.mp4', 'test.mp4']], 'The result file contain the file name'
2016-01-11 21:57:45 +00:00
def test_search_not_found(self):
"""
Media Remote Search not find
"""
# GIVEN: The Mediaitem set up a list of media
Settings().setValue(self.media_item.settings_section + '/media files', [Path('test.mp3'), Path('test.mp4')])
2016-01-11 21:57:45 +00:00
# WHEN: Retrieving the test file
result = self.media_item.search('test.mpx', False)
# THEN: a file should be found
2017-12-22 21:04:29 +00:00
assert result == [], 'The result file should be empty'