forked from openlp/openlp
Added a test
This commit is contained in:
parent
95eb290226
commit
c86d669346
60
tests/functional/openlp_core_ui/test_shortcutlistdialog.py
Normal file
60
tests/functional/openlp_core_ui/test_shortcutlistdialog.py
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# OpenLP - Open Source Lyrics Projection #
|
||||||
|
# --------------------------------------------------------------------------- #
|
||||||
|
# Copyright (c) 2008-2016 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 #
|
||||||
|
###############################################################################
|
||||||
|
"""
|
||||||
|
Package to test the openlp.core.ui.shortcutlistdialog package.
|
||||||
|
"""
|
||||||
|
from PyQt5 import QtCore, QtGui, QtWidgets
|
||||||
|
|
||||||
|
from openlp.core.ui.shortcutlistdialog import CaptureShortcutButton, ShortcutTreeWidget
|
||||||
|
|
||||||
|
from tests.interfaces import MagicMock, patch
|
||||||
|
|
||||||
|
|
||||||
|
def test_key_press_event():
|
||||||
|
"""
|
||||||
|
Test the keyPressEvent method
|
||||||
|
"""
|
||||||
|
# GIVEN: A checked button and a mocked event
|
||||||
|
button = CaptureShortcutButton()
|
||||||
|
button.setChecked(True)
|
||||||
|
mocked_event = MagicMock()
|
||||||
|
mocked_event.key.return_value = QtCore.Qt.Key_Space
|
||||||
|
|
||||||
|
# WHEN: keyPressEvent is called with an event that should be ignored
|
||||||
|
button.keyPressEvent(mocked_event)
|
||||||
|
|
||||||
|
# THEN: The ignore() method on the event should have been called
|
||||||
|
mocked_event.ignore.assert_called_once_with()
|
||||||
|
|
||||||
|
|
||||||
|
def test_keyboard_search():
|
||||||
|
"""
|
||||||
|
Test the keyboardSearch method of the ShortcutTreeWidget
|
||||||
|
"""
|
||||||
|
# GIVEN: A ShortcutTreeWidget
|
||||||
|
widget = ShortcutTreeWidget()
|
||||||
|
|
||||||
|
# WHEN: keyboardSearch() is called
|
||||||
|
widget.keyboardSearch('')
|
||||||
|
|
||||||
|
# THEN: Nothing happens
|
||||||
|
assert True
|
Loading…
Reference in New Issue
Block a user