openlp/tests/interfaces/openlp_plugins/media/forms/test_mediaclipselectorform.py

173 lines
8.5 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 #
# --------------------------------------------------------------------------- #
2016-12-31 11:05:48 +00:00
# Copyright (c) 2008-2017 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 #
###############################################################################
"""
Module to test the MediaClipSelectorForm.
"""
2014-04-22 20:13:36 +00:00
import os
from unittest import TestCase, SkipTest
from openlp.core.ui.media.vlcplayer import get_vlc
2014-04-22 20:13:36 +00:00
if os.name == 'nt' and not get_vlc():
2014-04-22 20:13:36 +00:00
raise SkipTest('Windows without VLC, skipping this test since it cannot run without vlc')
2015-11-07 00:49:40 +00:00
from PyQt5 import QtTest, QtCore, QtWidgets
from openlp.core.common import Registry
from openlp.plugins.media.forms.mediaclipselectorform import MediaClipSelectorForm
from tests.interfaces import MagicMock, patch
from tests.helpers.testmixin import TestMixin
class TestMediaClipSelectorForm(TestCase, TestMixin):
"""
Test the EditCustomSlideForm.
"""
def setUp(self):
"""
Create the UI
"""
Registry.create()
self.setup_application()
2015-11-07 00:49:40 +00:00
self.main_window = QtWidgets.QMainWindow()
Registry().register('main_window', self.main_window)
# Mock VLC so we don't actually use it
self.vlc_patcher = patch('openlp.plugins.media.forms.mediaclipselectorform.get_vlc')
self.vlc_patcher.start()
2014-09-08 20:49:33 +00:00
Registry().register('application', self.app)
# Mock the media item
self.mock_media_item = MagicMock()
# create form to test
self.form = MediaClipSelectorForm(self.mock_media_item, self.main_window, None)
mock_media_state_wait = MagicMock()
mock_media_state_wait.return_value = True
self.form.media_state_wait = mock_media_state_wait
2014-09-08 20:49:33 +00:00
self.form.application.set_busy_cursor = MagicMock()
self.form.application.set_normal_cursor = MagicMock()
2014-09-08 20:58:42 +00:00
self.form.find_optical_devices = MagicMock()
def tearDown(self):
"""
Delete all the C++ objects at the end so that we don't have a segfault
"""
del self.form
2014-11-24 21:18:32 +00:00
self.vlc_patcher.stop()
del self.main_window
def basic_test(self):
"""
Test if the dialog is correctly set up.
"""
2015-11-07 00:49:40 +00:00
# GIVEN: A mocked QDialog.exec() method
with patch('PyQt5.QtWidgets.QDialog.exec') as mocked_exec:
# WHEN: Show the dialog.
2015-11-07 00:49:40 +00:00
self.form.exec()
# THEN: The media path should be empty.
assert self.form.media_path_combobox.currentText() == '', 'There should not be any text in the media path.'
def click_load_button_test(self):
"""
2014-04-05 07:46:35 +00:00
Test that the correct function is called when load is clicked, and that it behaves as expected.
"""
# GIVEN: Mocked methods.
with patch('openlp.plugins.media.forms.mediaclipselectorform.critical_error_message_box') as \
mocked_critical_error_message_box,\
patch('openlp.plugins.media.forms.mediaclipselectorform.os.path.exists') as mocked_os_path_exists,\
2015-11-07 00:49:40 +00:00
patch('PyQt5.QtWidgets.QDialog.exec') as mocked_exec:
self.form.exec()
# WHEN: The load button is clicked with no path set
2014-08-20 23:35:24 +00:00
QtTest.QTest.mouseClick(self.form.load_disc_button, QtCore.Qt.LeftButton)
# THEN: we should get an error
mocked_critical_error_message_box.assert_called_with(message='No path was given')
2014-04-05 07:46:35 +00:00
# WHEN: The load button is clicked with a non-existing path
mocked_os_path_exists.return_value = False
self.form.media_path_combobox.insertItem(0, '/non-existing/test-path.test')
2014-04-05 07:46:35 +00:00
self.form.media_path_combobox.setCurrentIndex(0)
2014-08-20 23:35:24 +00:00
QtTest.QTest.mouseClick(self.form.load_disc_button, QtCore.Qt.LeftButton)
2014-04-05 07:46:35 +00:00
# THEN: we should get an error
assert self.form.media_path_combobox.currentText() == '/non-existing/test-path.test',\
'The media path should be the given one.'
mocked_critical_error_message_box.assert_called_with(message='Given path does not exists')
# WHEN: The load button is clicked with a mocked existing path
mocked_os_path_exists.return_value = True
self.form.vlc_media_player = MagicMock()
self.form.vlc_media_player.play.return_value = -1
self.form.media_path_combobox.insertItem(0, '/existing/test-path.test')
2014-04-05 07:46:35 +00:00
self.form.media_path_combobox.setCurrentIndex(0)
2014-08-20 23:35:24 +00:00
QtTest.QTest.mouseClick(self.form.load_disc_button, QtCore.Qt.LeftButton)
2014-04-05 07:46:35 +00:00
# THEN: we should get an error
assert self.form.media_path_combobox.currentText() == '/existing/test-path.test',\
'The media path should be the given one.'
mocked_critical_error_message_box.assert_called_with(message='VLC player failed playing the media')
def title_combobox_test(self):
"""
Test the behavior when the title combobox is updated
"""
# GIVEN: Mocked methods and some entries in the title combobox.
2015-11-07 00:49:40 +00:00
with patch('PyQt5.QtWidgets.QDialog.exec') as mocked_exec:
self.form.exec()
2014-04-09 20:24:19 +00:00
self.form.vlc_media_player.get_length.return_value = 1000
2014-04-05 07:46:35 +00:00
self.form.audio_tracks_combobox.itemData = MagicMock()
self.form.subtitle_tracks_combobox.itemData = MagicMock()
self.form.audio_tracks_combobox.itemData.return_value = None
self.form.subtitle_tracks_combobox.itemData.return_value = None
2014-08-20 23:35:24 +00:00
self.form.titles_combo_box.insertItem(0, 'Test Title 0')
self.form.titles_combo_box.insertItem(1, 'Test Title 1')
2014-04-05 07:46:35 +00:00
# WHEN: There exists audio and subtitle tracks and the index is updated.
2014-04-09 20:24:19 +00:00
self.form.vlc_media_player.audio_get_track_description.return_value = [(-1, b'Disabled'),
(0, b'Audio Track 1')]
2014-04-05 07:46:35 +00:00
self.form.vlc_media_player.video_get_spu_description.return_value = [(-1, b'Disabled'),
(0, b'Subtitle Track 1')]
2014-08-20 23:35:24 +00:00
self.form.titles_combo_box.setCurrentIndex(1)
2014-04-05 07:46:35 +00:00
# THEN: The subtitle and audio track comboboxes should be updated and get signals and call itemData.
self.form.audio_tracks_combobox.itemData.assert_any_call(0)
self.form.audio_tracks_combobox.itemData.assert_any_call(1)
self.form.subtitle_tracks_combobox.itemData.assert_any_call(0)
2014-09-08 20:49:33 +00:00
def click_save_button_test(self):
"""
Test that the correct function is called when save is clicked, and that it behaves as expected.
"""
# GIVEN: Mocked methods.
with patch('openlp.plugins.media.forms.mediaclipselectorform.critical_error_message_box') as \
mocked_critical_error_message_box,\
2015-11-07 00:49:40 +00:00
patch('PyQt5.QtWidgets.QDialog.exec') as mocked_exec:
self.form.exec()
2014-09-08 20:49:33 +00:00
# WHEN: The save button is clicked with a NoneType in start_time_ms or end_time_ms
self.form.accept()
# THEN: we should get an error message
mocked_critical_error_message_box.assert_called_with('DVD not loaded correctly',
'The DVD was not loaded correctly, '
'please re-load and try again.')