-
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.
Yaml for check for fabricSynchronization condition on Agregator device (
#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
1 parent
9fc8c77
commit 3263e40
Showing
2 changed files
with
65 additions
and
0 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
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] |