-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add python YAML runner script to runs test over chip-tool and the pla…
…ceholder apps (#25155) * [chip-tool] Add chip-tool adapter for running tests with matter_yamltests * [examples/placeholder] Add placeholder adapter for running tests with matter_yamltests * Add python YAML runner script to runs test over chip-tool and the placeholder apps * Add chip-tool over python runs to the test suite * Use a scoped lock to make Tsan happy * [chip-tool] Update DiscoverCommissionablesCommand to avoid a data race when cleaning up parameters * [chip-tool] Do not call ErrorStr after RunCommand in interactive mode as ErrorStr use a single static buffer to compute the error string and in interactive mode the stack continue to do some work and it may race
- Loading branch information
1 parent
ae3bffc
commit 1703918
Showing
41 changed files
with
3,260 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# 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("//build_overrides/build.gni") | ||
import("//build_overrides/chip.gni") | ||
|
||
import("//build_overrides/pigweed.gni") | ||
import("$dir_pw_build/python.gni") | ||
|
||
pw_python_package("matter_chip_tool_adapter") { | ||
setup = [ | ||
"setup.py", | ||
"setup.cfg", | ||
"pyproject.toml", | ||
] | ||
|
||
sources = [ | ||
"matter_chip_tool_adapter/__init__.py", | ||
"matter_chip_tool_adapter/adapter.py", | ||
"matter_chip_tool_adapter/decoder.py", | ||
"matter_chip_tool_adapter/encoder.py", | ||
] | ||
|
||
# TODO: at a future time consider enabling all (* or missing) here to get | ||
# pylint checking these files | ||
static_analysis = [] | ||
} |
Empty file.
28 changes: 28 additions & 0 deletions
28
examples/chip-tool/py_matter_chip_tool_adapter/matter_chip_tool_adapter/adapter.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# 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. | ||
|
||
from .decoder import Decoder | ||
from .encoder import Encoder | ||
|
||
|
||
class Adapter: | ||
def __init__(self, specifications): | ||
self.encoder = Encoder(specifications) | ||
self.decoder = Decoder(specifications) | ||
|
||
def encode(self, request): | ||
return self.encoder.encode(request) | ||
|
||
def decode(self, response): | ||
return self.decoder.decode(response) |
Oops, something went wrong.