mirror of
https://github.com/onionshare/onionshare.git
synced 2025-05-25 09:30:59 -04:00
add the other Tor tests into tests_gui and refactor them. Reinstate the shell script for the sake of Travis
This commit is contained in:
parent
37e77b8324
commit
966ade5dda
8 changed files with 84 additions and 497 deletions
27
tests_gui/onionshare_share_mode_timer_test.py
Normal file
27
tests_gui/onionshare_share_mode_timer_test.py
Normal file
|
@ -0,0 +1,27 @@
|
|||
#!/usr/bin/env python3
|
||||
import pytest
|
||||
import unittest
|
||||
|
||||
from .TorGuiShareTest import TorGuiShareTest
|
||||
|
||||
class ShareModeTimerTest(unittest.TestCase, TorGuiShareTest):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
test_settings = {
|
||||
"public_mode": False,
|
||||
"shutdown_timeout": True,
|
||||
}
|
||||
cls.gui = TorGuiShareTest.set_up(test_settings, 'ShareModeTimerTest')
|
||||
|
||||
@pytest.mark.run(order=1)
|
||||
@pytest.mark.tor
|
||||
def test_run_all_common_setup_tests(self):
|
||||
self.run_all_common_setup_tests()
|
||||
|
||||
@pytest.mark.run(order=2)
|
||||
@pytest.mark.tor
|
||||
def test_run_all_share_mode_timer_tests(self):
|
||||
self.run_all_share_mode_timer_tests(False)
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
Loading…
Add table
Add a link
Reference in a new issue