Skip to content

Commit 143bc7c

Browse files
authored
[Testing] Convenience property for checking PICS_SDK_CI_ONLY (project-chip#35860)
1 parent db11057 commit 143bc7c

16 files changed

+31
-40
lines changed

docs/testing/python.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,10 @@ example DUT on the host and includes factory reset support
628628
- Don’t forget to set the PICS file to the ci-pics-values
629629
- If there are steps in your test that will fail on CI (e.g. test vendor
630630
checks), gate them on the PICS_SDK_CI_ONLY
631-
- `is_ci = self.check_pics('PICS_SDK_CI_ONLY')`
631+
- ```python
632+
if not self.is_pics_sdk_ci_only:
633+
... # Step that will fail on CI
634+
```
632635

633636
The CI test runner uses a structured environment setup that can be declared
634637
using structured comments at the top of the test file. To use this structured

src/python_testing/MinimalRepresentation.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,7 @@ def test_MinimalRepresentation(self):
129129
# Before we can generate a minimal representation, we need to make sure that the device is conformant.
130130
# Otherwise, the values we extract aren't fully informative.
131131
ignore_in_progress = self.user_params.get("ignore_in_progress", False)
132-
is_ci = self.check_pics('PICS_SDK_CI_ONLY')
133-
representation = self.GenerateMinimals(ignore_in_progress, is_ci)
132+
representation = self.GenerateMinimals(ignore_in_progress, self.is_pics_sdk_ci_only)
134133
print(type(representation[0]))
135134
self.PrettyPrintRepresentation(representation)
136135

src/python_testing/TC_BRBINFO_4_1.py

-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@ def resume_th_icd_server(self, check_state):
198198

199199
@async_test_body
200200
async def test_TC_BRBINFO_4_1(self):
201-
self.is_ci = self.check_pics('PICS_SDK_CI_ONLY')
202201
icdm_cluster = Clusters.Objects.IcdManagement
203202
icdm_attributes = icdm_cluster.Attributes
204203
brb_info_cluster = Clusters.Objects.BridgedDeviceBasicInformation

src/python_testing/TC_CCTRL_2_2.py

+5-7
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,6 @@ def default_timeout(self) -> int:
127127

128128
@run_if_endpoint_matches(has_cluster(Clusters.CommissionerControl))
129129
async def test_TC_CCTRL_2_2(self):
130-
self.is_ci = self.check_pics('PICS_SDK_CI_ONLY')
131-
132130
self.step(1)
133131
th_server_fabrics = await self.read_single_attribute_check_success(cluster=Clusters.OperationalCredentials, attribute=Clusters.OperationalCredentials.Attributes.Fabrics, dev_ctrl=self.TH_server_controller, node_id=self.server_nodeid, endpoint=0, fabric_filtered=False)
134132
self.step(2)
@@ -192,7 +190,7 @@ async def test_TC_CCTRL_2_2(self):
192190
await self.send_single_cmd(cmd)
193191

194192
self.step(12)
195-
if not self.is_ci:
193+
if not self.is_pics_sdk_ci_only:
196194
self.wait_for_user_input("Approve Commissioning approval request using manufacturer specified mechanism")
197195

198196
self.step(13)
@@ -248,7 +246,7 @@ async def test_TC_CCTRL_2_2(self):
248246

249247
self.step(19)
250248
logging.info("Test now waits for 30 seconds")
251-
if not self.is_ci:
249+
if not self.is_pics_sdk_ci_only:
252250
time.sleep(30)
253251

254252
self.step(20)
@@ -267,7 +265,7 @@ async def test_TC_CCTRL_2_2(self):
267265
await self.send_single_cmd(cmd)
268266

269267
self.step(23)
270-
if not self.is_ci:
268+
if not self.is_pics_sdk_ci_only:
271269
self.wait_for_user_input("Approve Commissioning approval request using manufacturer specified mechanism")
272270

273271
self.step(24)
@@ -295,13 +293,13 @@ async def test_TC_CCTRL_2_2(self):
295293
await self.send_single_cmd(cmd, dev_ctrl=self.TH_server_controller, node_id=self.server_nodeid, endpoint=0, timedRequestTimeoutMs=5000)
296294

297295
self.step(27)
298-
if not self.is_ci:
296+
if not self.is_pics_sdk_ci_only:
299297
time.sleep(30)
300298

301299
self.step(28)
302300
th_server_fabrics_new = await self.read_single_attribute_check_success(cluster=Clusters.OperationalCredentials, attribute=Clusters.OperationalCredentials.Attributes.Fabrics, dev_ctrl=self.TH_server_controller, node_id=self.server_nodeid, endpoint=0, fabric_filtered=False)
303301
# TODO: this should be mocked too.
304-
if not self.is_ci:
302+
if not self.is_pics_sdk_ci_only:
305303
asserts.assert_equal(len(th_server_fabrics) + 1, len(th_server_fabrics_new),
306304
"Unexpected number of fabrics on TH_SERVER")
307305

src/python_testing/TC_CCTRL_2_3.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ def default_timeout(self) -> int:
111111

112112
@run_if_endpoint_matches(has_cluster(Clusters.CommissionerControl))
113113
async def test_TC_CCTRL_2_3(self):
114-
self.is_ci = self.check_pics('PICS_SDK_CI_ONLY')
115114

116115
self.step(1)
117116
th_server_fabrics = await self.read_single_attribute_check_success(cluster=Clusters.OperationalCredentials, attribute=Clusters.OperationalCredentials.Attributes.Fabrics, dev_ctrl=self.TH_server_controller, node_id=self.server_nodeid, endpoint=0, fabric_filtered=False)
@@ -129,7 +128,7 @@ async def test_TC_CCTRL_2_3(self):
129128
await self.send_single_cmd(cmd=cmd)
130129

131130
self.step(5)
132-
if not self.is_ci:
131+
if not self.is_pics_sdk_ci_only:
133132
self.wait_for_user_input("Approve Commissioning approval request using manufacturer specified mechanism")
134133

135134
self.step(6)

src/python_testing/TC_DA_1_2.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,6 @@ def steps_TC_DA_1_2(self):
175175

176176
@async_test_body
177177
async def test_TC_DA_1_2(self):
178-
is_ci = self.check_pics('PICS_SDK_CI_ONLY')
179178
cd_cert_dir = self.user_params.get("cd_cert_dir", 'credentials/development/cd-certs')
180179
post_cert_test = self.user_params.get("post_cert_test", False)
181180

@@ -311,7 +310,7 @@ async def test_TC_DA_1_2(self):
311310
asserts.assert_equal(format_version, 1, "Format version is incorrect")
312311
self.step("6.2")
313312
asserts.assert_equal(vendor_id, basic_info_vendor_id, "Vendor ID is incorrect")
314-
if not is_ci:
313+
if not self.is_pics_sdk_ci_only:
315314
asserts.assert_in(vendor_id, range(1, 0xfff0), "Vendor ID is out of range")
316315
self.step("6.3")
317316
asserts.assert_true(basic_info_product_id in product_id_array, "Product ID not found in CD product array")
@@ -328,7 +327,7 @@ async def test_TC_DA_1_2(self):
328327
self.step("6.9")
329328
if post_cert_test:
330329
asserts.assert_equal(certification_type, 2, "Certification declaration is not marked as production.")
331-
elif is_ci:
330+
elif self.is_pics_sdk_ci_only:
332331
asserts.assert_in(certification_type, [0, 1, 2], "Certification type is out of range")
333332
else:
334333
asserts.assert_in(certification_type, [1, 2], "Certification type is out of range")

src/python_testing/TC_DeviceBasicComposition.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -455,8 +455,7 @@ class RequiredMandatoryAttribute:
455455

456456
self.print_step(
457457
6, "Validate that none of the global attribute IDs contain values with prefixes outside of the allowed standard or MEI prefix range")
458-
is_ci = self.check_pics('PICS_SDK_CI_ONLY')
459-
if is_ci:
458+
if self.is_pics_sdk_ci_only:
460459
# test vendor prefixes are allowed in the CI because we use them internally in examples
461460
bad_prefix_min = 0xFFF5_0000
462461
else:

src/python_testing/TC_DeviceConformance.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -356,9 +356,8 @@ def test_TC_IDM_10_2(self):
356356
# TODO: Turn this off after TE2
357357
# https://github.com/project-chip/connectedhomeip/issues/34615
358358
ignore_in_progress = self.user_params.get("ignore_in_progress", True)
359-
is_ci = self.check_pics('PICS_SDK_CI_ONLY')
360359
allow_provisional = self.user_params.get("allow_provisional", False)
361-
success, problems = self.check_conformance(ignore_in_progress, is_ci, allow_provisional)
360+
success, problems = self.check_conformance(ignore_in_progress, self.is_pics_sdk_ci_only, allow_provisional)
362361
self.problems.extend(problems)
363362
if not success:
364363
self.fail_current_test("Problems with conformance")

src/python_testing/TC_MCORE_FS_1_1.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ def default_timeout(self) -> int:
133133

134134
@async_test_body
135135
async def test_TC_MCORE_FS_1_1(self):
136-
self.is_ci = self.check_pics('PICS_SDK_CI_ONLY')
137136
# TODO this value should either be determined or passed in from command line
138137
dut_commissioning_control_endpoint = 0
139138
self.step(1)
@@ -152,7 +151,7 @@ async def test_TC_MCORE_FS_1_1(self):
152151
requestID=good_request_id, vendorID=th_fsa_server_vid, productID=th_fsa_server_pid, label="Test Ecosystem")
153152
await self.send_single_cmd(cmd, endpoint=dut_commissioning_control_endpoint)
154153

