| # |
| # 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. |
| # |
| |
| # === BEGIN CI TEST ARGUMENTS === |
| # test-runner-runs: |
| # run1: |
| # app: ${ALL_CLUSTERS_APP} |
| # app-args: --discriminator 1234 --KVS kvs1 --trace-to json:${TRACE_APP}.json --app-pipe /tmp/bin_info_3_2_fifo |
| # script-args: > |
| # --storage-path admin_storage.json |
| # --commissioning-method on-network |
| # --discriminator 1234 |
| # --passcode 20202021 |
| # --PICS src/app/tests/suites/certification/ci-pics-values |
| # --endpoint 0 |
| # --trace-to json:${TRACE_TEST_JSON}.json |
| # --trace-to perfetto:${TRACE_TEST_PERFETTO}.perfetto |
| # --app-pipe /tmp/bin_info_3_2_fifo |
| # factory-reset: true |
| # quiet: true |
| # === END CI TEST ARGUMENTS === |
| |
| |
| from mobly import asserts |
| |
| import matter.clusters as Clusters |
| from matter.testing.matter_testing import MatterBaseTest, TestStep, async_test_body, default_matter_test_main |
| |
| |
| class TC_BINFO_3_2(MatterBaseTest): |
| async def read_binfo_attribute_expect_success(self, endpoint, attribute): |
| cluster = Clusters.Objects.BasicInformation |
| return await self.read_single_attribute_check_success(endpoint=endpoint, cluster=cluster, attribute=attribute) |
| |
| def desc_TC_BINFO_3_2(self) -> str: |
| return "[TC-BINFO-3.2] Attributes with DUT as Server" |
| |
| def steps_TC_BINFO_3_2(self) -> list[TestStep]: |
| steps = [ |
| TestStep(0, "Commissioning, already done", is_commissioning=True), |
| TestStep(1, "TH reads ConfigurationVersion from the DUT and stores the value as initialConfigurationVersion", |
| "Verify that the value is in the inclusive range of 1 to 4294967295"), |
| TestStep(2, "Change the configuration version in a way which results in functionality to be added or removed (e.g. rewire thermostat to support a new mode)"), |
| TestStep(3, "TH reads ConfigurationVersion from the DUT", |
| "Verify that the value is higher than the value of initialConfigurationVersion"), |
| ] |
| return steps |
| |
| def pics_TC_BINFO_3_2(self) -> list[str]: |
| pics = [ |
| "BINFO.S", |
| "BINFO.S.M.DeviceConfigurationChange", |
| ] |
| return pics |
| |
| @async_test_body |
| async def test_TC_BINFO_3_2(self): |
| self.step(0) |
| |
| endpoint = self.get_endpoint() |
| attributes = Clusters.BasicInformation.Attributes |
| |
| self.step(1) |
| initialConfigurationVersion = await self.read_binfo_attribute_expect_success(endpoint=endpoint, attribute=attributes.ConfigurationVersion) |
| asserts.assert_greater_equal(initialConfigurationVersion, 1, "ConfigurationVersion attribute is out of range") |
| |
| self.step(2) |
| if self.is_pics_sdk_ci_only: |
| command_dict = {"Name": "SimulateConfigurationVersionChange"} |
| self.write_to_app_pipe(command_dict) |
| else: |
| self.wait_for_user_input( |
| prompt_msg="Change the configuration version in a way which results in functionality to be added or removed, then continue") |
| |
| self.step(3) |
| newConfigurationVersion = await self.read_binfo_attribute_expect_success(endpoint=endpoint, attribute=attributes.ConfigurationVersion) |
| asserts.assert_greater(newConfigurationVersion, initialConfigurationVersion, |
| "ConfigurationVersion attribute not grater than initialConfigurationVersion") |
| |
| |
| if __name__ == "__main__": |
| default_matter_test_main() |