2018-10-17 00:33:31 -03:00
|
|
|
#!/usr/bin/env python3
|
2019-01-16 02:52:42 -03:00
|
|
|
import pytest
|
2018-10-17 00:33:31 -03:00
|
|
|
import unittest
|
|
|
|
from PyQt5 import QtCore, QtTest
|
|
|
|
|
|
|
|
from .GuiShareTest import GuiShareTest
|
|
|
|
|
|
|
|
class LocalQuittingDuringSharePromptsWarningTest(unittest.TestCase, GuiShareTest):
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
test_settings = {
|
|
|
|
"close_after_first_download": False
|
|
|
|
}
|
2018-10-17 02:31:51 -03:00
|
|
|
cls.gui = GuiShareTest.set_up(test_settings)
|
2018-10-17 00:33:31 -03:00
|
|
|
|
2018-10-17 00:34:29 -03:00
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
GuiShareTest.tear_down()
|
2018-10-17 00:33:31 -03:00
|
|
|
|
2019-01-16 02:52:42 -03:00
|
|
|
@pytest.mark.gui
|
2018-10-17 00:33:31 -03:00
|
|
|
def test_gui(self):
|
|
|
|
self.run_all_common_setup_tests()
|
|
|
|
self.run_all_share_mode_tests(False, True)
|
|
|
|
# Prepare our auto-accept of prompt
|
|
|
|
QtCore.QTimer.singleShot(5000, self.accept_dialog)
|
|
|
|
# Try to close the app
|
|
|
|
self.gui.close()
|
|
|
|
# Server should still be running (we've been prompted first)
|
|
|
|
self.server_is_started(self.gui.share_mode, 0)
|
|
|
|
self.web_server_is_running()
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.main()
|