| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- """
- Copyright (c) Contributors to the Open 3D Engine Project.
- For complete copyright and license terms please see the LICENSE at the root of this distribution.
- SPDX-License-Identifier: Apache-2.0 OR MIT
- """
- class Tests:
- material_canvas_launched = (
- "Inspector pane is visible, MaterialCanvas launch succeeded",
- "P0: Inspector pane not visible, MaterialCanvas launch failed"
- )
- def MaterialCanvas_Launched_SuccessfullyLaunched():
- """
- Summary:
- Tests that the MaterialCanvas can be launched successfully.
- Expected Behavior:
- The MaterialCanvas executable can be launched and doesn't cause any crashes or errors.
- Test Steps:
- 1) Verify Material Inspector pane visibility to confirm the MaterialCanvas launched.
- 2) Look for errors and asserts.
- :return: None
- """
- import Atom.atom_utils.atom_tools_utils as atom_tools_utils
- from editor_python_test_tools.utils import Report, Tracer, TestHelper
- with Tracer() as error_tracer:
- # 1. Verify Material Inspector pane visibility to confirm the MaterialCanvas launched.
- atom_tools_utils.set_pane_visibility("Inspector", True)
- Report.result(
- Tests.material_canvas_launched,
- atom_tools_utils.is_pane_visible("Inspector") is True)
- # 2. Look for errors and asserts.
- TestHelper.wait_for_condition(lambda: error_tracer.has_errors or error_tracer.has_asserts, 1.0)
- for error_info in error_tracer.errors:
- Report.info(f"Error: {error_info.filename} {error_info.function} | {error_info.message}")
- for assert_info in error_tracer.asserts:
- Report.info(f"Assert: {assert_info.filename} {assert_info.function} | {assert_info.message}")
- if __name__ == "__main__":
- from editor_python_test_tools.utils import Report
- Report.start_test(MaterialCanvas_Launched_SuccessfullyLaunched)
|