mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 13:24:54 +01:00
* Ingest input workfile * Ingest input workfile * Ingested expected files, workfile Implemented LocalFileHandler. Test name added to structure to separate files for each test. Removed superfluous `files` to keep other Maya test working * Missing time import * Hound * Skip directories when checking folder structure. * Update tests/lib/testing_classes.py Co-authored-by: Roy Nieterau <roy_nieterau@hotmail.com> * Updated integration tests documentation * Ingested test files for Deadline test in maya * Removed unneeded files * Refactored name --------- Co-authored-by: kalisp <petr.kalis@gmail.com> Co-authored-by: Roy Nieterau <roy_nieterau@hotmail.com>
69 lines
1.9 KiB
Python
69 lines
1.9 KiB
Python
import os
|
|
import pytest
|
|
import shutil
|
|
|
|
from tests.lib.testing_classes import (
|
|
HostFixtures,
|
|
PublishTest,
|
|
DeadlinePublishTest
|
|
)
|
|
|
|
|
|
class MayaHostFixtures(HostFixtures):
|
|
@pytest.fixture(scope="module")
|
|
def last_workfile_path(self, download_test_data, output_folder_url):
|
|
"""Get last_workfile_path from source data.
|
|
|
|
Maya expects workfile in proper folder, so copy is done first.
|
|
"""
|
|
src_path = os.path.join(
|
|
download_test_data,
|
|
"input",
|
|
"workfile",
|
|
"test_project_test_asset_test_task_v001.ma"
|
|
)
|
|
dest_folder = os.path.join(
|
|
output_folder_url,
|
|
self.PROJECT,
|
|
self.ASSET,
|
|
"work",
|
|
self.TASK
|
|
)
|
|
|
|
os.makedirs(dest_folder)
|
|
|
|
dest_path = os.path.join(
|
|
dest_folder, "test_project_test_asset_test_task_v001.ma"
|
|
)
|
|
shutil.copy(src_path, dest_path)
|
|
|
|
yield dest_path
|
|
|
|
@pytest.fixture(scope="module")
|
|
def startup_scripts(self, monkeypatch_session, download_test_data):
|
|
"""Points Maya to userSetup file from input data"""
|
|
startup_path = os.path.join(
|
|
download_test_data, "input", "startup"
|
|
)
|
|
original_pythonpath = os.environ.get("PYTHONPATH")
|
|
monkeypatch_session.setenv(
|
|
"PYTHONPATH",
|
|
"{}{}{}".format(startup_path, os.pathsep, original_pythonpath)
|
|
)
|
|
|
|
monkeypatch_session.setenv(
|
|
"MAYA_CMD_FILE_OUTPUT",
|
|
os.path.join(download_test_data, "output.log")
|
|
)
|
|
|
|
@pytest.fixture(scope="module")
|
|
def skip_compare_folders(self):
|
|
yield []
|
|
|
|
|
|
class MayaLocalPublishTestClass(MayaHostFixtures, PublishTest):
|
|
"""Testing class for local publishes."""
|
|
|
|
|
|
class MayaDeadlinePublishTestClass(MayaHostFixtures, DeadlinePublishTest):
|
|
"""Testing class for Deadline publishes."""
|