mirror of
https://github.com/onionshare/onionshare.git
synced 2025-08-09 23:02:54 -04:00
Move GUI tests into tests/ dir and fix conftest related stuff so everything loads what it needs and passes
This commit is contained in:
parent
1043be4483
commit
10cdfa7631
31 changed files with 25 additions and 189 deletions
37
tests/onionshare_share_mode_stealth_test.py
Normal file
37
tests/onionshare_share_mode_stealth_test.py
Normal file
|
@ -0,0 +1,37 @@
|
|||
#!/usr/bin/env python3
|
||||
import pytest
|
||||
import unittest
|
||||
|
||||
from .TorGuiShareTest import TorGuiShareTest
|
||||
|
||||
class ShareModeStealthTest(unittest.TestCase, TorGuiShareTest):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
test_settings = {
|
||||
"use_legacy_v2_onions": True,
|
||||
"use_stealth": True,
|
||||
}
|
||||
cls.gui = TorGuiShareTest.set_up(test_settings, 'ShareModeStealthTest')
|
||||
|
||||
@pytest.mark.tor
|
||||
def test_run_all_common_setup_tests(self):
|
||||
self.run_all_common_setup_tests()
|
||||
|
||||
@pytest.mark.run(after='test_run_all_common_setup_tests')
|
||||
@pytest.mark.tor
|
||||
def test_run_share_mode_setup_tests(self):
|
||||
self.run_all_share_mode_setup_tests()
|
||||
self.run_all_share_mode_started_tests(False)
|
||||
|
||||
@pytest.mark.run(after='test_run_share_mode_setup_tests')
|
||||
@pytest.mark.tor
|
||||
def test_copy_have_hidserv_auth_button(self):
|
||||
self.copy_have_hidserv_auth_button(self.gui.share_mode)
|
||||
|
||||
@pytest.mark.run(after='test_run_share_mode_setup_tests')
|
||||
@pytest.mark.tor
|
||||
def test_hidserv_auth_string(self):
|
||||
self.hidserv_auth_string()
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
Loading…
Add table
Add a link
Reference in a new issue