2019-09-02 21:51:59 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
import pytest
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
from .GuiWebsiteTest import GuiWebsiteTest
|
|
|
|
|
|
|
|
class LocalWebsiteModeTest(unittest.TestCase, GuiWebsiteTest):
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
test_settings = {
|
2019-09-22 02:49:31 -04:00
|
|
|
"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
|
|
|
|
@pytest.mark.skipif(pytest.__version__ < '2.9', reason="requires newer pytest")
|
|
|
|
def test_gui(self):
|
|
|
|
#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
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.main()
|