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)
|
|
|
|
|
|
|
|
|
|
|
|
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()
|
|
|
|
|
2018-12-05 09:05:47 +00:00
|
|
|
source_dir = SourceFileModel(dir='/tmp/another', repo=new_repo)
|
2018-11-06 06:47:04 +00:00
|
|
|
source_dir.save()
|
2018-11-30 00:40:18 +00:00
|
|
|
|
2020-03-03 05:19:36 +00:00
|
|
|
qapp.open_main_window_action()
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
"""
|
|
|
|
os.environ['LANG'] = 'en_US'
|
|
|
|
|
|
|
|
|
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
|