155-
if not self.is_ci:
154+
if not self.is_pics_sdk_ci_only:
156155
self.wait_for_user_input("Approve Commissioning approval request on DUT using manufacturer specified mechanism")
157156

158157
if not events:
@@ -181,12 +180,12 @@ async def test_TC_MCORE_FS_1_1(self):
181180
await self.send_single_cmd(cmd, dev_ctrl=self.TH_server_controller, node_id=self.server_nodeid, endpoint=0, timedRequestTimeoutMs=5000)
182181

183182
self.step("3c")
184-
if not self.is_ci:
183+
if not self.is_pics_sdk_ci_only:
185184
time.sleep(30)
186185

187186
th_fsa_server_fabrics_new = await self.read_single_attribute_check_success(cluster=Clusters.OperationalCredentials, attribute=Clusters.OperationalCredentials.Attributes.Fabrics, dev_ctrl=self.TH_server_controller, node_id=self.server_nodeid, endpoint=0, fabric_filtered=False)
188187
# TODO: this should be mocked too.
189-
if not self.is_ci:
188+
if not self.is_pics_sdk_ci_only:
190189
asserts.assert_equal(len(th_fsa_server_fabrics) + 1, len(th_fsa_server_fabrics_new),
191190
"Unexpected number of fabrics on TH_SERVER")
192191

