onionshare/tests_gui_local/onionshare_receive_mode_upload_test.py

29 lines
770 B
Python
Raw Normal View History

#!/usr/bin/env python3
import pytest
import unittest
from .GuiReceiveTest import GuiReceiveTest
class ReceiveModeTest(unittest.TestCase, GuiReceiveTest):
@classmethod
def setUpClass(cls):
test_settings = {
2018-09-30 22:32:18 -03:00
"receive_allow_receiver_shutdown": True
}
cls.gui = GuiReceiveTest.set_up(test_settings, 'ReceiveModeTest')
2018-09-27 21:34:46 -03:00
@classmethod
def tearDownClass(cls):
GuiReceiveTest.tear_down()
@pytest.mark.run(order=1)
def test_run_all_common_setup_tests(self):
GuiReceiveTest.run_all_common_setup_tests(self)
@pytest.mark.run(order=2)
def test_run_all_receive_mode_tests(self):
GuiReceiveTest.run_all_receive_mode_tests(self, False, True)
if __name__ == "__main__":
unittest.main()