summaryrefslogtreecommitdiff
path: root/tests/local_onionshare_404_public_mode_skips_ratelimit_test.py
blob: 4fad55328d3e229750d83d0c13d3ae6769e4efca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python3
import pytest
import unittest

from .GuiShareTest import GuiShareTest

class Local404PublicModeRateLimitTest(unittest.TestCase, GuiShareTest):
    @classmethod
    def setUpClass(cls):
        test_settings = {
            "close_after_first_download": False,
            "public_mode": True
        }
        cls.gui = GuiShareTest.set_up(test_settings)

    @classmethod
    def tearDownClass(cls):
        GuiShareTest.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()
        self.run_all_share_mode_tests(True, True)
        self.hit_404(True)

if __name__ == "__main__":
    unittest.main()