mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
30 lines
878 B
Python
30 lines
878 B
Python
#!/usr/bin/env python3
|
|
import pytest
|
|
import unittest
|
|
|
|
from .TorGuiShareTest import TorGuiShareTest
|
|
|
|
class LocalShareModePersistentSlugTest(unittest.TestCase, TorGuiShareTest):
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
test_settings = {
|
|
"use_legacy_v2_onions": True,
|
|
"public_mode": False,
|
|
"slug": "",
|
|
"save_private_key": True,
|
|
"close_after_first_download": False,
|
|
}
|
|
cls.gui = TorGuiShareTest.set_up(test_settings, 'ShareModePersistentSlugTest')
|
|
|
|
@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_all_share_mode_tests(self):
|
|
self.run_all_share_mode_persistent_tests(False, True)
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|