openlp/tests/functional/openlp_core/api/endpoint/test_controller.py

77 lines
3.5 KiB
Python
Raw Normal View History

2018-02-03 14:41:18 +00:00
# -*- coding: utf-8 -*-
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
###############################################################################
# OpenLP - Open Source Lyrics Projection #
# --------------------------------------------------------------------------- #
# Copyright (c) 2008-2018 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 #
###############################################################################
from unittest import TestCase
2018-02-23 16:55:17 +00:00
from unittest.mock import MagicMock
2018-02-03 14:41:18 +00:00
from openlp.core.common.registry import Registry
2018-02-23 16:55:17 +00:00
from openlp.core.api.endpoint.controller import controller_text, controller_direction
2018-02-03 14:41:18 +00:00
class TestController(TestCase):
"""
Test the Remote plugin deploy functions
"""
def setUp(self):
"""
Setup for tests
"""
Registry.create()
self.registry = Registry()
self.mocked_live_controller = MagicMock()
Registry().register('live_controller', self.mocked_live_controller)
def test_controller_text(self):
"""
2018-02-20 22:03:32 +00:00
Remote API Tests : test the controller text method can be called
2018-02-03 14:41:18 +00:00
"""
# GIVEN: A mocked service with a dummy service item
self.mocked_live_controller.service_item = MagicMock()
# WHEN: I trigger the method
ret = controller_text("SomeText")
# THEN: I get a basic set of results
results = ret['results']
assert isinstance(results['item'], MagicMock)
assert len(results['slides']) == 0
2018-02-23 16:55:17 +00:00
def test_controller_direction_next(self):
"""
Text the live next method is triggered
"""
# GIVEN: A mocked service with a dummy service item
self.mocked_live_controller.service_item = MagicMock()
# WHEN: I trigger the method
2018-03-09 21:58:45 +00:00
controller_direction(None, 'live', 'next')
2018-02-23 16:55:17 +00:00
# THEN: The correct method is called
2018-03-08 21:19:38 +00:00
self.mocked_live_controller.slidecontroller_live_next.emit.assert_called_once_with()
2018-02-23 16:55:17 +00:00
def test_controller_direction_previous(self):
"""
Text the live next method is triggered
"""
# GIVEN: A mocked service with a dummy service item
self.mocked_live_controller.service_item = MagicMock()
# WHEN: I trigger the method
2018-03-09 21:58:45 +00:00
controller_direction(None, 'live', 'previous')
2018-02-23 16:55:17 +00:00
# THEN: The correct method is called
2018-03-08 21:22:53 +00:00
self.mocked_live_controller.slidecontroller_live_previous.emit.assert_called_once_with()