2023-04-17 10:17:01 +00:00
|
|
|
from PyQt6 import QtCore
|
2023-10-01 08:19:39 +00:00
|
|
|
from PyQt6.QtWidgets import QDialogButtonBox, QMessageBox, QToolTip
|
2021-11-17 09:14:11 +00:00
|
|
|
from vorta.store.models import BackupProfileModel
|
2020-10-30 04:15:38 +00:00
|
|
|
|
|
|
|
|
2023-10-01 08:19:39 +00:00
|
|
|
def test_profile_add_delete(qapp, qtbot, mocker):
|
|
|
|
"""Tests adding and deleting profiles."""
|
2020-10-30 04:15:38 +00:00
|
|
|
main = qapp.main_window
|
2020-11-19 07:44:07 +00:00
|
|
|
|
2023-10-01 08:19:39 +00:00
|
|
|
# add profile and ensure it is created as intended
|
|
|
|
qtbot.mouseClick(main.profileAddButton, QtCore.Qt.MouseButton.LeftButton)
|
2020-11-19 07:44:07 +00:00
|
|
|
add_profile_window = main.window
|
2020-10-30 04:15:38 +00:00
|
|
|
qtbot.keyClicks(add_profile_window.profileNameField, 'Test Profile')
|
2023-10-01 08:19:39 +00:00
|
|
|
save_button = add_profile_window.buttonBox.button(QDialogButtonBox.StandardButton.Save)
|
|
|
|
qtbot.mouseClick(save_button, QtCore.Qt.MouseButton.LeftButton)
|
2020-10-30 04:15:38 +00:00
|
|
|
assert BackupProfileModel.get_or_none(name='Test Profile') is not None
|
2020-11-19 07:44:07 +00:00
|
|
|
assert main.profileSelector.currentText() == 'Test Profile'
|
|
|
|
|
2023-10-01 08:19:39 +00:00
|
|
|
# delete the new profile and ensure it is no longer available.
|
|
|
|
mocker.patch.object(QMessageBox, 'question', return_value=QMessageBox.StandardButton.Yes)
|
|
|
|
qtbot.mouseClick(main.profileDeleteButton, QtCore.Qt.MouseButton.LeftButton)
|
|
|
|
assert BackupProfileModel.get_or_none(name='Test Profile') is None
|
|
|
|
assert main.profileSelector.currentText() == 'Default'
|
|
|
|
|
|
|
|
# attempt to delete the last remaining profile
|
|
|
|
# see that it cannot be deleted, a warning is displayed, and the profile remains
|
|
|
|
warning = mocker.patch.object(QToolTip, 'showText')
|
|
|
|
qtbot.mouseClick(main.profileDeleteButton, QtCore.Qt.MouseButton.LeftButton)
|
|
|
|
assert "Cannot delete the last profile." in warning.call_args[0][1]
|
|
|
|
assert BackupProfileModel.get_or_none(name='Default') is not None
|
|
|
|
assert main.profileSelector.currentText() == 'Default'
|
|
|
|
|
2020-10-30 04:15:38 +00:00
|
|
|
|
|
|
|
def test_profile_edit(qapp, qtbot):
|
2023-10-01 08:19:39 +00:00
|
|
|
"""Tests editing/renaming a profile"""
|
2020-10-30 04:15:38 +00:00
|
|
|
main = qapp.main_window
|
2020-11-19 07:44:07 +00:00
|
|
|
|
2023-10-01 08:19:39 +00:00
|
|
|
# click to rename profile, clear the name field, type new profile name
|
|
|
|
qtbot.mouseClick(main.profileRenameButton, QtCore.Qt.MouseButton.LeftButton)
|
2020-11-19 07:44:07 +00:00
|
|
|
edit_profile_window = main.window
|
2020-10-30 04:15:38 +00:00
|
|
|
edit_profile_window.profileNameField.setText("")
|
|
|
|
qtbot.keyClicks(edit_profile_window.profileNameField, 'Test Profile')
|
2023-10-01 08:19:39 +00:00
|
|
|
save_button = edit_profile_window.buttonBox.button(QDialogButtonBox.StandardButton.Save)
|
|
|
|
qtbot.mouseClick(save_button, QtCore.Qt.MouseButton.LeftButton)
|
2020-11-19 07:44:07 +00:00
|
|
|
|
2023-10-01 08:19:39 +00:00
|
|
|
# assert a profile by the old name no longer exists, and the newly named profile does exist and is selected.
|
2020-10-30 04:15:38 +00:00
|
|
|
assert BackupProfileModel.get_or_none(name='Default') is None
|
|
|
|
assert BackupProfileModel.get_or_none(name='Test Profile') is not None
|
2020-11-19 07:44:07 +00:00
|
|
|
assert main.profileSelector.currentText() == 'Test Profile'
|