forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
122 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# | ||
# Copyright (c) 2023 Project CHIP Authors | ||
# All rights reserved. | ||
# | ||
# 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 chip.clusters as Clusters | ||
from matter_testing_support import MatterBaseTest, TestStep, async_test_body, default_matter_test_main | ||
from mobly import asserts | ||
|
||
|
||
class TC_DGGEN_3_2(MatterBaseTest): | ||
def steps_TC_DGGEN_3_2(self): | ||
return [TestStep(0, "Commission DUT (already done)", is_commissioning=True), | ||
TestStep(1, "TH reads the MaxPathsPerInvoke attribute form the Basic Information Cluster from DUT", | ||
"Save the value as `max_paths_per_invoke`"), | ||
TestStep(2, "TH reads FeatureMap attribute form the General Diagnostics Cluster from DUT", | ||
"Verify that the FeatureMap value has the DMTEST feature bit (0) set to 1 if `max_path_per_invoke` > 1") | ||
] | ||
|
||
@async_test_body | ||
async def test_TC_DGGEN_3_2(self): | ||
# commissioning - already done | ||
self.step(0) | ||
|
||
self.step(1) | ||
max_paths_per_invoke = await self.read_single_attribute_check_success(cluster=Clusters.BasicInformation, attribute=Clusters.BasicInformation.Attributes.MaxPathsPerInvoke) | ||
|
||
self.step(2) | ||
feature_map = await self.read_single_attribute_check_success(cluster=Clusters.GeneralDiagnostics, attribute=Clusters.GeneralDiagnostics.Attributes.FeatureMap) | ||
if max_paths_per_invoke > 1: | ||
asserts.assert_true(feature_map & Clusters.GeneralDiagnostics.Bitmaps.Feature.kDataModelTest, "DMTEST feature must be set if MaxPathsPerInvoke > 1") | ||
|
||
|
||
if __name__ == "__main__": | ||
default_matter_test_main() |
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,72 @@ | ||
#!/usr/bin/env -S python3 -B | ||
# | ||
# Copyright (c) 2024 Project CHIP Authors | ||
# All rights reserved. | ||
# | ||
# 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 sys | ||
import typing | ||
from dataclasses import dataclass | ||
|
||
import chip.clusters as Clusters | ||
from chip.clusters import Attribute | ||
from chip.clusters.Types import NullValue | ||
from MockTestRunner import MockTestRunner | ||
|
||
|
||
@dataclass | ||
class TestSpec(): | ||
max_paths: int | ||
dmtest_feature_map: int | ||
expect_pass: bool | ||
|
||
|
||
TEST_CASES = [ | ||
TestSpec(1, 0, True), | ||
TestSpec(1, 1, True), # I think this is ok...to have the feature on when it's not needed? | ||
TestSpec(2, 0, False), | ||
TestSpec(2, 1, True), | ||
] | ||
|
||
|
||
def test_spec_to_attribute_cache(test_spec: TestSpec) -> Attribute.AsyncReadTransaction.ReadResponse: | ||
bi = Clusters.BasicInformation | ||
bi_attr = bi.Attributes | ||
gd = Clusters.GeneralDiagnostics | ||
gd_attr = gd.Attributes | ||
resp = Attribute.AsyncReadTransaction.ReadResponse({}, [], {}) | ||
resp.attributes = {0: {bi: {bi_attr.MaxPathsPerInvoke: test_spec.max_paths}, gd: {gd_attr.FeatureMap: test_spec.dmtest_feature_map}}} | ||
return resp | ||
|
||
|
||
def main(): | ||
test_runner = MockTestRunner('TC_DGGEN_3_2', 'TC_DGGEN_3_2', 'test_TC_DGGEN_3_2', 0) | ||
failures = [] | ||
for idx, t in enumerate(TEST_CASES): | ||
ok = test_runner.run_test_with_mock_read(test_spec_to_attribute_cache(t)) == t.expect_pass | ||
if not ok: | ||
failures.append(f"Test case failure: {idx} {t}") | ||
|
||
test_runner.Shutdown() | ||
print( | ||
f"Test of tests: run {len(TEST_CASES)}, test response correct: {len(TEST_CASES) - len(failures)} test response incorrect: {len(failures)}") | ||
for f in failures: | ||
print(f) | ||
|
||
return 1 if failures else 0 | ||
|
||
|
||
if __name__ == "__main__": | ||
sys.exit(main()) |
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