2018-11-01 06:01:44 +00:00
|
|
|
import pytest
|
|
|
|
import peewee
|
2018-11-30 00:40:18 +00:00
|
|
|
import sys
|
2020-05-30 11:49:21 +00:00
|
|
|
import os
|
2018-11-30 00:40:18 +00:00
|
|
|
from datetime import datetime as dt
|
2020-03-03 05:19:36 +00:00
|
|
|
from unittest.mock import MagicMock
|
2018-11-01 06:01:44 +00:00
|
|
|
|
|
|
|
import vorta
|
2020-03-03 05:19:36 +00:00
|
|
|
from vorta.models import (RepoModel, RepoPassword, BackupProfileModel, SourceFileModel,
|
|
|
|
SettingsModel, ArchiveModel, WifiSettingModel, EventLogModel, SchemaVersion)
|
2020-10-03 06:27:31 +00:00
|
|
|
from vorta.views.main_window import MainWindow
|
2020-03-03 05:19:36 +00:00
|
|
|
|
|
|
|
models = [RepoModel, RepoPassword, BackupProfileModel, SourceFileModel,
|
|
|
|
SettingsModel, ArchiveModel, WifiSettingModel, EventLogModel, SchemaVersion]
|
2018-11-01 06:01:44 +00:00
|
|
|
|
2018-11-05 10:30:59 +00:00
|
|
|
|
2018-11-27 11:33:16 +00:00
|
|
|
def pytest_configure(config):
|
|
|
|
sys._called_from_test = True
|
|
|
|
|
|
|
|
|
2020-03-03 05:19:36 +00:00
|
|
|
@pytest.fixture(scope='function', autouse=True)
|
|
|
|
def init_db(qapp):
|
|
|
|
vorta.models.db.drop_tables(models)
|
|
|
|
vorta.models.init_db()
|
2018-11-06 06:47:04 +00:00
|
|
|
|
|
|
|
new_repo = RepoModel(url='i0fi93@i593.repo.borgbase.com:repo')
|
|
|
|
new_repo.save()
|
2018-11-30 00:40:18 +00:00
|
|
|
|
|
|
|
profile = BackupProfileModel.get(id=1)
|
|
|
|
profile.repo = new_repo.id
|
2020-08-30 06:28:48 +00:00
|
|
|
profile.dont_run_on_metered_networks = False
|
2018-11-06 06:47:04 +00:00
|
|
|
profile.save()
|
|
|
|
|
2018-11-30 00:40:18 +00:00
|
|
|
test_archive = ArchiveModel(snapshot_id='99999', name='test-archive', time=dt(2000, 1, 1, 0, 0), repo=1)
|
|
|
|
test_archive.save()
|
|
|
|
|
2020-03-23 06:20:09 +00:00
|
|
|
test_archive1 = ArchiveModel(snapshot_id='99998', name='test-archive1', time=dt(2000, 1, 1, 0, 0), repo=1)
|
|
|
|
test_archive1.save()
|
|
|
|
|
2020-10-30 08:30:52 +00:00
|
|
|
source_dir = SourceFileModel(dir='/tmp/another', repo=new_repo, dir_size=100, dir_files_count=18, path_isdir=True)
|
2018-11-06 06:47:04 +00:00
|
|
|
source_dir.save()
|
2018-11-30 00:40:18 +00:00
|
|
|
|
2020-10-03 06:27:31 +00:00
|
|
|
qapp.main_window = MainWindow(qapp) # Re-open main window to apply mock data in UI
|
2020-03-03 05:19:36 +00:00
|
|
|
|
|
|
|
|
2020-05-30 11:49:21 +00:00
|
|
|
@pytest.fixture(scope='session', autouse=True)
|
|
|
|
def local_en():
|
|
|
|
"""
|
|
|
|
Some tests use English strings. So override whatever language the current user
|
|
|
|
has and run the tests with the English UI.
|
|
|
|
"""
|
2020-09-08 00:22:26 +00:00
|
|
|
os.environ['LANG'] = 'en'
|
2020-05-30 11:49:21 +00:00
|
|
|
|
|
|
|
|
2020-09-13 04:55:10 +00:00
|
|
|
@pytest.fixture(scope='function', autouse=True)
|
|
|
|
def cleanup(request, qapp, qtbot):
|
|
|
|
"""
|
|
|
|
Ensure BorgThread is stopped when new test starts.
|
|
|
|
"""
|
|
|
|
def ensure_borg_thread_stopped():
|
|
|
|
qapp.backup_cancelled_event.emit()
|
|
|
|
qtbot.waitUntil(lambda: not vorta.borg.borg_thread.BorgThread.is_running())
|
|
|
|
request.addfinalizer(ensure_borg_thread_stopped)
|
|
|
|
|
|
|
|
|
2020-03-03 05:19:36 +00:00
|
|
|
@pytest.fixture(scope='session')
|
2020-05-30 11:49:21 +00:00
|
|
|
def qapp(tmpdir_factory, local_en):
|
2020-03-03 05:19:36 +00:00
|
|
|
tmp_db = tmpdir_factory.mktemp('Vorta').join('settings.sqlite')
|
|
|
|
mock_db = peewee.SqliteDatabase(str(tmp_db))
|
|
|
|
vorta.models.init_db(mock_db)
|
|
|
|
|
|
|
|
from vorta.application import VortaApp
|
|
|
|
VortaApp.set_borg_details_action = MagicMock() # Can't use pytest-mock in session scope
|
|
|
|
VortaApp.scheduler = MagicMock()
|
|
|
|
|
|
|
|
qapp = VortaApp([]) # Only init QApplication once to avoid segfaults while testing.
|
|
|
|
|
|
|
|
yield qapp
|
2018-11-06 06:47:04 +00:00
|
|
|
|
2018-11-22 00:43:37 +00:00
|
|
|
|
2018-11-30 00:40:18 +00:00
|
|
|
@pytest.fixture
|
2018-12-05 09:05:47 +00:00
|
|
|
def choose_file_dialog(*args):
|
2018-11-30 00:40:18 +00:00
|
|
|
class MockFileDialog:
|
2018-12-04 02:58:12 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2018-11-30 00:40:18 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
def open(self, func):
|
|
|
|
func()
|
|
|
|
|
|
|
|
def selectedFiles(self):
|
|
|
|
return ['/tmp']
|
|
|
|
|
|
|
|
return MockFileDialog
|
|
|
|
|
|
|
|
|
2018-11-06 06:47:04 +00:00
|
|
|
@pytest.fixture
|
|
|
|
def borg_json_output():
|
|
|
|
def _read_json(subcommand):
|
2018-11-27 11:33:16 +00:00
|
|
|
stdout = open(f'tests/borg_json_output/{subcommand}_stdout.json')
|
|
|
|
stderr = open(f'tests/borg_json_output/{subcommand}_stderr.json')
|
|
|
|
return stdout, stderr
|
2018-11-06 06:47:04 +00:00
|
|
|
return _read_json
|
2020-11-19 07:44:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def rootdir():
|
|
|
|
return os.path.dirname(os.path.abspath(__file__))
|
|
|
|
|
|
|
|
|
|
|
|
def delete_current_profile(qapp):
|
|
|
|
''' Delete current profile for cleanup '''
|
|
|
|
main = qapp.main_window
|
|
|
|
target = BackupProfileModel.get(id=main.profileSelector.currentData())
|
|
|
|
if qapp.scheduler.get_job(target.id):
|
|
|
|
qapp.scheduler.remove_job(target.id)
|
|
|
|
target.delete_instance(recursive=True)
|
|
|
|
main.profileSelector.removeItem(main.profileSelector.currentIndex())
|
|
|
|
main.profile_select_action(0)
|