| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- # 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 asyncio
- import json
- from typing import List
- import click
- from matter_chip_tool_adapter.decoder import MatterLog
- from matter_yamltests.websocket_runner import WebSocketRunner, WebSocketRunnerConfig
- from runner import runner_base
- from tests_logger import TestColoredLogPrinter, WebSocketRunnerLogger
- @click.pass_context
- def send_yaml_command(ctx, test_tool, test_name: str, server_path: str, server_arguments: str, show_adapter_logs: bool, specifications_paths: str, pics: str, additional_pseudo_clusters_directory: str, commands: List[str]):
- kwargs = {'test_name': test_name, 'show_adapter_logs': show_adapter_logs, 'specifications_paths': specifications_paths, 'pics': pics,
- 'additional_pseudo_clusters_directory': additional_pseudo_clusters_directory}
- index = 0
- while len(commands) - index > 1:
- kwargs[commands[index].replace('--', '')] = commands[index+1]
- index += 2
- ctx.invoke(runner_base, **kwargs)
- del ctx.params['commands']
- del ctx.params['specifications_paths']
- del ctx.params['pics']
- del ctx.params['additional_pseudo_clusters_directory']
- return ctx.forward(test_tool)
- def send_raw_command(command: str, server_path: str, server_arguments: str):
- websocket_runner_hooks = WebSocketRunnerLogger()
- websocket_runner_config = WebSocketRunnerConfig(
- server_path=server_path, server_arguments=server_arguments, hooks=websocket_runner_hooks)
- runner = WebSocketRunner(websocket_runner_config)
- async def send_over_websocket():
- payload = None
- try:
- await runner.start()
- payload = await runner.execute(command)
- finally:
- await runner.stop()
- return payload
- payload = asyncio.run(send_over_websocket())
- json_payload = json.loads(payload)
- log_printer = TestColoredLogPrinter()
- log_printer.print(MatterLog.decode_logs(json_payload.get('logs')))
- success = not bool(len([lambda x: x.get('error') for x in json_payload.get('results')]))
- return success
|