69 lines
1.7 KiB
Python
69 lines
1.7 KiB
Python
import allure
|
|
import pytest
|
|
|
|
import configs
|
|
import constants
|
|
from constants import UserAccount
|
|
from driver.aut import AUT
|
|
from gui.main_window import MainWindow
|
|
from scripts.utils import system_path
|
|
from scripts.utils.system_path import SystemPath
|
|
|
|
|
|
@pytest.fixture
|
|
def application_logs():
|
|
yield
|
|
for app_data in configs.testpath.STATUS_DATA.iterdir():
|
|
for log in (app_data / 'logs').iterdir():
|
|
allure.attach.file(log, name=str(log.name), attachment_type=allure.attachment_type.TEXT)
|
|
log.unlink()
|
|
|
|
|
|
@pytest.fixture
|
|
def user_data(request) -> system_path.SystemPath:
|
|
if hasattr(request, 'param'):
|
|
fp = request.param
|
|
assert fp.is_dir()
|
|
return fp
|
|
|
|
|
|
@pytest.fixture
|
|
def aut(user_data) -> AUT:
|
|
if not configs.APP_DIR.exists():
|
|
pytest.exit(f"Application not found: {configs.APP_DIR}")
|
|
_aut = AUT(user_data=user_data)
|
|
yield _aut
|
|
|
|
|
|
@pytest.fixture()
|
|
def multiple_instance():
|
|
def _aut(user_data: SystemPath = None) -> AUT:
|
|
if not configs.APP_DIR.exists():
|
|
pytest.exit(f"Application not found: {configs.APP_DIR}")
|
|
return AUT(user_data=user_data)
|
|
|
|
yield _aut
|
|
|
|
|
|
@pytest.fixture
|
|
def main_window(aut: AUT, user_data):
|
|
aut.launch()
|
|
yield MainWindow().wait_until_appears().prepare()
|
|
aut.detach().stop()
|
|
|
|
|
|
@pytest.fixture
|
|
def user_account(request) -> UserAccount:
|
|
if hasattr(request, 'param'):
|
|
user_account = request.param
|
|
assert isinstance(user_account, UserAccount)
|
|
else:
|
|
user_account = constants.user.user_account_one
|
|
yield user_account
|
|
|
|
|
|
@pytest.fixture
|
|
def main_screen(user_account: UserAccount, main_window: MainWindow) -> MainWindow:
|
|
main_window.authorize_user(user_account)
|
|
return main_window
|