2018-11-30 00:40:18 +00:00
|
|
|
from collections import namedtuple
|
2022-03-24 06:27:07 +00:00
|
|
|
|
|
|
|
import psutil
|
2020-06-16 16:21:24 +00:00
|
|
|
import pytest
|
2018-11-30 00:40:18 +00:00
|
|
|
from PyQt5 import QtCore
|
2022-03-24 06:27:07 +00:00
|
|
|
|
2018-11-06 06:47:04 +00:00
|
|
|
import vorta.borg
|
2018-11-30 00:40:18 +00:00
|
|
|
import vorta.utils
|
2022-03-24 06:27:07 +00:00
|
|
|
import vorta.views.archive_tab
|
|
|
|
from vorta.store.models import ArchiveModel, BackupProfileModel
|
2018-11-30 00:40:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
class MockFileDialog:
|
|
|
|
def open(self, func):
|
|
|
|
func()
|
|
|
|
|
|
|
|
def selectedFiles(self):
|
|
|
|
return ['/tmp']
|
2018-11-06 06:47:04 +00:00
|
|
|
|
|
|
|
|
2020-03-03 05:19:36 +00:00
|
|
|
def test_prune_intervals(qapp, qtbot):
|
2018-11-06 06:47:04 +00:00
|
|
|
prune_intervals = ['hour', 'day', 'week', 'month', 'year']
|
2020-03-03 05:19:36 +00:00
|
|
|
main = qapp.main_window
|
2018-11-22 01:18:12 +00:00
|
|
|
tab = main.archiveTab
|
2018-11-06 06:47:04 +00:00
|
|
|
profile = BackupProfileModel.get(id=1)
|
|
|
|
|
|
|
|
for i in prune_intervals:
|
|
|
|
getattr(tab, f'prune_{i}').setValue(9)
|
|
|
|
tab.save_prune_setting(None)
|
|
|
|
profile = profile.refresh()
|
|
|
|
assert getattr(profile, f'prune_{i}') == 9
|
|
|
|
|
|
|
|
|
2020-03-03 05:19:36 +00:00
|
|
|
def test_repo_list(qapp, qtbot, mocker, borg_json_output):
|
|
|
|
main = qapp.main_window
|
2018-11-22 01:18:12 +00:00
|
|
|
tab = main.archiveTab
|
2018-11-06 06:47:04 +00:00
|
|
|
|
|
|
|
stdout, stderr = borg_json_output('list')
|
2018-11-22 00:43:37 +00:00
|
|
|
popen_result = mocker.MagicMock(stdout=stdout, stderr=stderr, returncode=0)
|
2021-10-04 11:31:41 +00:00
|
|
|
mocker.patch.object(vorta.borg.borg_job, 'Popen', return_value=popen_result)
|
2018-11-06 06:47:04 +00:00
|
|
|
|
2020-03-03 05:19:36 +00:00
|
|
|
main.tabWidget.setCurrentIndex(3)
|
2022-03-24 06:27:07 +00:00
|
|
|
tab.refresh_archive_list()
|
|
|
|
qtbot.waitUntil(lambda: not tab.bCheck.isEnabled(), **pytest._wait_defaults)
|
2020-03-03 05:19:36 +00:00
|
|
|
|
2022-03-24 06:27:07 +00:00
|
|
|
assert not tab.bCheck.isEnabled()
|
2020-03-03 05:19:36 +00:00
|
|
|
|
2021-02-17 02:14:58 +00:00
|
|
|
qtbot.waitUntil(lambda: main.progressText.text() == 'Refreshing archives done.', **pytest._wait_defaults)
|
2018-11-22 01:35:59 +00:00
|
|
|
assert ArchiveModel.select().count() == 6
|
2020-09-05 14:08:36 +00:00
|
|
|
assert main.progressText.text() == 'Refreshing archives done.'
|
2022-03-24 06:27:07 +00:00
|
|
|
assert tab.bCheck.isEnabled()
|
2018-11-30 00:40:18 +00:00
|
|
|
|
|
|
|
|
2020-03-03 05:19:36 +00:00
|
|
|
def test_repo_prune(qapp, qtbot, mocker, borg_json_output):
|
|
|
|
main = qapp.main_window
|
2018-11-30 00:40:18 +00:00
|
|
|
tab = main.archiveTab
|
|
|
|
main.tabWidget.setCurrentIndex(3)
|
|
|
|
tab.populate_from_profile()
|
|
|
|
stdout, stderr = borg_json_output('prune')
|
|
|
|
popen_result = mocker.MagicMock(stdout=stdout, stderr=stderr, returncode=0)
|
2021-10-04 11:31:41 +00:00
|
|
|
mocker.patch.object(vorta.borg.borg_job, 'Popen', return_value=popen_result)
|
2018-11-30 00:40:18 +00:00
|
|
|
|
2022-03-24 06:27:07 +00:00
|
|
|
qtbot.mouseClick(tab.bPrune, QtCore.Qt.LeftButton)
|
2018-11-30 00:40:18 +00:00
|
|
|
|
2021-02-17 02:14:58 +00:00
|
|
|
qtbot.waitUntil(lambda: main.progressText.text().startswith('Refreshing archives done.'), **pytest._wait_defaults)
|
2018-11-30 00:40:18 +00:00
|
|
|
|
|
|
|
|
2022-02-21 17:23:56 +00:00
|
|
|
def test_repo_compact(qapp, qtbot, mocker, borg_json_output):
|
|
|
|
main = qapp.main_window
|
|
|
|
tab = main.archiveTab
|
|
|
|
vorta.utils.borg_compat.version = '1.2.0'
|
|
|
|
main.tabWidget.setCurrentIndex(3)
|
|
|
|
tab.populate_from_profile()
|
|
|
|
stdout, stderr = borg_json_output('compact')
|
|
|
|
popen_result = mocker.MagicMock(stdout=stdout, stderr=stderr, returncode=0)
|
|
|
|
mocker.patch.object(vorta.borg.borg_job, 'Popen', return_value=popen_result)
|
|
|
|
|
|
|
|
qtbot.mouseClick(tab.compactButton, QtCore.Qt.LeftButton)
|
|
|
|
|
|
|
|
qtbot.waitUntil(
|
|
|
|
lambda: 'compaction freed about 56.00 kB repository space' in main.logText.text(),
|
|
|
|
**pytest._wait_defaults
|
|
|
|
)
|
|
|
|
vorta.utils.borg_compat.version = '1.1.0'
|
|
|
|
|
|
|
|
|
2020-03-03 05:19:36 +00:00
|
|
|
def test_check(qapp, mocker, borg_json_output, qtbot):
|
|
|
|
main = qapp.main_window
|
2018-11-30 00:40:18 +00:00
|
|
|
tab = main.archiveTab
|
|
|
|
main.tabWidget.setCurrentIndex(3)
|
|
|
|
tab.populate_from_profile()
|
|
|
|
|
|
|
|
stdout, stderr = borg_json_output('check')
|
|
|
|
popen_result = mocker.MagicMock(stdout=stdout, stderr=stderr, returncode=0)
|
2021-10-04 11:31:41 +00:00
|
|
|
mocker.patch.object(vorta.borg.borg_job, 'Popen', return_value=popen_result)
|
2018-11-30 00:40:18 +00:00
|
|
|
|
2022-03-24 06:27:07 +00:00
|
|
|
qtbot.mouseClick(tab.bCheck, QtCore.Qt.LeftButton)
|
2018-11-30 00:40:18 +00:00
|
|
|
success_text = 'INFO: Archive consistency check complete'
|
2021-02-17 02:14:58 +00:00
|
|
|
qtbot.waitUntil(lambda: main.logText.text().startswith(success_text), **pytest._wait_defaults)
|
2018-11-30 00:40:18 +00:00
|
|
|
|
|
|
|
|
2022-04-16 05:30:31 +00:00
|
|
|
def test_mount(qapp, qtbot, mocker, borg_json_output, monkeypatch, choose_file_dialog):
|
2018-11-30 00:40:18 +00:00
|
|
|
def psutil_disk_partitions(**kwargs):
|
|
|
|
DiskPartitions = namedtuple('DiskPartitions', ['device', 'mountpoint'])
|
|
|
|
return [DiskPartitions('borgfs', '/tmp')]
|
|
|
|
|
|
|
|
monkeypatch.setattr(
|
|
|
|
psutil, "disk_partitions", psutil_disk_partitions
|
|
|
|
)
|
|
|
|
|
2020-03-03 05:19:36 +00:00
|
|
|
main = qapp.main_window
|
2018-11-30 00:40:18 +00:00
|
|
|
tab = main.archiveTab
|
|
|
|
main.tabWidget.setCurrentIndex(3)
|
|
|
|
tab.populate_from_profile()
|
|
|
|
tab.archiveTable.selectRow(0)
|
|
|
|
|
2021-02-18 01:44:10 +00:00
|
|
|
stdout, stderr = borg_json_output('prune') # TODO: fully mock mount command?
|
2018-11-30 00:40:18 +00:00
|
|
|
popen_result = mocker.MagicMock(stdout=stdout, stderr=stderr, returncode=0)
|
2021-10-04 11:31:41 +00:00
|
|
|
mocker.patch.object(vorta.borg.borg_job, 'Popen', return_value=popen_result)
|
2018-11-30 00:40:18 +00:00
|
|
|
|
|
|
|
monkeypatch.setattr(
|
2018-12-05 09:05:47 +00:00
|
|
|
vorta.views.archive_tab, "choose_file_dialog", choose_file_dialog
|
2018-11-30 00:40:18 +00:00
|
|
|
)
|
|
|
|
|
2022-04-16 05:30:31 +00:00
|
|
|
tab.bmountarchive_clicked()
|
2021-02-17 02:14:58 +00:00
|
|
|
qtbot.waitUntil(lambda: tab.mountErrors.text().startswith('Mounted'), **pytest._wait_defaults)
|
2018-11-30 00:40:18 +00:00
|
|
|
|
2022-04-16 05:30:31 +00:00
|
|
|
tab.bmountarchive_clicked()
|
|
|
|
qtbot.waitUntil(lambda: tab.mountErrors.text().startswith('Un-mounted successfully.'), **pytest._wait_defaults)
|
|
|
|
|
|
|
|
tab.bmountrepo_clicked()
|
|
|
|
qtbot.waitUntil(lambda: tab.mountErrors.text().startswith('Mounted'), **pytest._wait_defaults)
|
|
|
|
|
|
|
|
tab.bmountrepo_clicked()
|
2021-02-17 02:14:58 +00:00
|
|
|
qtbot.waitUntil(lambda: tab.mountErrors.text().startswith('Un-mounted successfully.'), **pytest._wait_defaults)
|
2018-11-30 00:40:18 +00:00
|
|
|
|
|
|
|
|
2020-11-20 00:46:09 +00:00
|
|
|
def test_archive_extract(qapp, qtbot, mocker, borg_json_output):
|
2020-03-03 05:19:36 +00:00
|
|
|
main = qapp.main_window
|
2018-11-30 00:40:18 +00:00
|
|
|
tab = main.archiveTab
|
|
|
|
main.tabWidget.setCurrentIndex(3)
|
|
|
|
|
|
|
|
tab.populate_from_profile()
|
2020-03-23 06:20:09 +00:00
|
|
|
qtbot.waitUntil(lambda: tab.archiveTable.rowCount() == 2)
|
2018-11-30 00:40:18 +00:00
|
|
|
|
|
|
|
tab.archiveTable.selectRow(0)
|
|
|
|
stdout, stderr = borg_json_output('list_archive')
|
|
|
|
popen_result = mocker.MagicMock(stdout=stdout, stderr=stderr, returncode=0)
|
2021-10-04 11:31:41 +00:00
|
|
|
mocker.patch.object(vorta.borg.borg_job, 'Popen', return_value=popen_result)
|
2022-03-24 06:27:07 +00:00
|
|
|
tab.extract_action()
|
2018-11-30 00:40:18 +00:00
|
|
|
|
2021-02-17 02:14:58 +00:00
|
|
|
qtbot.waitUntil(lambda: hasattr(tab, '_window'), **pytest._wait_defaults)
|
2021-02-18 01:44:10 +00:00
|
|
|
# qtbot.waitUntil(lambda: tab._window == qapp.activeWindow(), **pytest._wait_defaults)
|
2018-11-30 00:40:18 +00:00
|
|
|
|
|
|
|
assert tab._window.treeView.model().rootItem.childItems[0].data(0) == 'Users'
|
|
|
|
tab._window.treeView.model().rootItem.childItems[0].load_children()
|
|
|
|
assert tab._window.archiveNameLabel.text().startswith('test-archive, 2000')
|
2020-03-23 06:20:09 +00:00
|
|
|
|
|
|
|
|
2020-11-20 00:46:09 +00:00
|
|
|
def test_archive_delete(qapp, qtbot, mocker, borg_json_output):
|
2020-03-23 06:20:09 +00:00
|
|
|
main = qapp.main_window
|
|
|
|
tab = main.archiveTab
|
|
|
|
main.tabWidget.setCurrentIndex(3)
|
|
|
|
|
|
|
|
tab.populate_from_profile()
|
|
|
|
qtbot.waitUntil(lambda: tab.archiveTable.rowCount() == 2)
|
|
|
|
|
2020-11-20 00:46:09 +00:00
|
|
|
tab.archiveTable.selectRow(0)
|
|
|
|
stdout, stderr = borg_json_output('delete')
|
|
|
|
popen_result = mocker.MagicMock(stdout=stdout, stderr=stderr, returncode=0)
|
2021-10-04 11:31:41 +00:00
|
|
|
mocker.patch.object(vorta.borg.borg_job, 'Popen', return_value=popen_result)
|
2020-11-20 00:46:09 +00:00
|
|
|
mocker.patch.object(vorta.views.archive_tab.ArchiveTab, 'confirm_dialog', lambda x, y, z: True)
|
2021-02-18 01:44:10 +00:00
|
|
|
tab.delete_action()
|
2020-03-23 06:20:09 +00:00
|
|
|
|
2021-02-17 02:14:58 +00:00
|
|
|
qtbot.waitUntil(lambda: main.progressText.text() == 'Archive deleted.', **pytest._wait_defaults)
|
2020-11-20 00:46:09 +00:00
|
|
|
assert ArchiveModel.select().count() == 1
|
|
|
|
assert tab.archiveTable.rowCount() == 1
|
|
|
|
|
|
|
|
|
2021-02-18 01:44:10 +00:00
|
|
|
def test_archive_rename(qapp, qtbot, mocker, borg_json_output):
|
|
|
|
main = qapp.main_window
|
|
|
|
tab = main.archiveTab
|
|
|
|
main.tabWidget.setCurrentIndex(3)
|
|
|
|
|
|
|
|
tab.populate_from_profile()
|
|
|
|
qtbot.waitUntil(lambda: tab.archiveTable.rowCount() == 2)
|
|
|
|
|
|
|
|
tab.archiveTable.selectRow(0)
|
|
|
|
new_archive_name = 'idf89d8f9d8fd98'
|
|
|
|
stdout, stderr = borg_json_output('rename')
|
|
|
|
popen_result = mocker.MagicMock(stdout=stdout, stderr=stderr, returncode=0)
|
2021-10-04 11:31:41 +00:00
|
|
|
mocker.patch.object(vorta.borg.borg_job, 'Popen', return_value=popen_result)
|
2021-02-18 01:44:10 +00:00
|
|
|
mocker.patch.object(vorta.views.archive_tab.QInputDialog, 'getText', return_value=(new_archive_name, True))
|
|
|
|
tab.rename_action()
|
|
|
|
|
|
|
|
# Successful rename case
|
|
|
|
qtbot.waitUntil(lambda: tab.mountErrors.text() == 'Archive renamed.', **pytest._wait_defaults)
|
|
|
|
assert ArchiveModel.select().filter(name=new_archive_name).count() == 1
|
|
|
|
|
|
|
|
# Duplicate name case
|
2022-03-24 06:27:07 +00:00
|
|
|
tab.archiveTable.selectRow(0)
|
2021-02-18 01:44:10 +00:00
|
|
|
exp_text = 'An archive with this name already exists.'
|
|
|
|
mocker.patch.object(vorta.views.archive_tab.QInputDialog, 'getText', return_value=(new_archive_name, True))
|
|
|
|
tab.rename_action()
|
|
|
|
qtbot.waitUntil(lambda: tab.mountErrors.text() == exp_text, **pytest._wait_defaults)
|