mirror of
https://github.com/borgbase/vorta
synced 2024-12-22 15:57:34 +00:00
109 lines
4.3 KiB
Python
109 lines
4.3 KiB
Python
import os
|
|
import sys
|
|
from pathlib import Path
|
|
from unittest.mock import Mock
|
|
|
|
import pytest
|
|
import vorta.store.models
|
|
from PyQt6 import QtCore
|
|
from PyQt6.QtWidgets import QCheckBox, QFormLayout
|
|
|
|
|
|
def test_autostart(qapp, qtbot):
|
|
"""Check if file exists only on Linux, otherwise just check it doesn't crash"""
|
|
setting = "Automatically start Vorta at login"
|
|
|
|
_click_toggle_setting(setting, qapp, qtbot)
|
|
|
|
if sys.platform == 'linux':
|
|
autostart_path = (
|
|
Path(os.environ.get("XDG_CONFIG_HOME", os.path.expanduser("~") + '/.config') + "/autostart")
|
|
/ "vorta.desktop"
|
|
)
|
|
qtbot.waitUntil(lambda: autostart_path.exists(), **pytest._wait_defaults)
|
|
|
|
with open(autostart_path) as desktop_file:
|
|
desktop_file_text = desktop_file.read()
|
|
|
|
assert desktop_file_text.startswith("[Desktop Entry]")
|
|
|
|
_click_toggle_setting(setting, qapp, qtbot)
|
|
|
|
if sys.platform == 'linux':
|
|
assert not os.path.exists(autostart_path)
|
|
|
|
|
|
def test_enable_fixed_units(qapp, qtbot, mocker):
|
|
"""Tests the 'enable fixed units' setting to ensure the archive tab sizes are displayed correctly."""
|
|
tab = qapp.main_window.archiveTab
|
|
setting = "Use the same unit of measurement for archive sizes"
|
|
|
|
# set mocks
|
|
mock_setting = mocker.patch.object(vorta.views.archive_tab.SettingsModel, "get", return_value=Mock(value=True))
|
|
mock_pretty_bytes = mocker.patch.object(vorta.views.archive_tab, "pretty_bytes")
|
|
|
|
# with setting enabled, fixed units should be determined and passed to pretty_bytes as an 'int'
|
|
tab.populate_from_profile()
|
|
mock_pretty_bytes.assert_called()
|
|
kwargs_list = mock_pretty_bytes.call_args_list[0].kwargs
|
|
assert 'fixed_unit' in kwargs_list
|
|
assert isinstance(kwargs_list['fixed_unit'], int)
|
|
|
|
# disable setting and reset mock
|
|
mock_setting.return_value = Mock(value=False)
|
|
mock_pretty_bytes.reset_mock()
|
|
|
|
# with setting disabled, pretty_bytes should be called with fixed units set to 'None'
|
|
tab.populate_from_profile()
|
|
mock_pretty_bytes.assert_called()
|
|
kwargs_list = mock_pretty_bytes.call_args_list[0].kwargs
|
|
assert 'fixed_unit' in kwargs_list
|
|
assert kwargs_list['fixed_unit'] is None
|
|
|
|
# use the qt bot to click the setting and see that the refresh_archive emit works as intended.
|
|
with qtbot.waitSignal(qapp.main_window.miscTab.refresh_archive, timeout=5000):
|
|
_click_toggle_setting(setting, qapp, qtbot)
|
|
|
|
|
|
@pytest.mark.skipif(sys.platform != 'darwin', reason="Full Disk Access check only on Darwin")
|
|
def test_check_full_disk_access(qapp, qtbot, mocker):
|
|
"""Enables/disables 'Check for Full Disk Access on startup' setting and ensures functionality"""
|
|
setting = "Check for Full Disk Access on startup"
|
|
|
|
# Set mocks for setting enabled
|
|
mocker.patch.object(vorta.store.models.SettingsModel, "get", return_value=Mock(value=True))
|
|
mocker.patch('pathlib.Path.exists', return_value=True)
|
|
mocker.patch('os.access', return_value=False)
|
|
mock_qmessagebox = mocker.patch('vorta.application.QMessageBox')
|
|
|
|
# See that pop-up occurs
|
|
qapp.check_darwin_permissions()
|
|
mock_qmessagebox.assert_called()
|
|
|
|
# Reset mocks for setting disabled
|
|
mock_qmessagebox.reset_mock()
|
|
mocker.patch.object(vorta.store.models.SettingsModel, "get", return_value=Mock(value=False))
|
|
|
|
# See that pop-up does not occur
|
|
qapp.check_darwin_permissions()
|
|
mock_qmessagebox.assert_not_called()
|
|
|
|
# Checks that setting doesn't crash program when click toggled on then off"""
|
|
_click_toggle_setting(setting, qapp, qtbot)
|
|
_click_toggle_setting(setting, qapp, qtbot)
|
|
|
|
|
|
def _click_toggle_setting(setting, qapp, qtbot):
|
|
"""Toggle setting checkbox in the misc tab"""
|
|
miscTab = qapp.main_window.miscTab
|
|
|
|
for x in range(miscTab.checkboxLayout.count()):
|
|
item = miscTab.checkboxLayout.itemAt(x, QFormLayout.ItemRole.FieldRole)
|
|
if item is not None:
|
|
checkbox = item.itemAt(0).widget()
|
|
if checkbox.text() == setting and isinstance(checkbox, QCheckBox):
|
|
# Have to use pos to click checkbox correctly
|
|
# https://stackoverflow.com/questions/19418125/pysides-qtest-not-checking-box/24070484#24070484
|
|
pos = QtCore.QPoint(2, int(checkbox.height() / 2))
|
|
qtbot.mouseClick(checkbox, QtCore.Qt.MouseButton.LeftButton, pos=pos)
|
|
break
|