2015-11-15 15:13:40 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2019-04-13 13:00:22 +00:00
|
|
|
##########################################################################
|
|
|
|
# OpenLP - Open Source Lyrics Projection #
|
|
|
|
# ---------------------------------------------------------------------- #
|
2020-01-01 02:53:08 +00:00
|
|
|
# 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/>. #
|
|
|
|
##########################################################################
|
2015-11-15 15:13:40 +00:00
|
|
|
"""
|
|
|
|
This module contains tests for the CSV Bible importer.
|
|
|
|
"""
|
2017-12-28 08:22:55 +00:00
|
|
|
from unittest.mock import MagicMock
|
2015-11-15 15:13:40 +00:00
|
|
|
|
|
|
|
from openlp.plugins.alerts.lib.alertsmanager import AlertsManager
|
|
|
|
|
|
|
|
|
2020-03-04 06:06:47 +00:00
|
|
|
def test_remove_message_text(registry):
|
|
|
|
"""
|
|
|
|
Test that Alerts are not triggered with empty strings
|
|
|
|
"""
|
|
|
|
# GIVEN: A valid Alert Manager
|
|
|
|
alert_manager = AlertsManager(None)
|
|
|
|
alert_manager.display_alert = MagicMock()
|
2015-11-15 15:13:40 +00:00
|
|
|
|
2020-03-04 06:06:47 +00:00
|
|
|
# WHEN: Called with an empty string
|
|
|
|
alert_manager.alert_text('')
|
2015-11-15 15:13:40 +00:00
|
|
|
|
2020-03-04 06:06:47 +00:00
|
|
|
# THEN: the display should not have been triggered
|
|
|
|
assert alert_manager.display_alert.called is False, 'The Alert should not have been called'
|
2015-11-15 15:13:40 +00:00
|
|
|
|
|
|
|
|
2020-03-04 06:06:47 +00:00
|
|
|
def test_trigger_message_text(registry):
|
|
|
|
"""
|
|
|
|
Test that Alerts are triggered with a text string
|
|
|
|
"""
|
|
|
|
# GIVEN: A valid Alert Manager
|
|
|
|
alert_manager = AlertsManager(None)
|
|
|
|
alert_manager.display_alert = MagicMock()
|
2015-11-15 15:13:40 +00:00
|
|
|
|
2020-03-04 06:06:47 +00:00
|
|
|
# WHEN: Called with an empty string
|
|
|
|
alert_manager.alert_text(['This is a string'])
|
2015-11-15 15:13:40 +00:00
|
|
|
|
2020-03-04 06:06:47 +00:00
|
|
|
# THEN: the display should have been triggered
|
|
|
|
assert alert_manager.display_alert.called is True, 'The Alert should have been called'
|
2015-11-15 15:13:40 +00:00
|
|
|
|
|
|
|
|
2020-03-04 06:06:47 +00:00
|
|
|
def test_line_break_message_text(registry):
|
|
|
|
"""
|
|
|
|
Test that Alerts are triggered with a text string but line breaks are removed
|
|
|
|
"""
|
|
|
|
# GIVEN: A valid Alert Manager
|
|
|
|
alert_manager = AlertsManager(None)
|
|
|
|
alert_manager.display_alert = MagicMock()
|
2015-11-15 15:13:40 +00:00
|
|
|
|
2020-03-04 06:06:47 +00:00
|
|
|
# WHEN: Called with an empty string
|
|
|
|
alert_manager.alert_text(['This is \n a string'])
|
2015-11-15 15:13:40 +00:00
|
|
|
|
2020-03-04 06:06:47 +00:00
|
|
|
# THEN: the display should have been triggered
|
|
|
|
assert alert_manager.display_alert.called is True, 'The Alert should have been called'
|
|
|
|
alert_manager.display_alert.assert_called_once_with('This is a string')
|