33 lines
803 B
Python
33 lines
803 B
Python
from datetime import datetime
|
|
|
|
import allure
|
|
import pytest
|
|
|
|
import configs
|
|
from driver.aut import AUT
|
|
from gui.main_window import MainWindow
|
|
from scripts.utils import system_path
|
|
|
|
|
|
@pytest.fixture()
|
|
def aut() -> AUT:
|
|
if not configs.APP_DIR.exists():
|
|
pytest.exit(f"Application not found: {configs.APP_DIR}")
|
|
_aut = AUT()
|
|
yield _aut
|
|
|
|
|
|
@pytest.fixture
|
|
def user_data(request) -> system_path.SystemPath:
|
|
user_data = configs.testpath.STATUS_DATA / f'app_{datetime.now():%H%M%S_%f}' / 'data'
|
|
if hasattr(request, 'param'):
|
|
system_path.SystemPath(request.param).copy_to(user_data)
|
|
yield user_data
|
|
|
|
|
|
@pytest.fixture
|
|
def main_window(aut: AUT, user_data):
|
|
aut.launch(f'-d={user_data.parent}')
|
|
yield MainWindow().wait_until_appears().prepare()
|
|
aut.detach().stop()
|