-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
TC_BOOLCFG_3_1.py
150 lines (123 loc) · 7.11 KB
/
TC_BOOLCFG_3_1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
#
# 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
# script-args: >
# --storage-path admin_storage.json
# --commissioning-method on-network
# --discriminator 1234
# --passcode 20202021
# --trace-to json:${TRACE_TEST_JSON}.json
# --trace-to perfetto:${TRACE_TEST_PERFETTO}.perfetto
# factory-reset: true
# quiet: true
# === END CI TEST ARGUMENTS ===
import logging
from random import choice
import chip.clusters as Clusters
from chip.interaction_model import Status
from chip.testing.matter_testing import MatterBaseTest, TestStep, async_test_body, default_matter_test_main
from mobly import asserts
class TC_BOOLCFG_3_1(MatterBaseTest):
async def read_boolcfg_attribute_expect_success(self, endpoint, attribute):
cluster = Clusters.Objects.BooleanStateConfiguration
return await self.read_single_attribute_check_success(endpoint=endpoint, cluster=cluster, attribute=attribute)
def desc_TC_BOOLCFG_3_1(self) -> str:
return "[TC-BOOLCFG-3.1] SensitivityLevel with DUT as Server"
def steps_TC_BOOLCFG_3_1(self) -> list[TestStep]:
steps = [
TestStep(1, "Commissioning, already done", is_commissioning=True),
TestStep("2a", "Read FeatureMap attribute"),
TestStep("2b", "Verify SENSLVL feature is supported"),
TestStep("2c", "Read AttributeList attribute"),
TestStep(3, "Read SupportedSensitivityLevels attribute"),
TestStep(4, "Read DefaultSensitivityLevel attribute, if supported"),
TestStep(5, "Read CurrentSensitivityLevel attribute"),
TestStep(6, "TH loops through the number of supported sensitivity levels"),
TestStep(7, "Write CurrentSensitivityLevel attribute to non-default value"),
TestStep(8, "Write CurrentSensitivityLevel attribute to default value"),
TestStep(9, "Write CurrentSensitivityLevel attribute to 10"),
TestStep(10, "Write CurrentSensitivityLevel attribute to 255"),
TestStep(11, "Write CurrentSensitivityLevel attribute to the initial current value"),
]
return steps
def pics_TC_BOOLCFG_3_1(self) -> list[str]:
pics = [
"BOOLCFG.S",
]
return pics
@async_test_body
async def test_TC_BOOLCFG_3_1(self):
endpoint = self.get_endpoint(default=1)
self.step(1)
attributes = Clusters.BooleanStateConfiguration.Attributes
self.step("2a")
feature_map = await self.read_boolcfg_attribute_expect_success(endpoint=endpoint, attribute=attributes.FeatureMap)
is_sens_level_feature_supported = feature_map & Clusters.BooleanStateConfiguration.Bitmaps.Feature.kSensitivityLevel
self.step("2b")
if not is_sens_level_feature_supported:
logging.info("SENS feature not supported, skipping test case")
# Skipping all remainig steps
for step in self.get_test_steps(self.current_test_info.name)[self.current_step_index:]:
self.step(step.test_plan_number)
logging.info("Test step skipped")
return
else:
logging.info("Test step skipped")
self.step("2c")
attribute_list = await self.read_boolcfg_attribute_expect_success(endpoint=endpoint, attribute=attributes.AttributeList)
self.step(3)
numberOfSupportedLevels = await self.read_boolcfg_attribute_expect_success(endpoint=endpoint, attribute=attributes.SupportedSensitivityLevels)
self.step(4)
if attributes.DefaultSensitivityLevel.attribute_id in attribute_list:
default_level = await self.read_boolcfg_attribute_expect_success(endpoint=endpoint, attribute=attributes.DefaultSensitivityLevel)
else:
logging.info("Test step skipped")
self.step(5)
current_level = await self.read_boolcfg_attribute_expect_success(endpoint=endpoint, attribute=attributes.CurrentSensitivityLevel)
self.step(6)
for sens_level in range(numberOfSupportedLevels):
logging.info(f"Write sensitivity level ({sens_level}) to CurrentSensitivityLevel)")
result = await self.default_controller.WriteAttribute(self.dut_node_id, [(endpoint, attributes.CurrentSensitivityLevel(sens_level))])
asserts.assert_equal(result[0].Status, Status.Success, "CurrentSensitivityLevel write failed")
self.step(7)
if attributes.DefaultSensitivityLevel.attribute_id in attribute_list:
selected_non_default_level = choice([i for i in range(numberOfSupportedLevels) if i not in [default_level]])
logging.info(f"Write non-default sensitivity level ({selected_non_default_level}) to CurrentSensitivityLevel)")
result = await self.default_controller.WriteAttribute(self.dut_node_id, [(endpoint, attributes.CurrentSensitivityLevel(selected_non_default_level))])
asserts.assert_equal(result[0].Status, Status.Success, "CurrentSensitivityLevel write failed")
self.step(8)
if attributes.DefaultSensitivityLevel.attribute_id in attribute_list:
logging.info(f"Write default sensitivity level ({default_level}) to CurrentSensitivityLevel)")
result = await self.default_controller.WriteAttribute(self.dut_node_id, [(endpoint, attributes.CurrentSensitivityLevel(default_level))])
asserts.assert_equal(result[0].Status, Status.Success, "CurrentSensitivityLevel write failed")
self.step(9)
result = await self.default_controller.WriteAttribute(self.dut_node_id, [(endpoint, attributes.CurrentSensitivityLevel(numberOfSupportedLevels))])
asserts.assert_equal(result[0].Status, Status.ConstraintError,
"CurrentSensitivityLevel did not return CONSTRAINT_ERROR")
self.step(10)
result = await self.default_controller.WriteAttribute(self.dut_node_id, [(endpoint, attributes.CurrentSensitivityLevel(255))])
asserts.assert_equal(result[0].Status, Status.ConstraintError,
"CurrentSensitivityLevel did not return CONSTRAINT_ERROR")
self.step(11)
result = await self.default_controller.WriteAttribute(self.dut_node_id, [(endpoint, attributes.CurrentSensitivityLevel(current_level))])
asserts.assert_equal(result[0].Status, Status.Success, "CurrentSensitivityLevel write failed")
if __name__ == "__main__":
default_matter_test_main()