2018-09-22 02:50:39 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import unittest
|
|
|
|
import pytest
|
|
|
|
import json
|
|
|
|
|
2018-09-23 20:41:48 -04:00
|
|
|
from PyQt5 import QtWidgets
|
2018-09-22 02:50:39 -04:00
|
|
|
|
|
|
|
from onionshare.common import Common
|
|
|
|
from onionshare.web import Web
|
|
|
|
from onionshare import onion, strings
|
|
|
|
from onionshare_gui import *
|
|
|
|
|
2018-10-11 00:09:27 -04:00
|
|
|
from .GuiBaseTest import GuiBaseTest
|
2018-09-23 20:41:48 -04:00
|
|
|
|
2018-10-11 00:09:27 -04:00
|
|
|
class ReceiveModeTest(unittest.TestCase):
|
2018-09-22 02:50:39 -04:00
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
test_settings = {
|
2018-09-30 21:32:18 -04:00
|
|
|
"receive_allow_receiver_shutdown": True
|
2018-09-22 02:50:39 -04:00
|
|
|
}
|
2018-10-11 01:07:16 -04:00
|
|
|
cls.gui = GuiBaseTest.set_up(test_settings)
|
2018-09-27 20:34:46 -04:00
|
|
|
|
2018-09-22 02:50:39 -04:00
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
2018-10-11 00:09:27 -04:00
|
|
|
GuiBaseTest.tear_down()
|
2018-09-22 02:50:39 -04:00
|
|
|
|
|
|
|
@pytest.mark.run(order=1)
|
2018-10-11 00:09:27 -04:00
|
|
|
def test_run_all_common_setup_tests(self):
|
|
|
|
GuiBaseTest.run_all_common_setup_tests(self)
|
2018-09-22 02:50:39 -04:00
|
|
|
|
|
|
|
@pytest.mark.run(order=2)
|
2018-10-11 00:09:27 -04:00
|
|
|
def test_run_all_share_mode_tests(self):
|
|
|
|
GuiBaseTest.run_all_receive_mode_tests(self, False, True)
|
2018-09-22 02:50:39 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.main()
|