onionshare/tests/local_onionshare_share_mode_password_persistent_test.py

32 lines
814 B
Python
Raw Normal View History

#!/usr/bin/env python3
import pytest
import unittest
from .GuiShareTest import GuiShareTest
2019-10-12 21:01:25 -07:00
2019-05-22 20:55:31 -07:00
class LocalShareModePersistentPasswordTest(unittest.TestCase, GuiShareTest):
@classmethod
def setUpClass(cls):
test_settings = {
"public_mode": False,
2019-05-22 20:55:31 -07:00
"password": "",
"save_private_key": True,
"close_after_first_download": False,
}
cls.gui = GuiShareTest.set_up(test_settings)
2018-10-16 15:53:35 +11:00
@classmethod
def tearDownClass(cls):
GuiShareTest.tear_down()
@pytest.mark.gui
2019-10-12 21:01:25 -07:00
@pytest.mark.skipif(pytest.__version__ < "2.9", reason="requires newer pytest")
def test_gui(self):
self.run_all_common_setup_tests()
self.run_all_share_mode_persistent_tests(False, True)
2019-10-12 21:01:25 -07:00
if __name__ == "__main__":
unittest.main()