onionshare/tests/local_onionshare_website_mode_test.py

27 lines
673 B
Python
Raw Normal View History

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