forked from openlp/openlp
Test fox
This commit is contained in:
parent
dfe2ae347e
commit
d52fff75a4
@ -22,11 +22,11 @@
|
|||||||
"""
|
"""
|
||||||
Package to test the openlp.core.ui.exeptionform package.
|
Package to test the openlp.core.ui.exeptionform package.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import tempfile
|
import tempfile
|
||||||
|
|
||||||
from unittest import TestCase
|
from unittest import TestCase
|
||||||
from unittest.mock import mock_open, patch
|
from unittest.mock import call, patch
|
||||||
|
|
||||||
from openlp.core.common import Registry
|
from openlp.core.common import Registry
|
||||||
from openlp.core.common.path import Path
|
from openlp.core.common.path import Path
|
||||||
@ -142,9 +142,9 @@ class TestExceptionForm(TestMixin, TestCase):
|
|||||||
test_form = exceptionform.ExceptionForm()
|
test_form = exceptionform.ExceptionForm()
|
||||||
test_form.file_attachment = None
|
test_form.file_attachment = None
|
||||||
|
|
||||||
with patch.object(test_form, '_pyuno_import') as mock_pyuno:
|
with patch.object(test_form, '_pyuno_import') as mock_pyuno, \
|
||||||
with patch.object(test_form.exception_text_edit, 'toPlainText') as mock_traceback:
|
patch.object(test_form.exception_text_edit, 'toPlainText') as mock_traceback, \
|
||||||
with patch.object(test_form.description_text_edit, 'toPlainText') as mock_description:
|
patch.object(test_form.description_text_edit, 'toPlainText') as mock_description:
|
||||||
mock_pyuno.return_value = 'UNO Bridge Test'
|
mock_pyuno.return_value = 'UNO Bridge Test'
|
||||||
mock_traceback.return_value = 'openlp: Traceback Test'
|
mock_traceback.return_value = 'openlp: Traceback Test'
|
||||||
mock_description.return_value = 'Description Test'
|
mock_description.return_value = 'Description Test'
|
||||||
@ -182,15 +182,17 @@ class TestExceptionForm(TestMixin, TestCase):
|
|||||||
mocked_qt.PYQT_VERSION_STR = 'PyQt5 Test'
|
mocked_qt.PYQT_VERSION_STR = 'PyQt5 Test'
|
||||||
mocked_is_linux.return_value = False
|
mocked_is_linux.return_value = False
|
||||||
mocked_application_version.return_value = 'Trunk Test'
|
mocked_application_version.return_value = 'Trunk Test'
|
||||||
mocked_save_filename.return_value = (Path('testfile.txt'), 'filter')
|
|
||||||
|
with patch.object(Path, 'open') as mocked_path_open:
|
||||||
|
test_path = Path('testfile.txt')
|
||||||
|
mocked_save_filename.return_value = test_path, 'ext'
|
||||||
|
|
||||||
test_form = exceptionform.ExceptionForm()
|
test_form = exceptionform.ExceptionForm()
|
||||||
test_form.file_attachment = None
|
test_form.file_attachment = None
|
||||||
|
|
||||||
with patch.object(test_form, '_pyuno_import') as mock_pyuno:
|
with patch.object(test_form, '_pyuno_import') as mock_pyuno, \
|
||||||
with patch.object(test_form.exception_text_edit, 'toPlainText') as mock_traceback:
|
patch.object(test_form.exception_text_edit, 'toPlainText') as mock_traceback, \
|
||||||
with patch.object(test_form.description_text_edit, 'toPlainText') as mock_description:
|
patch.object(test_form.description_text_edit, 'toPlainText') as mock_description:
|
||||||
with patch("openlp.core.ui.exceptionform.open", mock_open(), create=True) as mocked_open:
|
|
||||||
mock_pyuno.return_value = 'UNO Bridge Test'
|
mock_pyuno.return_value = 'UNO Bridge Test'
|
||||||
mock_traceback.return_value = 'openlp: Traceback Test'
|
mock_traceback.return_value = 'openlp: Traceback Test'
|
||||||
mock_description.return_value = 'Description Test'
|
mock_description.return_value = 'Description Test'
|
||||||
@ -200,7 +202,4 @@ class TestExceptionForm(TestMixin, TestCase):
|
|||||||
|
|
||||||
# THEN: Verify proper calls to save file
|
# THEN: Verify proper calls to save file
|
||||||
# self.maxDiff = None
|
# self.maxDiff = None
|
||||||
check_text = "call().write({text})".format(text=MAIL_ITEM_TEXT.__repr__())
|
mocked_path_open.assert_has_calls([call().__enter__().write(MAIL_ITEM_TEXT)])
|
||||||
write_text = "{text}".format(text=mocked_open.mock_calls[1])
|
|
||||||
mocked_open.assert_called_with('testfile.txt', 'w')
|
|
||||||
self.assertEquals(check_text, write_text, "Saved information should match test text")
|
|
||||||
|
Loading…
Reference in New Issue
Block a user