Skip to content

Commit

Permalink
TC-ACL-2.2: Implement in python (#31049)
Browse files Browse the repository at this point in the history
* TC-ACL-2.2: Implement in python

Lets us do the all endpoint check in a sane way.

* flake8

* Apply suggestions from code review

Co-authored-by: René Josefsen <69624991+ReneJosefsen@users.noreply.github.com>

---------

Co-authored-by: René Josefsen <69624991+ReneJosefsen@users.noreply.github.com>
  • Loading branch information
2 people authored and pull[bot] committed Jan 30, 2024
1 parent 817d07f commit 641b044
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions src/python_testing/TC_ACL_2_2.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
#
# 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_ACL_2_2(MatterBaseTest):

def desc_TC_ACL_2_2(self) -> str:
return "[TC-ACL-2.2] Cluster endpoint"

def steps_TC_ACE_2_2(self) -> list[TestStep]:
steps = [
TestStep(1, "Commissioning, already done", is_commissioning=True),
TestStep(2, "TH1 reads DUT Descriptor cluster ServerList attribute from Endpoint 0"),
TestStep(3, "TH1 reads DUT Descriptor cluster ServerList attribute from every Endpoint except 0"),
]
return steps

@async_test_body
async def test_TC_ACE_2_2(self):
self.step(1)
self.step(2)
data = await self.default_controller.ReadAttribute(nodeid=self.dut_node_id, attributes=[(Clusters.Descriptor.Attributes.ServerList)])
asserts.assert_true(Clusters.AccessControl.id in data[0][Clusters.Descriptor]
[Clusters.Descriptor.Attributes.ServerList], "ACL cluster not on EP0")
self.step(3)
for endpoint, ep_data in data.items():
if endpoint == 0:
continue
asserts.assert_false(Clusters.AccessControl.id in ep_data[Clusters.Descriptor][Clusters.Descriptor.Attributes.ServerList],
f"ACL cluster incorrectly present on endpoint {endpoint}")


if __name__ == "__main__":
default_matter_test_main()

0 comments on commit 641b044

Please sign in to comment.