src/python_testing/TC_MCORE_FS_1_2.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,6 @@ def default_timeout(self) -> int:
148148

149149
@async_test_body
150150
async def test_TC_MCORE_FS_1_2(self):
151-
self.is_ci = self.check_pics('PICS_SDK_CI_ONLY')
152151

153152
min_report_interval_sec = self.user_params.get("min_report_interval_sec", 0)
154153
max_report_interval_sec = self.user_params.get("max_report_interval_sec", 30)
@@ -176,7 +175,7 @@ async def test_TC_MCORE_FS_1_2(self):
176175
asserts.assert_true(type_matches(step_1_dut_parts_list, list), "PartsList is expected to be a list")
177176

178177
self.step(2)
179-
if not self.is_ci:
178+
if not self.is_pics_sdk_ci_only:
180179
self._ask_for_vendor_commissioning_ux_operation(self.th_server_setup_params)
181180
else:
182181
self.dut_fsa_stdin.write(

src/python_testing/TC_MCORE_FS_1_3.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ async def commission_via_commissioner_control(self, controller_node_id: int, dev
124124
),
125125
)
126126

127-
if not self.is_ci:
127+
if not self.is_pics_sdk_ci_only:
128128
self.wait_for_user_input("Approve Commissioning Approval Request on DUT using manufacturer specified mechanism")
129129

