123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627 |
- """
- All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
- its licensors.
- For complete copyright and license terms please see the LICENSE at the root of this
- distribution (the "License"). All use of this software is governed by the License,
- or, if provided, by the license below or the license accompanying this file. Do not
- remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- """
- import binascii
- from dataclasses import dataclass
- import logging
- import os
- import pytest
- from typing import List
- # Import LyTestTools
- import ly_test_tools.builtin.helpers as helpers
- from ly_test_tools.lumberyard import asset_processor as asset_processor_utils
- from ly_test_tools.lumberyard.asset_processor import ASSET_PROCESSOR_PLATFORM_MAP
- # Import fixtures
- from ..ap_fixtures.asset_processor_fixture import asset_processor as asset_processor
- from ..ap_fixtures.ap_setup_fixture import ap_setup_fixture as ap_setup_fixture
- from ..ap_fixtures.ap_config_backup_fixture import ap_config_backup_fixture as ap_config_backup_fixture
- from ..ap_fixtures.ap_config_default_platform_fixture import ap_config_default_platform_fixture as ap_config_default_platform_fixture
- # Import LyShared
- import ly_test_tools.lumberyard.pipeline_utils as utils
- from automatedtesting_shared import asset_database_utils as asset_db_utils
- logger = logging.getLogger(__name__)
- # Helper: variables we will use for parameter values in the test:
- targetProjects = ["AutomatedTesting"]
- @pytest.fixture
- def local_resources(request, workspace, ap_setup_fixture):
- ap_setup_fixture["tests_dir"] = os.path.dirname(os.path.realpath(__file__))
- @dataclass
- class BlackboxAssetTest:
- test_name: str
- asset_folder: str
- override_asset_folder: str = ""
- scene_debug_file: str = ""
- assets: List[asset_db_utils.DBSourceAsset] = ()
- override_assets: List[asset_db_utils.DBSourceAsset] = ()
- blackbox_fbx_tests = [
- pytest.param(
- BlackboxAssetTest(
- test_name= "OneMeshOneMaterial_RunAP_SuccessWithMatchingProducts",
- asset_folder= "OneMeshOneMaterial",
- scene_debug_file="onemeshonematerial.dbgsg",
- assets = [
- asset_db_utils.DBSourceAsset(
- source_file_name = "OneMeshOneMaterial.fbx",
- uuid = b"8a9164adb84859be893e18aa819438e1",
- jobs = [
- asset_db_utils.DBJob(
- job_key= "fbx",
- builder_guid=b"0bbfc8c191374404bd9464c0364efbfb",
- status=4,
- error_count=0,
- warning_count=2,
- products = [
- asset_db_utils.DBProduct(
- product_name="onemeshonematerial/onemeshonematerial.cgf",
- sub_id=-1588558583,
- asset_type=b"c2869e3bdda04e018fe36770d788866b"
- ),
- asset_db_utils.DBProduct(
- product_name="onemeshonematerial/onemeshonematerial.dccmtl",
- sub_id=382053982,
- asset_type=b"c88469cf21e741eb96fdbf14fbb05edc"
- ),
- ],
- ),
- asset_db_utils.DBJob(
- job_key= "Scene compilation",
- builder_guid=b"bd8bf65894854fe3830e8ec3a23c35f3",
- status=4,
- error_count=0,
- warning_count=0,
- products = [
- asset_db_utils.DBProduct(
- product_name='onemeshonematerial/onemeshonematerial.dbgsg',
- sub_id=1918494907,
- asset_type=b'07f289d14dc74c4094b40a53bbcb9f0b')
- ]
- ),
- ]
- )
- ]
- ),
- id="32250017",
- marks=pytest.mark.test_case_id("C32250017"),
- ),
- pytest.param(
- BlackboxAssetTest(
- # Verifies that the soft naming convention feature with level of detail meshes works.
- # https://docs.aws.amazon.com/lumberyard/latest/userguide/char-fbx-importer-soft-naming.html
- test_name= "SoftNamingLOD_RunAP_SuccessWithMatchingProducts",
- asset_folder= "SoftNamingLOD",
- scene_debug_file="lodtest.dbgsg",
- assets = [
- asset_db_utils.DBSourceAsset(
- source_file_name = "lodtest.fbx",
- uuid = b"44c8627fe2c25aae91fe3ff9547be3b9",
- jobs = [
- asset_db_utils.DBJob(
- job_key= "fbx",
- builder_guid=b"0bbfc8c191374404bd9464c0364efbfb",
- status=4,
- error_count=0,
- warning_count=2,
- products = [
- asset_db_utils.DBProduct(
- product_name= "softnaminglod/lodtest.cgf",
- sub_id=1091612206,
- asset_type=b"c2869e3bdda04e018fe36770d788866b"
- ),
- asset_db_utils.DBProduct(
- product_name="softnaminglod/lodtest.dccmtl",
- sub_id=1960621672,
- asset_type=b"c88469cf21e741eb96fdbf14fbb05edc"
- ),
- asset_db_utils.DBProduct(
- product_name="softnaminglod/lodtest_lod1.cgf",
- sub_id=1091677742,
- asset_type=b"9aae4926cb6a4c609948a1a22f51db23"
- ),
- asset_db_utils.DBProduct(
- product_name="softnaminglod/lodtest_lod2.cgf",
- sub_id=1091743278,
- asset_type=b"9aae4926cb6a4c609948a1a22f51db23"
- ),
- asset_db_utils.DBProduct(
- product_name="softnaminglod/lodtest_lod3.cgf",
- sub_id=1091808814,
- asset_type=b"9aae4926cb6a4c609948a1a22f51db23"
- ),
- ],
- ),
- asset_db_utils.DBJob(
- job_key= "Scene compilation",
- builder_guid=b"bd8bf65894854fe3830e8ec3a23c35f3",
- status=4,
- error_count=0,
- warning_count=0,
- products = [
- asset_db_utils.DBProduct(
- product_name='softnaminglod/lodtest.dbgsg',
- sub_id=-632012261,
- asset_type=b'07f289d14dc74c4094b40a53bbcb9f0b')
- ]
- ),
- ]
- )
- ]
- ),
- id="33887870",
- marks=pytest.mark.test_case_id("33887870"),
- ),
- pytest.param(
- BlackboxAssetTest(
- # Verifies that the soft naming convention feature with physics proxies works.
- # https://docs.aws.amazon.com/lumberyard/latest/userguide/char-fbx-importer-soft-naming.html
- test_name= "SoftNamingPhysics_RunAP_SuccessWithMatchingProducts",
- asset_folder= "SoftNamingPhysics",
- scene_debug_file="physicstest.dbgsg",
- assets = [
- asset_db_utils.DBSourceAsset(
- source_file_name = "physicstest.fbx",
- uuid = b"df957b7918cf5b029806c73f630fa1c8",
- jobs = [
- asset_db_utils.DBJob(
- job_key= "fbx",
- builder_guid=b"0bbfc8c191374404bd9464c0364efbfb",
- status=4,
- error_count=0,
- warning_count=2,
- products = [
- asset_db_utils.DBProduct(
- product_name= "softnamingphysics/physicstest.cgf",
- sub_id=653314392,
- asset_type=b"c2869e3bdda04e018fe36770d788866b"
- ),
- ],
- ),
- asset_db_utils.DBJob(
- job_key= "Scene compilation",
- builder_guid=b"bd8bf65894854fe3830e8ec3a23c35f3",
- status=4,
- error_count=0,
- warning_count=1,
- products = [
- asset_db_utils.DBProduct(
- product_name='softnamingphysics/physicstest.dbgsg',
- sub_id=-740411732,
- asset_type=b'07f289d14dc74c4094b40a53bbcb9f0b'
- ),
- asset_db_utils.DBProduct(
- product_name="softnamingphysics/physicstest.pxmesh",
- sub_id=640975857,
- asset_type=b"7a2871b95eab4de0a901b0d2c6920ddb"
- ),
- ]
- ),
- ]
- )
- ]
- ),
- ),
- pytest.param(
- BlackboxAssetTest(
- test_name= "MultipleMeshOneMaterial_RunAP_SuccessWithMatchingProducts",
- asset_folder= "TwoMeshOneMaterial",
- scene_debug_file="multiple_mesh_one_material.dbgsg",
- assets = [
- asset_db_utils.DBSourceAsset(
- source_file_name = "multiple_mesh_one_material.fbx",
- uuid = b"597618fd497659a1b197a015fe47aa95",
- jobs = [
- asset_db_utils.DBJob(
- job_key= "fbx",
- builder_guid=b"0bbfc8c191374404bd9464c0364efbfb",
- status=4,
- error_count=0,
- warning_count=2,
- products = [
- asset_db_utils.DBProduct(
- product_name="twomeshonematerial/multiple_mesh_one_material.dccmtl",
- sub_id=-1706078587,
- asset_type=b"c88469cf21e741eb96fdbf14fbb05edc"
- ),
- asset_db_utils.DBProduct(
- product_name="twomeshonematerial/test_cube.cgf",
- sub_id=-112145915,
- asset_type=b"c2869e3bdda04e018fe36770d788866b"
- ),
- asset_db_utils.DBProduct(
- product_name="twomeshonematerial/test_cylinder.cgf",
- sub_id=2087742249,
- asset_type=b"c2869e3bdda04e018fe36770d788866b"
- ),
- ],
- ),
- asset_db_utils.DBJob(
- job_key= "Scene compilation",
- builder_guid=b"bd8bf65894854fe3830e8ec3a23c35f3",
- status=4,
- error_count=0,
- warning_count=0,
- products = [
- asset_db_utils.DBProduct(
- product_name='twomeshonematerial/multiple_mesh_one_material.dbgsg',
- sub_id=2077268018,
- asset_type=b'07f289d14dc74c4094b40a53bbcb9f0b')
- ]
- ),
- ]
- )
- ]
- ),
- id="34448178",
- marks=pytest.mark.test_case_id("C34448178"),
- ),
- pytest.param(
- BlackboxAssetTest(
- # Verifies whether multiple meshes can share linked materials
- test_name= "MultipleMeshLinkedMaterials_RunAP_SuccessWithMatchingProducts",
- asset_folder= "TwoMeshLinkedMaterials",
- scene_debug_file= "multiple_mesh_linked_materials.dbgsg",
- assets = [
- asset_db_utils.DBSourceAsset(
- source_file_name = "multiple_mesh_linked_materials.fbx",
- uuid = b"25d8301c2eef5dc7bded310db8ea608d",
- jobs = [
- asset_db_utils.DBJob(
- job_key= "fbx",
- builder_guid=b"0bbfc8c191374404bd9464c0364efbfb",
- status=4,
- error_count=0,
- warning_count=2,
- products = [
- asset_db_utils.DBProduct(
- product_name='twomeshlinkedmaterials/multiple_mesh_linked_materials.cgf',
- sub_id=1259347154,
- asset_type=b'c2869e3bdda04e018fe36770d788866b'
- ),
- asset_db_utils.DBProduct(
- product_name='twomeshlinkedmaterials/multiple_mesh_linked_materials.dccmtl',
- sub_id=1829742731,
- asset_type=b'c88469cf21e741eb96fdbf14fbb05edc'
- ),
- ],
- ),
- asset_db_utils.DBJob(
- job_key= "Scene compilation",
- platform= "pc",
- builder_guid=b"bd8bf65894854fe3830e8ec3a23c35f3",
- status=4,
- error_count=0,
- warning_count=0,
- products= [
- asset_db_utils.DBProduct(
- product_name='twomeshlinkedmaterials/multiple_mesh_linked_materials.dbgsg',
- sub_id=-1898461950,
- asset_type=b'07f289d14dc74c4094b40a53bbcb9f0b'
- )
- ]
- ),
- ]
- )
- ]
- ),
- id="32250018",
- marks=pytest.mark.test_case_id("C32250018"),
- ),
- pytest.param(
- BlackboxAssetTest(
- # Verifies a mesh with multiple materials
- test_name= "SingleMeshMultipleMaterials_RunAP_SuccessWithMatchingProducts",
- asset_folder= "OneMeshMultipleMaterials",
- scene_debug_file="single_mesh_multiple_materials.dbgsg",
- assets = [
- asset_db_utils.DBSourceAsset(
- source_file_name = "single_mesh_multiple_materials.fbx",
- uuid = b"f08fd585dfa35881b4bf86637da5e858",
- jobs = [
- asset_db_utils.DBJob(
- job_key= "fbx",
- builder_guid=b"0bbfc8c191374404bd9464c0364efbfb",
- status=4,
- error_count=0,
- warning_count=2,
- products = [
- asset_db_utils.DBProduct(
- product_name='onemeshmultiplematerials/single_mesh_multiple_materials.cgf',
- sub_id=1296081148,
- asset_type=b'c2869e3bdda04e018fe36770d788866b'
- ),
- asset_db_utils.DBProduct(
- product_name='onemeshmultiplematerials/single_mesh_multiple_materials.dccmtl',
- sub_id=-229825489,
- asset_type=b'c88469cf21e741eb96fdbf14fbb05edc'
- ),
- ],
- ),
- asset_db_utils.DBJob(
- job_key= "Scene compilation",
- platform= "pc",
- builder_guid=b"bd8bf65894854fe3830e8ec3a23c35f3",
- status=4,
- error_count=0,
- warning_count=0,
- products = [
- asset_db_utils.DBProduct(
- product_name='onemeshmultiplematerials/single_mesh_multiple_materials.dbgsg',
- sub_id=-262822238,
- asset_type=b'07f289d14dc74c4094b40a53bbcb9f0b')
- ]
- ),
- ]
- )
- ]
- ),
- id="32250020",
- marks=pytest.mark.test_case_id("C32250020"),
- ),
- pytest.param(
- BlackboxAssetTest(
- test_name="MeshWithVertexColors_RunAP_SuccessWithMatchingProducts",
- asset_folder="VertexColor",
- scene_debug_file="vertexcolor.dbgsg",
- assets=[
- asset_db_utils.DBSourceAsset(
- source_file_name="VertexColor.fbx",
- uuid=b"207e7e1540785a26b064e9be67361cdf",
- jobs=[
- asset_db_utils.DBJob(
- job_key="fbx",
- builder_guid=b"0bbfc8c191374404bd9464c0364efbfb",
- status=4,
- error_count=0,
- warning_count=2,
- products=[
- asset_db_utils.DBProduct(
- product_name="vertexcolor/vertexcolor.cgf",
- sub_id=-427774918,
- asset_type=b"c2869e3bdda04e018fe36770d788866b"
- ),
- ],
- ),
- asset_db_utils.DBJob(
- job_key="Scene compilation",
- builder_guid=b"bd8bf65894854fe3830e8ec3a23c35f3",
- status=4,
- error_count=0,
- warning_count=0,
- products=[
- asset_db_utils.DBProduct(
- product_name='vertexcolor/vertexcolor.dbgsg',
- sub_id=-1543877170,
- asset_type=b'07f289d14dc74c4094b40a53bbcb9f0b')
- ]
- ),
- ]
- )
- ]
- ),
- id="35796285",
- marks=pytest.mark.test_case_id("C35796285"),
- ),
- ]
- blackbox_fbx_special_tests = [
- pytest.param(
- BlackboxAssetTest(
- test_name= "MultipleMeshMultipleMaterial_MultipleAssetInfo_RunAP_SuccessWithMatchingProducts",
- asset_folder= "TwoMeshTwoMaterial",
- override_asset_folder = "OverrideAssetInfoForTwoMeshTwoMaterial",
- scene_debug_file="multiple_mesh_multiple_material.dbgsg",
- assets = [
- asset_db_utils.DBSourceAsset(
- source_file_name = "multiple_mesh_multiple_material.fbx",
- uuid = b"b5915fb874af5c8a866ccabbddb57595",
- jobs = [
- asset_db_utils.DBJob(
- job_key= "fbx",
- builder_guid=b"0bbfc8c191374404bd9464c0364efbfb",
- status=4,
- error_count=0,
- warning_count=2,
- products = [
- asset_db_utils.DBProduct(
- product_name="twomeshtwomaterial/multiple_mesh_multiple_material.dccmtl",
- sub_id=-1035023097,
- asset_type=b"c88469cf21e741eb96fdbf14fbb05edc"
- ),
- asset_db_utils.DBProduct(
- product_name="twomeshtwomaterial/test_cube_mesh.cgf",
- sub_id=-1822360172,
- asset_type=b"c2869e3bdda04e018fe36770d788866b"
- ),
- asset_db_utils.DBProduct(
- product_name="twomeshtwomaterial/test_cylinder_mesh.cgf",
- sub_id=-1885293549,
- asset_type=b"c2869e3bdda04e018fe36770d788866b"
- ),
- ],
- ),
- asset_db_utils.DBJob(
- job_key="Scene compilation",
- builder_guid=b"bd8bf65894854fe3830e8ec3a23c35f3",
- status=4,
- error_count=0,
- warning_count=0,
- products = [
- asset_db_utils.DBProduct(
- product_name='twomeshtwomaterial/multiple_mesh_multiple_material.dbgsg',
- sub_id=896980093,
- asset_type=b'07f289d14dc74c4094b40a53bbcb9f0b')
- ]
- ),
- ]
- )
- ],
- override_assets=[
- asset_db_utils.DBSourceAsset(
- source_file_name = "multiple_mesh_multiple_material.fbx",
- uuid = b"b5915fb874af5c8a866ccabbddb57595",
- jobs = [
- asset_db_utils.DBJob(
- job_key= "fbx",
- builder_guid=b"0bbfc8c191374404bd9464c0364efbfb",
- status=4,
- error_count=0,
- warning_count=2,
- products = [
- asset_db_utils.DBProduct(
- product_name="twomeshtwomaterial/multiple_mesh_multiple_material.dccmtl",
- sub_id=-1035023097,
- asset_type=b"c88469cf21e741eb96fdbf14fbb05edc"
- ),
- asset_db_utils.DBProduct(
- product_name="twomeshtwomaterial/test_cube_mesh.cgf",
- sub_id=-1822360172,
- asset_type=b"c2869e3bdda04e018fe36770d788866b"
- ),
- ],
- ),
- asset_db_utils.DBJob(
- job_key= "Scene compilation",
- builder_guid=b"bd8bf65894854fe3830e8ec3a23c35f3",
- status=4,
- error_count=0,
- warning_count=0,
- products = [
- asset_db_utils.DBProduct(
- product_name='twomeshtwomaterial/multiple_mesh_multiple_material.dbgsg',
- sub_id=896980093,
- asset_type=b'07f289d14dc74c4094b40a53bbcb9f0b')
- ]
- ),
- ]
- )
- ]
- ),
- id="34389075",
- marks=pytest.mark.test_case_id("C34389075"),
- ),
- ]
- @pytest.mark.usefixtures("asset_processor")
- @pytest.mark.usefixtures("ap_setup_fixture")
- @pytest.mark.usefixtures("local_resources")
- @pytest.mark.parametrize("project", targetProjects)
- @pytest.mark.assetpipeline
- class TestsFBX_AllPlatforms(object):
- @pytest.mark.BAT
- @pytest.mark.parametrize("blackbox_param", blackbox_fbx_tests)
- def test_FBXBlackboxTest_SourceFiles_Processed_ResultInExpectedProducts(self, workspace,
- ap_setup_fixture, asset_processor, project,
- blackbox_param):
- if blackbox_param == None:
- return
- self.run_fbx_test(workspace, ap_setup_fixture,
- asset_processor, project, blackbox_param)
- @pytest.mark.BAT
- @pytest.mark.parametrize("blackbox_param", blackbox_fbx_special_tests)
- def test_FBXBlackboxTest_AssetInfoModified_AssetReprocessed_ResultInExpectedProducts(self,
- workspace, ap_setup_fixture,
- asset_processor, project,
- blackbox_param):
- if blackbox_param == None:
- return
- self.run_fbx_test(workspace, ap_setup_fixture,
- asset_processor, project, blackbox_param)
- # Run the test again and validate the information in the override assets
- self.run_fbx_test(workspace, ap_setup_fixture,
- asset_processor, project, blackbox_param, True)
- def populateAssetInfo(self, workspace, project, assets):
- # Check that each given source asset resulted in the expected jobs and products.
- for expected_source in assets:
- for job in expected_source.jobs:
- job.platform = ASSET_PROCESSOR_PLATFORM_MAP[workspace.asset_processor_platform]
- for product in job.products:
- product.product_name = job.platform + "/" + project.lower() + "/" \
- + product.product_name
- def run_fbx_test(self, workspace, ap_setup_fixture, asset_processor,
- project, blackbox_params: BlackboxAssetTest, overrideAsset = False):
- test_assets_folder = blackbox_params.override_asset_folder if overrideAsset else blackbox_params.asset_folder
- logger.info(f"{blackbox_params.test_name}: Processing assets in folder '"
- f"{test_assets_folder}' and verifying they match expected output.")
- # Prepare test environment and process assets
- if not overrideAsset:
- asset_processor.prepare_test_environment(ap_setup_fixture['tests_dir'], test_assets_folder)
- else:
- asset_processor.prepare_test_environment(ap_setup_fixture['tests_dir'], test_assets_folder,
- use_current_root=True, add_scan_folder=False,
- existing_function_name=blackbox_params.asset_folder)
- asset_processor.batch_process(extra_params="--debugOutput")
- logger.info(f"Validating assets.")
- assetsToValidate = blackbox_params.override_assets if overrideAsset else blackbox_params.assets
- expected_product_list = []
- for expected_source in assetsToValidate:
- for expected_job in expected_source.jobs:
- for expected_product in expected_job.products:
- expected_product_list.append(expected_product.product_name)
- missing_assets, _ = utils.compare_assets_with_cache(expected_product_list,
- asset_processor.project_test_cache_folder())
- assert not missing_assets, f'The following assets were expected to be in, but not found in cache: {str(missing_assets)}'
- # Load the asset database.
- db_path = os.path.join(asset_processor.temp_asset_root(), "Cache",
- "assetdb.sqlite")
- cache_root = os.path.dirname(os.path.join(asset_processor.temp_asset_root(), "Cache",
- ASSET_PROCESSOR_PLATFORM_MAP[workspace.asset_processor_platform]))
- if blackbox_params.scene_debug_file:
- debug_graph_path = os.path.join(asset_processor.project_test_cache_folder(), blackbox_params.scene_debug_file)
- expected_debug_graph_path = os.path.join(asset_processor.project_test_source_folder(), blackbox_params.scene_debug_file)
- logger.info(f"Parsing scene graph: {debug_graph_path}")
- with open(debug_graph_path, "r") as scene_file:
- actual_lines = scene_file.readlines()
- logger.info(f"Parsing scene graph: {expected_debug_graph_path}")
- with open(expected_debug_graph_path, "r") as scene_file:
- expected_lines = scene_file.readlines()
- assert utils.compare_lists(actual_lines, expected_lines), "Scene mismatch"
- # Check that each given source asset resulted in the expected jobs and products.
- self.populateAssetInfo(workspace, project, assetsToValidate)
- for expected_source in assetsToValidate:
- for job in expected_source.jobs:
- for product in job.products:
- asset_db_utils.compare_expected_asset_to_actual_asset(db_path,
- expected_source,
- f"{blackbox_params.asset_folder}/"
- f"{expected_source.source_file_name}",
- cache_root)
|