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