Skip to content

Commit

Permalink
Yaml for check for fabricSynchronization condition on Agregator device (
Browse files Browse the repository at this point in the history
#34629)

* Check for FabricSynchronization condition on Aggregator device

* Update after code review

* Restyled by prettier-yaml

* Remove python changes

* Exclude TestFabricSyncBridgedNode from required list

* Update PICS according to conversation in CHIP-Specification

---------

Co-authored-by: Arkadiusz Bokowy <[email protected]>
Co-authored-by: Restyled.io <[email protected]>
  • Loading branch information
3 people authored Jul 30, 2024
1 parent 9fc8c77 commit 3263e40
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 0 deletions.
1 change: 1 addition & 0 deletions scripts/tests/chiptest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ def _GetInDevelopmentTests() -> Set[str]:
# TestEventTriggersEnabled is true, which it's not in CI.
"Test_TC_SMOKECO_2_6.yaml", # chip-repl does not support local timeout (07/20/2023) and test assumes
# TestEventTriggersEnabled is true, which it's not in CI.
"TestFabricSyncBridgedNode.yaml", # [TODO] fabric-bridge-app lacks some feature so this test currently fails
}


Expand Down
64 changes: 64 additions & 0 deletions src/app/tests/suites/TestFabricSyncBridgedNode.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# Copyright (c) 2024 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.

name: Test Fabric Synchronization condition on Bridged Node Device Type

PICS:
- MCORE.FS

config:
nodeId: 0x12344321
endpoint: 1
endpointCommissionerControl: 0

tests:
- label:
"Read the DeviceTypeList attribute of the Descriptor cluster and check
whether the device type is Aggregator."
cluster: "Descriptor"
command: "readAttribute"
attribute: "DeviceTypeList"
response:
value: [
{
DeviceType: 14, # Aggregator
},
]

- label:
"Read the ServerList attribute of the Descriptor cluster and check
whether the Commissioner Control is present."
endpoint: endpointCommissionerControl
cluster: "Descriptor"
command: "readAttribute"
attribute: "ServerList"
response:
constraints:
type: list
contains: [
0x0751, # Commissioner Control Cluster
]

- label:
"Read the SupportedDeviceCategories attribute of the Commissioner
Control cluster and check whether the FabricSynchronization bit is
set."
endpoint: endpointCommissionerControl
cluster: "CommissionerControl"
command: "readAttribute"
attribute: "SupportedDeviceCategories"
response:
constraints:
type: bitmap32
hasMasksSet: [0x01]

0 comments on commit 3263e40

Please sign in to comment.