| #!/usr/bin/env -S python3 -B |
| |
| # Copyright (c) 2023 Project CHIP Authors |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| import relative_importer # isort: split # noqa: F401 |
| |
| import sys |
| from typing import List |
| |
| import click |
| from paths_finder import PathsFinder |
| from runner import CONTEXT_SETTINGS, darwinframeworktool |
| from tests_tool import send_raw_command, send_yaml_command |
| |
| _DEFAULT_EXTENSIONS_DIR = 'scripts/tests/chipyaml/extensions' |
| _DEFAULT_PICS_FILE = 'src/app/tests/suites/certification/ci-pics-values' |
| _DEFAULT_SPECIFICATIONS_DIR = 'src/app/zap-templates/zcl/data-model/chip/*.xml' |
| |
| |
| def darwinframeworktool_runner_options(f): |
| f = click.option('--server_path', type=click.Path(exists=True), default=None, |
| help='Path to an websocket server to run at launch.')(f) |
| f = click.option('--server_name', type=str, default='darwin-framework-tool', |
| help='Name of a websocket server to run at launch.')(f) |
| f = click.option('--server_arguments', type=str, default='interactive server', |
| help='Optional arguments to pass to the websocket server at launch.')(f) |
| f = click.option('--show_adapter_logs', type=bool, default=False, show_default=True, |
| help='Show additional logs provided by the adapter.')(f) |
| f = click.option('--delay-in-ms', '--delayInMs', type=int, default=0, show_default=True, |
| help='Add a delay between each test suite steps.')(f) |
| f = click.option('--continueOnFailure', type=bool, default=False, show_default=True, |
| help='Do not stop running the test suite on first error.')(f) |
| f = click.option('--specifications_paths', type=click.Path(), show_default=True, default=_DEFAULT_SPECIFICATIONS_DIR, |
| help='Path to a set of files containing clusters definitions.')(f) |
| f = click.option('--PICS', type=click.Path(exists=True), show_default=True, default=_DEFAULT_PICS_FILE, |
| help='Path to the PICS file to use.')(f) |
| f = click.option('--additional_pseudo_clusters_directory', type=click.Path(), show_default=True, default=_DEFAULT_EXTENSIONS_DIR, |
| help='Path to a directory containing additional pseudo clusters.')(f) |
| return f |
| |
| |
| CONTEXT_SETTINGS['ignore_unknown_options'] = True |
| CONTEXT_SETTINGS['default_map']['darwinframeworktool']['use_test_harness_log_format'] = True |
| |
| |
| def maybe_update_stop_on_error(ctx): |
| if ctx.params['continueonfailure']: |
| ctx.params['stop_on_error'] = False |
| |
| del ctx.params['continueonfailure'] |
| |
| |
| @click.command(context_settings=CONTEXT_SETTINGS) |
| @click.argument('commands', nargs=-1) |
| @darwinframeworktool_runner_options |
| @click.pass_context |
| def darwinframeworktool_py(ctx, commands: List[str], server_path: str, server_name: str, server_arguments: str, show_adapter_logs: bool, delay_in_ms: int, continueonfailure: bool, specifications_paths: str, pics: str, additional_pseudo_clusters_directory: str): |
| success = False |
| |
| server_arguments = ctx.params['server_arguments'] |
| maybe_update_stop_on_error(ctx) |
| |
| if len(commands) > 1 and commands[0] == 'tests': |
| success = send_yaml_command(darwinframeworktool, commands[1], server_path, server_arguments, show_adapter_logs, specifications_paths, pics, |
| additional_pseudo_clusters_directory, commands[2:]) |
| else: |
| if server_path is None and server_name: |
| paths_finder = PathsFinder() |
| server_path = paths_finder.get(server_name) |
| success = send_raw_command(' '.join(commands), server_path, server_arguments) |
| |
| sys.exit(0 if success else 1) |
| |
| |
| if __name__ == '__main__': |
| darwinframeworktool_py() |