onionshare/tests/test_onionshare_web.py

242 lines
7.9 KiB
Python
Raw Normal View History

"""
OnionShare | https://onionshare.org/
2018-04-24 13:07:59 -04:00
Copyright (C) 2014-2018 Micah Lee <micah@micahflee.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
import contextlib
import inspect
import io
import os
import random
import re
import socket
import sys
import zipfile
2018-04-29 20:51:58 -04:00
import tempfile
import base64
import pytest
from werkzeug.datastructures import Headers
2018-03-13 05:22:26 -04:00
from onionshare.common import Common
from onionshare import strings
2018-04-29 20:51:58 -04:00
from onionshare.web import Web
from onionshare.settings import Settings
from onionshare.mode_settings import ModeSettings
2019-10-13 00:01:25 -04:00
DEFAULT_ZW_FILENAME_REGEX = re.compile(r"^onionshare_[a-z2-7]{6}.zip$")
RANDOM_STR_REGEX = re.compile(r"^[a-z2-7]+$")
2018-04-29 20:51:58 -04:00
def web_obj(common_obj, mode, num_files=0):
2018-04-29 20:51:58 -04:00
""" Creates a Web object, in either share mode or receive mode, ready for testing """
common_obj.settings = Settings(common_obj)
strings.load_strings(common_obj)
mode_settings = ModeSettings(common_obj)
web = Web(common_obj, False, mode_settings, mode)
2019-05-22 23:55:31 -04:00
web.generate_password()
web.running = True
2018-04-29 20:51:58 -04:00
web.app.testing = True
# Share mode
2019-10-13 00:01:25 -04:00
if mode == "share":
2018-04-29 20:51:58 -04:00
# Add files
files = []
for _ in range(num_files):
2018-04-29 20:51:58 -04:00
with tempfile.NamedTemporaryFile(delete=False) as tmp_file:
2019-10-13 00:01:25 -04:00
tmp_file.write(b"*" * 1024)
2018-04-29 20:51:58 -04:00
files.append(tmp_file.name)
web.share_mode.set_file_info(files)
2018-04-29 20:51:58 -04:00
# Receive mode
else:
pass
2018-04-29 20:51:58 -04:00
return web
class TestWeb:
def test_share_mode(self, common_obj):
2019-10-13 00:01:25 -04:00
web = web_obj(common_obj, "share", 3)
assert web.mode == "share"
2018-04-29 20:51:58 -04:00
with web.app.test_client() as c:
# Load / without auth
2019-10-13 00:01:25 -04:00
res = c.get("/")
res.get_data()
assert res.status_code == 401
2018-04-29 20:51:58 -04:00
# Load / with invalid auth
2019-10-13 00:01:25 -04:00
res = c.get("/", headers=self._make_auth_headers("invalid"))
res.get_data()
assert res.status_code == 401
2018-04-29 20:51:58 -04:00
# Load / with valid auth
2019-10-13 00:01:25 -04:00
res = c.get("/", headers=self._make_auth_headers(web.password))
res.get_data()
2018-04-29 20:51:58 -04:00
assert res.status_code == 200
# Download
2019-10-13 00:01:25 -04:00
res = c.get("/download", headers=self._make_auth_headers(web.password))
res.get_data()
2018-04-29 20:51:58 -04:00
assert res.status_code == 200
2019-10-13 00:01:25 -04:00
assert res.mimetype == "application/zip"
def test_share_mode_autostop_sharing_on(self, common_obj, temp_file_1024):
2019-10-13 00:01:25 -04:00
web = web_obj(common_obj, "share", 3)
web.settings.set("share", "autostop_sharing", True)
assert web.running == True
with web.app.test_client() as c:
# Download the first time
2019-10-13 00:01:25 -04:00
res = c.get("/download", headers=self._make_auth_headers(web.password))
res.get_data()
assert res.status_code == 200
2019-10-13 00:01:25 -04:00
assert res.mimetype == "application/zip"
assert web.running == False
def test_share_mode_autostop_sharing_off(self, common_obj, temp_file_1024):
2019-10-13 00:01:25 -04:00
web = web_obj(common_obj, "share", 3)
web.settings.set("share", "autostop_sharing", False)
assert web.running == True
with web.app.test_client() as c:
# Download the first time
2019-10-13 00:01:25 -04:00
res = c.get("/download", headers=self._make_auth_headers(web.password))
res.get_data()
assert res.status_code == 200
2019-10-13 00:01:25 -04:00
assert res.mimetype == "application/zip"
assert web.running == True
def test_receive_mode(self, common_obj):
2019-10-13 00:01:25 -04:00
web = web_obj(common_obj, "receive")
assert web.mode == "receive"
with web.app.test_client() as c:
# Load / without auth
2019-10-13 00:01:25 -04:00
res = c.get("/")
res.get_data()
assert res.status_code == 401
# Load / with invalid auth
2019-10-13 00:01:25 -04:00
res = c.get("/", headers=self._make_auth_headers("invalid"))
res.get_data()
assert res.status_code == 401
# Load / with valid auth
2019-10-13 00:01:25 -04:00
res = c.get("/", headers=self._make_auth_headers(web.password))
res.get_data()
assert res.status_code == 200
2018-07-22 00:58:14 -04:00
def test_public_mode_on(self, common_obj):
2019-10-13 00:01:25 -04:00
web = web_obj(common_obj, "receive")
web.settings.set("general", "public", True)
with web.app.test_client() as c:
# Loading / should work without auth
2019-10-13 00:01:25 -04:00
res = c.get("/")
data1 = res.get_data()
assert res.status_code == 200
2018-07-22 00:58:14 -04:00
def test_public_mode_off(self, common_obj):
2019-10-13 00:01:25 -04:00
web = web_obj(common_obj, "receive")
web.settings.set("general", "public", False)
with web.app.test_client() as c:
# Load / without auth
2019-10-13 00:01:25 -04:00
res = c.get("/")
res.get_data()
assert res.status_code == 401
# But static resources should work without auth
res = c.get(f"{web.static_url_path}/css/style.css")
res.get_data()
assert res.status_code == 200
# Load / with valid auth
2019-10-13 00:01:25 -04:00
res = c.get("/", headers=self._make_auth_headers(web.password))
res.get_data()
assert res.status_code == 200
2018-04-29 20:51:58 -04:00
def _make_auth_headers(self, password):
2019-10-13 00:01:25 -04:00
auth = base64.b64encode(b"onionshare:" + password.encode()).decode()
h = Headers()
2019-10-13 00:01:25 -04:00
h.add("Authorization", "Basic " + auth)
return h
2018-04-29 20:51:58 -04:00
class TestZipWriterDefault:
2019-10-13 00:01:25 -04:00
@pytest.mark.parametrize(
"test_input",
(
f"onionshare_{''.join(random.choice('abcdefghijklmnopqrstuvwxyz234567') for _ in range(6))}.zip"
2019-10-13 00:01:25 -04:00
for _ in range(50)
),
)
def test_default_zw_filename_regex(self, test_input):
assert bool(DEFAULT_ZW_FILENAME_REGEX.match(test_input))
def test_zw_filename(self, default_zw):
zw_filename = os.path.basename(default_zw.zip_filename)
assert bool(DEFAULT_ZW_FILENAME_REGEX.match(zw_filename))
def test_zipfile_filename_matches_zipwriter_filename(self, default_zw):
assert default_zw.z.filename == default_zw.zip_filename
def test_zipfile_allow_zip64(self, default_zw):
assert default_zw.z._allowZip64 is True
def test_zipfile_mode(self, default_zw):
2019-10-13 00:01:25 -04:00
assert default_zw.z.mode == "w"
def test_callback(self, default_zw):
assert default_zw.processed_size_callback(None) is None
def test_add_file(self, default_zw, temp_file_1024_delete):
default_zw.add_file(temp_file_1024_delete)
2019-10-13 00:01:25 -04:00
zipfile_info = default_zw.z.getinfo(os.path.basename(temp_file_1024_delete))
assert zipfile_info.compress_type == zipfile.ZIP_DEFLATED
assert zipfile_info.file_size == 1024
def test_add_directory(self, temp_dir_1024_delete, default_zw):
previous_size = default_zw._size # size before adding directory
default_zw.add_dir(temp_dir_1024_delete)
assert default_zw._size == previous_size + 1024
class TestZipWriterCustom:
2019-10-13 00:01:25 -04:00
@pytest.mark.parametrize(
"test_input",
(
Common.random_string(
random.randint(2, 50), random.choice((None, random.randint(2, 50)))
)
for _ in range(50)
),
)
def test_random_string_regex(self, test_input):
assert bool(RANDOM_STR_REGEX.match(test_input))
def test_custom_filename(self, custom_zw):
assert bool(RANDOM_STR_REGEX.match(custom_zw.zip_filename))
def test_custom_callback(self, custom_zw):
2019-10-13 00:01:25 -04:00
assert custom_zw.processed_size_callback(None) == "custom_callback"