Skip to content

Commit e78498c

Browse files
jlatusekarkqrestyled-commits
authored
Python modifcation for check for fabricSynchronization condition on Agregator device (project-chip#34626)
* Check for FabricSynchronization condition on Aggregator device * Update after code review * Restyled by prettier-yaml * Remove yaml with test --------- Co-authored-by: Arkadiusz Bokowy <a.bokowy@samsung.com> Co-authored-by: Restyled.io <commits@restyled.io>
1 parent 7afdb97 commit e78498c

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

scripts/tests/chiptest/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,8 @@ def target_for_name(name: str):
276276
return TestTarget.TV
277277
if name.startswith("DL_") or name.startswith("Test_TC_DRLK_"):
278278
return TestTarget.LOCK
279+
if name.startswith("TestFabricSync"):
280+
return TestTarget.FABRIC_SYNC
279281
if name.startswith("OTA_"):
280282
return TestTarget.OTA
281283
if name.startswith("Test_TC_BRBINFO_") or name.startswith("Test_TC_ACT_"):

scripts/tests/chiptest/linux.py

+1
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,7 @@ def PathsWithNetworkNamespaces(paths: ApplicationPaths) -> ApplicationPaths:
178178
chip_tool='ip netns exec tool'.split() + paths.chip_tool,
179179
all_clusters_app='ip netns exec app'.split() + paths.all_clusters_app,
180180
lock_app='ip netns exec app'.split() + paths.lock_app,
181+
fabric_bridge_app='ip netns exec app'.split() + paths.fabric_bridge_app,
181182
ota_provider_app='ip netns exec app'.split() + paths.ota_provider_app,
182183
ota_requestor_app='ip netns exec app'.split() + paths.ota_requestor_app,
183184
tv_app='ip netns exec app'.split() + paths.tv_app,

scripts/tests/chiptest/test_definition.py

+9-2
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ class TestTarget(Enum):
175175
OTA = auto()
176176
BRIDGE = auto()
177177
LIT_ICD = auto()
178+
FABRIC_SYNC = auto()
178179
MWO = auto()
179180
RVC = auto()
180181
NETWORK_MANAGER = auto()
@@ -185,6 +186,7 @@ class ApplicationPaths:
185186
chip_tool: typing.List[str]
186187
all_clusters_app: typing.List[str]
187188
lock_app: typing.List[str]
189+
fabric_bridge_app: typing.List[str]
188190
ota_provider_app: typing.List[str]
189191
ota_requestor_app: typing.List[str]
190192
tv_app: typing.List[str]
@@ -197,8 +199,11 @@ class ApplicationPaths:
197199
network_manager_app: typing.List[str]
198200

199201
def items(self):
200-
return [self.chip_tool, self.all_clusters_app, self.lock_app, self.ota_provider_app, self.ota_requestor_app,
201-
self.tv_app, self.bridge_app, self.lit_icd_app, self.microwave_oven_app, self.chip_repl_yaml_tester_cmd, self.chip_tool_with_python_cmd, self.rvc_app, self.network_manager_app]
202+
return [self.chip_tool, self.all_clusters_app, self.lock_app,
203+
self.fabric_bridge_app, self.ota_provider_app, self.ota_requestor_app,
204+
self.tv_app, self.bridge_app, self.lit_icd_app,
205+
self.microwave_oven_app, self.chip_repl_yaml_tester_cmd,
206+
self.chip_tool_with_python_cmd, self.rvc_app, self.network_manager_app]
202207

203208

204209
@dataclass
@@ -301,6 +306,8 @@ def Run(self, runner, apps_register, paths: ApplicationPaths, pics_file: str,
301306
target_app = paths.tv_app
302307
elif self.target == TestTarget.LOCK:
303308
target_app = paths.lock_app
309+
elif self.target == TestTarget.FABRIC_SYNC:
310+
target_app = paths.fabric_bridge_app
304311
elif self.target == TestTarget.OTA:
305312
target_app = paths.ota_requestor_app
306313
elif self.target == TestTarget.BRIDGE:

scripts/tests/run_test_suite.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,9 @@ def cmd_list(context):
239239
@click.option(
240240
'--lock-app',
241241
help='what lock app to use')
242+
@click.option(
243+
'--fabric-bridge-app',
244+
help='what fabric bridge app to use')
242245
@click.option(
243246
'--ota-provider-app',
244247
help='what ota provider app to use')
@@ -294,7 +297,8 @@ def cmd_list(context):
294297
help='Number of tests that are expected to fail in each iteration. Overall test will pass if the number of failures matches this. Nonzero values require --keep-going')
295298
@click.pass_context
296299
def cmd_run(context, iterations, all_clusters_app, lock_app, ota_provider_app, ota_requestor_app,
297-
tv_app, bridge_app, lit_icd_app, microwave_oven_app, rvc_app, network_manager_app, chip_repl_yaml_tester, chip_tool_with_python, pics_file, keep_going, test_timeout_seconds, expected_failures):
300+
fabric_bridge_app, tv_app, bridge_app, lit_icd_app, microwave_oven_app, rvc_app, network_manager_app, chip_repl_yaml_tester,
301+
chip_tool_with_python, pics_file, keep_going, test_timeout_seconds, expected_failures):
298302
if expected_failures != 0 and not keep_going:
299303
logging.exception(f"'--expected-failures {expected_failures}' used without '--keep-going'")
300304
sys.exit(2)
@@ -309,6 +313,9 @@ def cmd_run(context, iterations, all_clusters_app, lock_app, ota_provider_app, o
309313
if lock_app is None:
310314
lock_app = paths_finder.get('chip-lock-app')
311315

316+
if fabric_bridge_app is None:
317+
fabric_bridge_app = paths_finder.get('fabric-bridge-app')
318+
312319
if ota_provider_app is None:
313320
ota_provider_app = paths_finder.get('chip-ota-provider-app')
314321

@@ -347,6 +354,7 @@ def cmd_run(context, iterations, all_clusters_app, lock_app, ota_provider_app, o
347354
chip_tool=[context.obj.chip_tool],
348355
all_clusters_app=[all_clusters_app],
349356
lock_app=[lock_app],
357+
fabric_bridge_app=[fabric_bridge_app],
350358
ota_provider_app=[ota_provider_app],
351359
ota_requestor_app=[ota_requestor_app],
352360
tv_app=[tv_app],

0 commit comments

Comments
 (0)