openlp/tests/interfaces/openlp_core_ui/test_listpreviewwidget.py

107 lines
4.8 KiB
Python
Raw Normal View History

2014-03-14 22:08:44 +00:00
# -*- coding: utf-8 -*-
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
###############################################################################
# OpenLP - Open Source Lyrics Projection #
# --------------------------------------------------------------------------- #
2015-12-31 22:46:06 +00:00
# Copyright (c) 2008-2016 OpenLP Developers #
2014-03-14 22:08:44 +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 #
###############################################################################
2013-04-27 10:00:46 +00:00
"""
Package to test the openlp.core.ui.listpreviewwidget.
"""
from unittest import TestCase
2015-11-07 00:49:40 +00:00
from PyQt5 import QtGui, QtWidgets
2013-04-27 10:00:46 +00:00
2013-12-13 17:44:05 +00:00
from openlp.core.common import Registry
from openlp.core.lib import ServiceItem
2013-04-27 10:00:46 +00:00
from openlp.core.ui import listpreviewwidget
from tests.interfaces import MagicMock, patch
2013-04-27 10:00:46 +00:00
from tests.utils.osdinteraction import read_service_from_file
2014-03-14 22:08:44 +00:00
from tests.helpers.testmixin import TestMixin
2013-04-27 10:00:46 +00:00
2014-03-14 22:08:44 +00:00
class TestListPreviewWidget(TestCase, TestMixin):
2013-04-27 10:00:46 +00:00
def setUp(self):
"""
Create the UI.
"""
Registry.create()
self.setup_application()
2015-11-07 00:49:40 +00:00
self.main_window = QtWidgets.QMainWindow()
2013-04-27 10:00:46 +00:00
self.image = QtGui.QImage(1, 1, QtGui.QImage.Format_RGB32)
self.image_manager = MagicMock()
self.image_manager.get_image.return_value = self.image
2013-08-31 18:17:38 +00:00
Registry().register('image_manager', self.image_manager)
2013-04-27 10:00:46 +00:00
self.preview_widget = listpreviewwidget.ListPreviewWidget(self.main_window, 2)
def tearDown(self):
"""
Delete all the C++ objects at the end so that we don't have a segfault.
"""
del self.preview_widget
del self.main_window
def initial_slide_count_test(self):
"""
2014-01-01 14:59:57 +00:00
Test the initial slide count .
2013-04-27 10:00:46 +00:00
"""
# GIVEN: A new ListPreviewWidget instance.
# WHEN: No SlideItem has been added yet.
# THEN: The count of items should be zero.
2013-08-31 18:17:38 +00:00
self.assertEqual(self.preview_widget.slide_count(), 0, 'The slide list should be empty.')
2013-04-27 10:00:46 +00:00
def initial_slide_number_test(self):
"""
2014-01-01 14:59:57 +00:00
Test the initial current slide number.
2013-04-27 10:00:46 +00:00
"""
# GIVEN: A new ListPreviewWidget instance.
# WHEN: No SlideItem has been added yet.
# THEN: The number of the current item should be -1.
2013-08-31 18:17:38 +00:00
self.assertEqual(self.preview_widget.current_slide_number(), -1, 'The slide number should be -1.')
2013-04-27 10:00:46 +00:00
def replace_service_item_test(self):
"""
Test item counts and current number with a service item.
"""
# GIVEN: A ServiceItem with two frames.
service_item = ServiceItem(None)
2013-08-31 18:17:38 +00:00
service = read_service_from_file('serviceitem_image_3.osj')
2013-04-27 10:00:46 +00:00
with patch('os.path.exists'):
service_item.set_from_service(service[0])
# WHEN: Added to the preview widget.
self.preview_widget.replace_service_item(service_item, 1, 1)
# THEN: The slide count and number should fit.
2013-08-31 18:17:38 +00:00
self.assertEqual(self.preview_widget.slide_count(), 2, 'The slide count should be 2.')
self.assertEqual(self.preview_widget.current_slide_number(), 1, 'The current slide number should be 1.')
2013-04-27 10:00:46 +00:00
def change_slide_test(self):
"""
Test the change_slide method.
"""
# GIVEN: A ServiceItem with two frames content.
service_item = ServiceItem(None)
2013-08-31 18:17:38 +00:00
service = read_service_from_file('serviceitem_image_3.osj')
2013-04-27 10:00:46 +00:00
with patch('os.path.exists'):
service_item.set_from_service(service[0])
# WHEN: Added to the preview widget and switched to the second frame.
self.preview_widget.replace_service_item(service_item, 1, 0)
self.preview_widget.change_slide(1)
# THEN: The current_slide_number should reflect the change.
2013-08-31 18:17:38 +00:00
self.assertEqual(self.preview_widget.current_slide_number(), 1, 'The current slide number should be 1.')