summaryrefslogtreecommitdiff
path: root/tests/GuiWebsiteTest.py
blob: f6b67112e2b7d0c99ba0b8607f602227807a4796 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
import json
import os
import requests
import socks
import zipfile
import tempfile
from PyQt5 import QtCore, QtTest
from onionshare import strings
from onionshare.common import Common
from onionshare.settings import Settings
from onionshare.onion import Onion
from onionshare.web import Web
from onionshare_gui import Application, OnionShare, OnionShareGui
from .GuiShareTest import GuiShareTest


class GuiWebsiteTest(GuiShareTest):
    @staticmethod
    def set_up(test_settings):
        """Create GUI with given settings"""
        # Create our test file
        testfile = open("/tmp/index.html", "w")
        testfile.write(
            "<html><body><p>This is a test website hosted by OnionShare</p></body></html>"
        )
        testfile.close()

        common = Common()
        common.settings = Settings(common)
        common.define_css()
        strings.load_strings(common)

        # Get all of the settings in test_settings
        test_settings["data_dir"] = "/tmp/OnionShare"
        for key, val in common.settings.default_settings.items():
            if key not in test_settings:
                test_settings[key] = val

        # Start the Onion
        testonion = Onion(common)
        global qtapp
        qtapp = Application(common)
        app = OnionShare(common, testonion, True, 0)

        web = Web(common, False, True)
        open("/tmp/settings.json", "w").write(json.dumps(test_settings))

        gui = OnionShareGui(
            common,
            testonion,
            qtapp,
            app,
            ["/tmp/index.html"],
            "/tmp/settings.json",
            True,
        )
        return gui

    @staticmethod
    def tear_down():
        """Clean up after tests"""
        try:
            os.remove("/tmp/index.html")
            os.remove("/tmp/settings.json")
        except:
            pass

    def view_website(self, public_mode):
        """Test that we can download the share"""
        url = "http://127.0.0.1:{}/".format(self.gui.app.port)
        if public_mode:
            r = requests.get(url)
        else:
            r = requests.get(
                url,
                auth=requests.auth.HTTPBasicAuth(
                    "onionshare", self.gui.website_mode.server_status.web.password
                ),
            )

        QtTest.QTest.qWait(2000)
        self.assertTrue("This is a test website hosted by OnionShare" in r.text)

    def check_csp_header(self, public_mode, csp_header_disabled):
        """Test that the CSP header is present when enabled or vice versa"""
        url = "http://127.0.0.1:{}/".format(self.gui.app.port)
        if public_mode:
            r = requests.get(url)
        else:
            r = requests.get(
                url,
                auth=requests.auth.HTTPBasicAuth(
                    "onionshare", self.gui.website_mode.server_status.web.password
                ),
            )

        QtTest.QTest.qWait(2000)
        if csp_header_disabled:
            self.assertFalse("Content-Security-Policy" in r.headers)
        else:
            self.assertTrue("Content-Security-Policy" in r.headers)

    def run_all_website_mode_setup_tests(self):
        """Tests in website mode prior to starting a share"""
        self.click_mode(self.gui.website_mode)
        self.file_selection_widget_has_files(1)
        self.history_is_not_visible(self.gui.website_mode)
        self.click_toggle_history(self.gui.website_mode)
        self.history_is_visible(self.gui.website_mode)

    def run_all_website_mode_started_tests(self, public_mode, startup_time=2000):
        """Tests in website mode after starting a share"""
        self.server_working_on_start_button_pressed(self.gui.website_mode)
        self.server_status_indicator_says_starting(self.gui.website_mode)
        self.add_delete_buttons_hidden()
        self.settings_button_is_hidden()
        self.server_is_started(self.gui.website_mode, startup_time)
        self.web_server_is_running()
        self.have_a_password(self.gui.website_mode, public_mode)
        self.url_description_shown(self.gui.website_mode)
        self.have_copy_url_button(self.gui.website_mode, public_mode)
        self.server_status_indicator_says_started(self.gui.website_mode)

    def run_all_website_mode_download_tests(self, public_mode):
        """Tests in website mode after viewing the site"""
        self.run_all_website_mode_setup_tests()
        self.run_all_website_mode_started_tests(public_mode, startup_time=2000)
        self.view_website(public_mode)
        self.check_csp_header(
            public_mode, self.gui.common.settings.get("csp_header_disabled")
        )
        self.history_widgets_present(self.gui.website_mode)
        self.server_is_stopped(self.gui.website_mode, False)
        self.web_server_is_stopped()
        self.server_status_indicator_says_closed(self.gui.website_mode, False)
        self.add_button_visible(self.gui.website_mode)