onionshare/tests/local_onionshare_website_mode_test.py

27 lines
673 B
Python
Raw Normal View History

2019-09-02 21:51:59 -04:00
#!/usr/bin/env python3
import pytest
import unittest
from .GuiWebsiteTest import GuiWebsiteTest
2019-10-13 00:01:25 -04:00
2019-09-02 21:51:59 -04:00
class LocalWebsiteModeTest(unittest.TestCase, GuiWebsiteTest):
@classmethod
def setUpClass(cls):
2019-10-13 00:01:25 -04:00
test_settings = {"csp_header_disabled": True}
2019-09-02 21:51:59 -04:00
cls.gui = GuiWebsiteTest.set_up(test_settings)
@classmethod
def tearDownClass(cls):
GuiWebsiteTest.tear_down()
@pytest.mark.gui
2019-10-13 00:01:25 -04:00
@pytest.mark.skipif(pytest.__version__ < "2.9", reason="requires newer pytest")
2019-09-02 21:51:59 -04:00
def test_gui(self):
2019-10-13 00:01:25 -04:00
# self.run_all_common_setup_tests()
2019-09-02 22:23:27 -04:00
self.run_all_website_mode_download_tests(False)
2019-09-02 21:51:59 -04:00
2019-10-13 00:01:25 -04:00
2019-09-02 21:51:59 -04:00
if __name__ == "__main__":
unittest.main()