onionshare/cli/tests/conftest.py

185 lines
4.6 KiB
Python
Raw Normal View History

import sys
import os
import shutil
import tempfile
import pytest
from onionshare_cli import common, web
2021-04-29 20:13:05 -04:00
# Force tests to look for resources in the source code tree
sys.onionshare_dev_mode = True
# Let OnionShare know the tests are running, to avoid colliding with settings files
sys.onionshare_test_mode = True
2019-10-13 00:01:25 -04:00
# The temporary directory for CLI tests
test_temp_dir = None
def pytest_addoption(parser):
parser.addoption(
"--runtor", action="store_true", default=False, help="run tor tests"
)
def pytest_collection_modifyitems(config, items):
if not config.getoption("--runtor"):
# --runtor given in cli: do not skip tor tests
skip_tor = pytest.mark.skip(reason="need --runtor option to run")
for item in items:
if "tor" in item.keywords:
item.add_marker(skip_tor)
@pytest.fixture
def temp_dir():
"""Creates a persistent temporary directory for the CLI tests to use"""
global test_temp_dir
if not test_temp_dir:
2021-12-02 00:01:32 -05:00
test_temp_dir = tempfile.TemporaryDirectory()
return test_temp_dir
@pytest.fixture
def temp_dir_1024(temp_dir):
2021-04-29 20:13:05 -04:00
"""Create a temporary directory that has a single file of a
particular size (1024 bytes).
"""
2021-12-02 00:01:32 -05:00
new_temp_dir = tempfile.TemporaryDirectory(dir=temp_dir.name)
tmp_file = tempfile.NamedTemporaryFile(dir=new_temp_dir.name)
tmp_file.write(b"*" * 1024)
return new_temp_dir
2021-05-02 18:33:42 -04:00
@pytest.fixture
def temp_dir_1024_delete(temp_dir):
2021-04-29 20:13:05 -04:00
"""Create a temporary directory that has a single file of a
particular size (1024 bytes). The temporary directory (including
the file inside) will be deleted after fixture usage.
"""
2021-12-02 00:01:32 -05:00
with tempfile.TemporaryDirectory(dir=temp_dir.name) as new_temp_dir:
with open(os.path.join(new_temp_dir, "file"), "wb") as f:
2019-10-13 00:01:25 -04:00
f.write(b"*" * 1024)
yield new_temp_dir
@pytest.fixture
def temp_file_1024(temp_dir):
2021-04-29 20:13:05 -04:00
"""Create a temporary file of a particular size (1024 bytes)."""
2021-12-02 00:01:32 -05:00
filename = os.path.join(temp_dir.name, "file")
with open(filename, "wb") as f:
f.write(b"*" * 1024)
return filename
2021-05-02 18:33:42 -04:00
@pytest.fixture
def temp_file_1024_delete(temp_dir):
"""
Create a temporary file of a particular size (1024 bytes).
The temporary file will be deleted after fixture usage.
"""
2021-12-02 00:01:32 -05:00
with tempfile.NamedTemporaryFile(dir=temp_dir.name, delete=False) as tmp_file:
2019-10-13 00:01:25 -04:00
tmp_file.write(b"*" * 1024)
tmp_file.flush()
tmp_file.close()
2021-12-02 00:01:32 -05:00
yield tmp_file
2021-05-02 18:33:42 -04:00
@pytest.fixture(scope="session")
def custom_zw():
zw = web.share_mode.ZipWriter(
2018-03-13 05:22:26 -04:00
common.Common(),
zip_filename=common.Common.random_string(4, 6),
2019-10-13 00:01:25 -04:00
processed_size_callback=lambda _: "custom_callback",
)
yield zw
zw.close()
os.remove(zw.zip_filename)
2021-05-02 18:33:42 -04:00
@pytest.fixture(scope="session")
def default_zw():
zw = web.share_mode.ZipWriter(common.Common())
yield zw
zw.close()
tmp_dir = os.path.dirname(zw.zip_filename)
try:
shutil.rmtree(tmp_dir, ignore_errors=True)
2021-04-29 20:13:05 -04:00
except Exception:
pass
2017-07-08 02:17:20 -04:00
@pytest.fixture
def locale_en(monkeypatch):
2019-10-13 00:01:25 -04:00
monkeypatch.setattr("locale.getdefaultlocale", lambda: ("en_US", "UTF-8"))
2017-07-08 02:17:20 -04:00
@pytest.fixture
def locale_fr(monkeypatch):
2019-10-13 00:01:25 -04:00
monkeypatch.setattr("locale.getdefaultlocale", lambda: ("fr_FR", "UTF-8"))
2017-07-08 02:17:20 -04:00
@pytest.fixture
def locale_invalid(monkeypatch):
2019-10-13 00:01:25 -04:00
monkeypatch.setattr("locale.getdefaultlocale", lambda: ("xx_XX", "UTF-8"))
2017-07-08 02:17:20 -04:00
@pytest.fixture
def locale_ru(monkeypatch):
2019-10-13 00:01:25 -04:00
monkeypatch.setattr("locale.getdefaultlocale", lambda: ("ru_RU", "UTF-8"))
2017-07-08 02:17:20 -04:00
@pytest.fixture
def platform_darwin(monkeypatch):
2019-10-13 00:01:25 -04:00
monkeypatch.setattr("platform.system", lambda: "Darwin")
@pytest.fixture # (scope="session")
def platform_linux(monkeypatch):
2019-10-13 00:01:25 -04:00
monkeypatch.setattr("platform.system", lambda: "Linux")
@pytest.fixture
def platform_windows(monkeypatch):
2019-10-13 00:01:25 -04:00
monkeypatch.setattr("platform.system", lambda: "Windows")
@pytest.fixture
def sys_argv_sys_prefix(monkeypatch):
2019-10-13 00:01:25 -04:00
monkeypatch.setattr("sys.argv", [sys.prefix])
@pytest.fixture
def sys_frozen(monkeypatch):
2019-10-13 00:01:25 -04:00
monkeypatch.setattr("sys.frozen", True, raising=False)
@pytest.fixture
def sys_meipass(monkeypatch):
2019-10-13 00:01:25 -04:00
monkeypatch.setattr("sys._MEIPASS", os.path.expanduser("~"), raising=False)
@pytest.fixture # (scope="session")
def sys_onionshare_dev_mode(monkeypatch):
2019-10-13 00:01:25 -04:00
monkeypatch.setattr("sys.onionshare_dev_mode", True, raising=False)
@pytest.fixture
def time_time_100(monkeypatch):
2019-10-13 00:01:25 -04:00
monkeypatch.setattr("time.time", lambda: 100)
@pytest.fixture
def time_strftime(monkeypatch):
2019-10-13 00:01:25 -04:00
monkeypatch.setattr("time.strftime", lambda _: "Jun 06 2013 11:05:00")
2018-03-13 05:22:26 -04:00
@pytest.fixture
def common_obj():
return common.Common()