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.
This test was difficult to automate and included a factory reset. This automation start is used to generate the test plans. The intent of this test is to confirm that the returned fabric index matches the fabric index returned from the AddNOC command, and that the read of fabric-filtered attributes matches to the calling fabric. The rest of the test is covered by OPCREDS-3.1 so was removed to simplify. NOTE: test not yet implemented, uploaded for test plan generation purposes only. - Properly use Test Step and Expected outcome columns - Remove checks for NOCs matching - this is checked in OPCREDS-3.1 - Remove factory reset and commission two new fabrics - Use commissioning over CASE so we can more easily return the fabric index
- Loading branch information
Showing
2 changed files
with
131 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# | ||
# 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 chip.clusters as Clusters | ||
from matter_testing_support import MatterBaseTest, TestStep, async_test_body | ||
from test_plan_support import * | ||
|
||
|
||
def verify_fabric(controller: str) -> str: | ||
return (f"- Verify there is one entry returned. Verify FabricIndex matches `fabric_index_{controller}`.\n" | ||
f"- Verify the RootPublicKey matches the public key for rcac_{controller}.\n" | ||
f"- Verify the VendorID matches the vendor ID for {controller}.\n" | ||
f"- Verify the FabricID matches the fabricID for {controller}") | ||
|
||
|
||
class TC_OPCREDS_3_2(MatterBaseTest): | ||
def desc_TC_OPCREDS_3_2(self): | ||
return " Attribute-CurrentFabricIndex validation [DUTServer]" | ||
|
||
def steps_TC_OPCREDS_3_2(self): | ||
return [TestStep(0, commission_if_required('CR1'), is_commissioning=True), | ||
TestStep(1, f"{commission_from_existing('CR1', 'CR2')}\n. Save the FabricIndex from the NOCResponse as `fabric_index_CR2`.", verify_commissioning_successful()), | ||
TestStep(2, f"{commission_from_existing('CR1', 'CR3')}\n. Save the FabricIndex from the NOCResponse as `fabric_index_CR3`.", verify_commissioning_successful()), | ||
TestStep(3, f"CR2 {read_attribute('CurrentFabricIndex')}", "Verify the returned value is `fabric_index_CR2`"), | ||
TestStep(4, f"CR3 {read_attribute('CurrentFabricIndex')}", "Verify the returned value is `fabric_index_CR3`"), | ||
TestStep(5, f"CR2 {read_attribute('Fabrics')} using a fabric-filtered read", verify_fabric('CR2')), | ||
TestStep(6, f"CR3 {read_attribute('Fabrics')} using a fabric-filtered read", verify_fabric('CR3')), | ||
TestStep(7, remove_fabric('fabric_index_CR2', 'CR1'), verify_success()), | ||
TestStep(8, remove_fabric('fabric_index_CR3', 'CR1'), verify_success()), | ||
] | ||
|
||
@async_test_body | ||
async def test_TC_OPCREDS_3_2(self): | ||
# TODO: implement | ||
pass | ||
|
||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
# | ||
# 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 typing | ||
|
||
|
||
def read_attribute(attribute: str, cluster: typing.Optional[str] = None): | ||
attr = f'reads the {attribute} attribute' | ||
if cluster: | ||
return f'{attr} from {cluster}' | ||
else: | ||
return attr | ||
|
||
|
||
def save_as(val: str) -> str: | ||
return f' and saves the value as {val}' | ||
|
||
|
||
def verify_status(status: str) -> str: | ||
return f'Verify DUT responds w/ status {status}' | ||
|
||
|
||
def verify_success() -> str: | ||
return verify_status('SUCCESS') | ||
|
||
# ----------------------- | ||
# Commissioning strings | ||
# ----------------------- | ||
|
||
|
||
def commission_if_required(controller: typing.Optional[str] = None) -> str: | ||
controller_str = f'to {controller} ' if controller is not None else '' | ||
return f'Commission DUT {controller_str}if not already done' | ||
|
||
|
||
def commission_from_existing(existing_controller_name: str, new_controller_name: str) -> str: | ||
# NOTE to implementers: This text corresponds to the actions taken by CommissioningBuildingBlocks.AddNOCForNewFabricFromExisting. | ||
# This function should be used in the TestSteps description when you use that function. | ||
# AddNOCForNewFabricFromExisting is used when the generated certificates are required for use in the test. | ||
# It written one step so we can just use the function directly without needing to annotate the sub-steps for the TH. | ||
return (f'Create a new controller on a new fabric called {new_controller_name}.\n' | ||
f'Commission the new controller from {existing_controller_name} as follows:\n\n' | ||
f'- {existing_controller_name} sends an ArmFailsafe command, followed by a CSRRequest command.\n' | ||
f'- Generate credentials on {new_controller_name} using the returned CSR.\n' | ||
f'- Save the RCAC as `rcac_{new_controller_name}. Save the ICAC as `icac_{new_controller_name}`. Save the NOC as `noc_{new_controller_name}`. Save the IPK as ipk_{new_controller_name}.\n' | ||
f'- {existing_controller_name} sends the AddTrustedRootCertificate command with `rcac_{new_controller_name}`' | ||
f'- {existing_controller_name} sends the AddNOC command with the fields set as follows:\n' | ||
f' * NOCValue: `noc_{new_controller_name}`\n' | ||
f' * ICACValue: `icac_{new_controller_name}`\n' | ||
f' * IPKValue: `ipk_{new_controller_name}`\n' | ||
f' * CaseAdminSubject: {new_controller_name} node ID\n' | ||
f' * AdminVendorId: {new_controller_name} vendor ID\n' | ||
f'- {new_controller_name} connects over CASE and sends the commissioning complete command') | ||
|
||
|
||
def open_commissioning_window(controller: str = 'TH') -> str: | ||
return f'{controller} opens a commissioning window on the DUT' | ||
|
||
|
||
def remove_fabric(index_var: str, controller: str): | ||
return f'{controller} sends the RemoveFabric command to the Node Operational Credentials cluster with the FabricIndex set to {index_var}.' | ||
|
||
|
||
def verify_commissioning_successful() -> str: | ||
return 'Verify the commissioning is successful.' |