mirror of https://github.com/borgbase/vorta
33 lines
1.2 KiB
Python
33 lines
1.2 KiB
Python
from vorta.models import BackupProfileModel, SnapshotModel
|
|
import vorta.borg
|
|
|
|
|
|
def test_prune_intervals(app, qtbot):
|
|
prune_intervals = ['hour', 'day', 'week', 'month', 'year']
|
|
main = app.main_window
|
|
tab = main.archiveTab
|
|
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
|
|
|
|
|
|
def test_repo_list(app_with_repo, qtbot, mocker, borg_json_output):
|
|
main = app_with_repo.main_window
|
|
tab = main.archiveTab
|
|
main.tabWidget.setCurrentIndex(3)
|
|
tab.list_action()
|
|
assert not tab.checkButton.isEnabled()
|
|
|
|
stdout, stderr = borg_json_output('list')
|
|
popen_result = mocker.MagicMock(stdout=stdout, stderr=stderr, returncode=0)
|
|
mocker.patch.object(vorta.borg.borg_thread, 'Popen', return_value=popen_result)
|
|
|
|
qtbot.waitUntil(lambda: main.createProgressText.text() == 'Refreshing snapshots done.')
|
|
assert SnapshotModel.select().count() == 6
|
|
assert main.createProgressText.text() == 'Refreshing snapshots done.'
|
|
assert tab.checkButton.isEnabled()
|