130130
resp = await self.send_single_cmd(
@@ -152,7 +152,6 @@ async def commission_via_commissioner_control(self, controller_node_id: int, dev
152152

153153
@async_test_body
154154
async def test_TC_MCORE_FS_1_3(self):
155-
self.is_ci = self.check_pics('PICS_SDK_CI_ONLY')
156155

157156
# Commissioning - done
158157
self.step(0)

src/python_testing/TC_MCORE_FS_1_4.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,6 @@ def steps_TC_MCORE_FS_1_4(self) -> list[TestStep]:
195195

196196
@async_test_body
197197
async def test_TC_MCORE_FS_1_4(self):
198-
self.is_ci = self.check_pics('PICS_SDK_CI_ONLY')
199198

200199
# Commissioning - done
201200
self.step(0)
@@ -298,7 +297,7 @@ async def test_TC_MCORE_FS_1_4(self):
298297
self.step(4)
299298

300299
# Commissioning TH_FSA_BRIDGE to DUT_FSA fabric.
301-
if not self.is_ci:
300+
if not self.is_pics_sdk_ci_only:
302301
self.wait_for_user_input(
303302
f"Commission TH_FSA's aggregator on DUT using manufacturer specified mechanism.\n"
304303
f"Use the following parameters:\n"
@@ -326,7 +325,7 @@ async def test_TC_MCORE_FS_1_4(self):
326325
))
327326

328327
# Synchronize TH_SERVER_NO_UID from TH_FSA to DUT_FSA fabric.
329-
if not self.is_ci:
328+
if not self.is_pics_sdk_ci_only:
330329
self.wait_for_user_input(
331330
f"Synchronize endpoint from TH_FSA's aggregator to DUT using manufacturer specified mechanism.\n"
332331
f"Use the following parameters:\n"

src/python_testing/TC_MCORE_FS_1_5.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,6 @@ def default_timeout(self) -> int:
155155

156156
@async_test_body
157157
async def test_TC_MCORE_FS_1_5(self):
158-
self.is_ci = self.check_pics('PICS_SDK_CI_ONLY')
159158

160159
min_report_interval_sec = 0
161160
max_report_interval_sec = 30
@@ -183,7 +182,7 @@ async def test_TC_MCORE_FS_1_5(self):
183182
asserts.assert_true(type_matches(step_1_dut_parts_list, list), "PartsList is expected to be a list")
184183

185184
self.step(2)
186-
if not self.is_ci:
185+
if not self.is_pics_sdk_ci_only:
187186
self._ask_for_vendor_commissioning_ux_operation(self.th_server_setup_params)
188187
else:
189188
self.dut_fsa_stdin.write(

src/python_testing/TC_pics_checker.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def test_TC_IDM_10_4(self):
177177
self._check_and_record_errors(location, required, pics)
178178

179179
self.step(7)
180-
if self.check_pics('PICS_SDK_CI_ONLY'):
180+
if self.is_pics_sdk_ci_only:
181181
self.record_error("PICS check", location=ProblemLocation(),
182182
problem="PICS PICS_SDK_CI_ONLY found in PICS list. This PICS is disallowed for certification.")
183183
self.success = False

src/python_testing/drlk_2_x_common.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ async def teardown(self):
121121
credentials=self.createdCredential, userIndex=self.user_index)
122122

123123
async def run_drlk_test_common(self, lockUnlockCommand, lockUnlockCmdRspPICS, lockUnlockText, doAutoRelockTest):
124-
is_ci = self.check_pics('PICS_SDK_CI_ONLY')
125124
self.clear_credential_and_user_flag = True
126125

127126
# Allow for user overrides of these values
@@ -131,7 +130,7 @@ async def run_drlk_test_common(self, lockUnlockCommand, lockUnlockCmdRspPICS, lo
131130
userCodeTemporaryDisableTime = self.user_params.get("user_code_temporary_disable_time", 15)
132131
wrongCodeEntryLimit = self.user_params.get("wrong_code_entry_limit", 3)
133132
autoRelockTime = self.user_params.get("auto_relock_time", 60)
134-
if is_ci:
133+
if self.is_pics_sdk_ci_only:
135134
autoRelockTime = 10
136135

137136
cluster = Clusters.Objects.DoorLock

src/python_testing/matter_testing_support.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -1008,7 +1008,7 @@ def write_to_app_pipe(self, command_dict: dict, app_pipe_name: Optional[str] = N
10081008
10091009
Use the following environment variables:
10101010
1011-
- LINUX_DUT_IP
1011+
- LINUX_DUT_IP
10121012
* if not provided, the Matter app is assumed to run on the same machine as the test,
10131013
such as during CI, and the commands are sent to it using a local named pipe
10141014
* if provided, the commands for writing to the named pipe are forwarded to the DUT
@@ -1128,9 +1128,11 @@ def teardown_class(self):
11281128
super().teardown_class()
11291129

11301130
def check_pics(self, pics_key: str) -> bool:
1131-
picsd = self.matter_test_config.pics
1132-
pics_key = pics_key.strip()
1133-
return pics_key in picsd and picsd[pics_key]
1131+
return self.matter_test_config.pics.get(pics_key.strip(), False)
1132+
1133+
@property
1134+
def is_pics_sdk_ci_only(self) -> bool:
1135+
return self.check_pics('PICS_SDK_CI_ONLY')
11341136

11351137
async def openCommissioningWindow(self, dev_ctrl: ChipDeviceCtrl, node_id: int) -> CustomCommissioningParameters:
11361138
rnd_discriminator = random.randint(0, 4095)

0 commit comments

Comments
 (0)