onionshare/tests/local_onionshare_website_mode_csp_enabled_test.py

27 lines
684 B
Python
Raw Normal View History

#!/usr/bin/env python3
import pytest
import unittest
from .GuiWebsiteTest import GuiWebsiteTest
2019-10-13 00:01:25 -04:00
class LocalWebsiteModeCSPEnabledTest(unittest.TestCase, GuiWebsiteTest):
@classmethod
def setUpClass(cls):
2019-10-13 00:01:25 -04:00
test_settings = {"csp_header_disabled": False}
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")
def test_gui(self):
2019-10-13 00:01:25 -04:00
# self.run_all_common_setup_tests()
self.run_all_website_mode_download_tests(False)
2019-10-13 00:01:25 -04:00
if __name__ == "__main__":
unittest.main()