openlp/tests/openlp_core/projectors/test_projector_sourceform.py

152 lines
6.1 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2019-04-13 13:00:22 +00:00
##########################################################################
# OpenLP - Open Source Lyrics Projection #
# ---------------------------------------------------------------------- #
# Copyright (c) 2008-2020 OpenLP Developers #
2019-04-13 13:00:22 +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/>. #
##########################################################################
"""
2016-01-07 21:36:43 +00:00
:mod: `tests.interfaces.openlp_core_ui.test_projectorsourceform` module
2016-01-07 21:36:43 +00:00
Tests for the Projector Source Select form.
"""
2016-01-07 21:36:43 +00:00
import os
2016-02-15 21:11:38 +00:00
import time
from unittest import TestCase
from unittest.mock import patch
2016-01-07 21:36:43 +00:00
2015-11-07 00:49:40 +00:00
from PyQt5.QtWidgets import QDialog
2017-10-07 07:05:07 +00:00
from openlp.core.common.registry import Registry
from openlp.core.common.settings import Settings
2017-11-10 11:59:38 +00:00
from openlp.core.projectors.constants import PJLINK_DEFAULT_CODES, PJLINK_DEFAULT_SOURCES
2018-10-02 04:39:42 +00:00
from openlp.core.projectors.db import Projector, ProjectorDB
from openlp.core.projectors.sourceselectform import SourceSelectSingle, source_group
from tests.helpers.testmixin import TestMixin
2018-10-02 04:39:42 +00:00
from tests.resources.projector.data import TEST1_DATA, TEST_DB
def build_source_dict():
"""
Builds a source dictionary to verify source_group returns a valid dictionary of dictionary items
:returns: dictionary of valid PJLink source codes grouped by PJLink source group
"""
test_group = {}
for group in PJLINK_DEFAULT_SOURCES.keys():
test_group[group] = {}
for key in PJLINK_DEFAULT_CODES:
test_group[key[0]][key] = PJLINK_DEFAULT_CODES[key]
return test_group
class ProjectorSourceFormTest(TestCase, TestMixin):
"""
Test class for the Projector Source Select form module
"""
2017-11-10 11:59:38 +00:00
@patch('openlp.core.projectors.db.init_url')
2015-01-19 04:24:45 +00:00
def setUp(self, mocked_init_url):
"""
Set up anything necessary for all tests
"""
2016-01-07 21:36:43 +00:00
mocked_init_url.return_value = 'sqlite:///{}'.format(TEST_DB)
2015-01-19 04:24:45 +00:00
self.setup_application()
2017-11-03 22:52:24 +00:00
self.build_settings()
2015-01-19 04:24:45 +00:00
Registry.create()
Registry().register('settings', Settings())
2015-01-19 04:24:45 +00:00
# Do not try to recreate if we've already been created from a previous test
if not hasattr(self, 'projectordb'):
self.projectordb = ProjectorDB()
# Retrieve/create a database record
2016-01-07 21:36:43 +00:00
self.projector = self.projectordb.get_projector_by_ip(TEST1_DATA['ip'])
2015-01-19 04:24:45 +00:00
if not self.projector:
2016-01-07 21:36:43 +00:00
self.projectordb.add_projector(projector=Projector(**TEST1_DATA))
self.projector = self.projectordb.get_projector_by_ip(TEST1_DATA['ip'])
2015-01-19 04:24:45 +00:00
self.projector.dbid = self.projector.id
self.projector.db_item = self.projector
def tearDown(self):
"""
Close database session.
Delete all C++ objects at end so we don't segfault.
"""
self.projectordb.session.close()
2019-03-10 21:01:39 +00:00
del self.projectordb
del self.projector
2016-01-15 19:41:14 +00:00
retries = 0
2016-01-15 19:14:24 +00:00
while retries < 5:
try:
if os.path.exists(TEST_DB):
os.unlink(TEST_DB)
break
2018-10-27 01:40:20 +00:00
except Exception:
2016-01-15 19:14:24 +00:00
time.sleep(1)
retries += 1
2015-01-19 04:24:45 +00:00
self.destroy_settings()
2016-05-31 21:40:13 +00:00
def test_source_dict(self):
"""
Test that source list dict returned from sourceselectform module is a valid dict with proper entries
"""
# GIVEN: A list of inputs
codes = []
for item in PJLINK_DEFAULT_CODES.keys():
codes.append(item)
codes.sort()
# WHEN: projector.sourceselectform.source_select() is called
check = source_group(codes, PJLINK_DEFAULT_CODES)
# THEN: return dictionary should match test dictionary
2017-12-23 09:09:45 +00:00
assert check == build_source_dict(), "Source group dictionary should match test dictionary"
2015-01-19 04:24:45 +00:00
2015-11-07 00:49:40 +00:00
@patch.object(QDialog, 'exec')
2016-05-31 21:40:13 +00:00
def test_source_select_edit_button(self, mocked_qdialog):
2015-01-19 04:24:45 +00:00
"""
Test source select form edit has Ok, Cancel, Reset, and Revert buttons
"""
# GIVEN: Initial setup and mocks
self.projector.source_available = ['11', ]
self.projector.source = '11'
# WHEN we create a source select widget and set edit=True
select_form = SourceSelectSingle(parent=None, projectordb=self.projectordb)
select_form.edit = True
2015-11-07 00:49:40 +00:00
select_form.exec(projector=self.projector)
2015-01-19 04:24:45 +00:00
# THEN: Verify all 4 buttons are available
2017-12-23 09:09:45 +00:00
assert len(select_form.button_box.buttons()) == 4, \
'SourceSelect dialog box should have "OK", "Cancel", "Rest", and "Revert" buttons available'
2015-01-19 04:24:45 +00:00
2015-11-07 00:49:40 +00:00
@patch.object(QDialog, 'exec')
2016-05-31 21:40:13 +00:00
def test_source_select_noedit_button(self, mocked_qdialog):
2015-01-19 04:24:45 +00:00
"""
Test source select form view has OK and Cancel buttons only
"""
# GIVEN: Initial setup and mocks
self.projector.source_available = ['11', ]
self.projector.source = '11'
# WHEN we create a source select widget and set edit=False
select_form = SourceSelectSingle(parent=None, projectordb=self.projectordb)
select_form.edit = False
2015-11-07 00:49:40 +00:00
select_form.exec(projector=self.projector)
2015-01-19 04:24:45 +00:00
# THEN: Verify only 2 buttons are available
2017-12-23 09:09:45 +00:00
assert len(select_form.button_box.buttons()) == 2, \
'SourceSelect dialog box should only have "OK" and "Cancel" buttons available'