You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.7 KiB
Python
77 lines
2.7 KiB
Python
"""
|
|
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 logging
|
|
import os
|
|
from pathlib import PurePath
|
|
import pytest
|
|
|
|
# Bail on the test if ly_test_tools doesn't exist.
|
|
pytest.importorskip("ly_test_tools")
|
|
import ly_test_tools.environment.file_system as file_system
|
|
|
|
import automatedtesting_shared.hydra_test_utils as hydra
|
|
|
|
logger = logging.getLogger(__name__)
|
|
EDITOR_TIMEOUT = 60
|
|
TEST_DIRECTORY = os.path.join(os.path.dirname(__file__), "atom_hydra_scripts")
|
|
|
|
# Go to the project root directory
|
|
PROJECT_DIRECTORY = PurePath(TEST_DIRECTORY)
|
|
if len(PROJECT_DIRECTORY.parents) > 5:
|
|
for _ in range(5):
|
|
PROJECT_DIRECTORY = PROJECT_DIRECTORY.parent
|
|
|
|
|
|
@pytest.mark.parametrize("project", ["AutomatedTesting"])
|
|
@pytest.mark.parametrize("launcher_platform", ['windows_editor'])
|
|
@pytest.mark.parametrize("level", ["tmp_level"])
|
|
class TestAtomLevels(object):
|
|
@pytest.fixture(autouse=True)
|
|
def setup_teardown(self, request, workspace, project, level):
|
|
# Cleanup our temp level
|
|
file_system.delete(
|
|
[os.path.join(workspace.paths.engine_root(), project, "Levels", "AtomLevels", level)], True, True)
|
|
|
|
def teardown():
|
|
# Cleanup our temp level
|
|
file_system.delete(
|
|
[os.path.join(workspace.paths.engine_root(), project, "Levels", "AtomLevels", level)], True, True)
|
|
|
|
request.addfinalizer(teardown)
|
|
|
|
@pytest.mark.test_case_id("C34428159") # Level: ActorTest_100Actors
|
|
def test_AllLevels_OpenClose(self, request, editor, level, workspace, project, launcher_platform):
|
|
|
|
cfg_args = [level]
|
|
test_levels = os.path.join(str(PROJECT_DIRECTORY), "Levels", "AtomLevels")
|
|
|
|
expected_lines = []
|
|
for level in test_levels:
|
|
expected_lines.append(f"Successfully opened {level}")
|
|
|
|
unexpected_lines = [
|
|
"failed to open",
|
|
"Traceback (most recent call last):",
|
|
]
|
|
|
|
hydra.launch_and_validate_results(
|
|
request,
|
|
TEST_DIRECTORY,
|
|
editor,
|
|
"hydra_AllLevels_OpenClose.py",
|
|
timeout=EDITOR_TIMEOUT,
|
|
expected_lines=expected_lines,
|
|
unexpected_lines=unexpected_lines,
|
|
halt_on_unexpected=True,
|
|
cfg_args=cfg_args,
|
|
)
|