Skip to content

Commit 8ecce5e

Browse files
authored
[test] Add --dry-run option to run_test_suite.py (project-chip#21137)
1 parent 1ff2174 commit 8ecce5e

File tree

2 files changed

+26
-11
lines changed

2 files changed

+26
-11
lines changed

scripts/tests/chiptest/test_definition.py

+14-8
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ class TestDefinition:
209209
target: TestTarget
210210
is_manual: bool
211211

212-
def Run(self, runner, apps_register, paths: ApplicationPaths, pics_file: str, timeout_seconds: typing.Optional[int]):
212+
def Run(self, runner, apps_register, paths: ApplicationPaths, pics_file: str, timeout_seconds: typing.Optional[int], dry_run=False):
213213
"""
214214
Executes the given test case using the provided runner for execution.
215215
"""
@@ -264,14 +264,20 @@ def Run(self, runner, apps_register, paths: ApplicationPaths, pics_file: str, ti
264264
app = apps_register.get('default')
265265
app.start()
266266
pairing_cmd = tool_cmd + ['pairing', 'code', TEST_NODE_ID, app.setupCode]
267-
runner.RunSubprocess(pairing_cmd,
268-
name='PAIR', dependencies=[apps_register])
269-
270267
test_cmd = tool_cmd + ['tests', self.run_name] + ['--PICS', pics_file]
271-
runner.RunSubprocess(
272-
test_cmd,
273-
name='TEST', dependencies=[apps_register],
274-
timeout_seconds=timeout_seconds)
268+
269+
if dry_run:
270+
logging.info(" ".join(pairing_cmd))
271+
logging.info(" ".join(test_cmd))
272+
273+
else:
274+
runner.RunSubprocess(pairing_cmd,
275+
name='PAIR', dependencies=[apps_register])
276+
277+
runner.RunSubprocess(
278+
test_cmd,
279+
name='TEST', dependencies=[apps_register],
280+
timeout_seconds=timeout_seconds)
275281

276282
except Exception:
277283
logging.error("!!!!!!!!!!!!!!!!!!!! ERROR !!!!!!!!!!!!!!!!!!!!!!")

scripts/tests/run_test_suite.py

+12-3
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ class RunContext:
6262
tests: typing.List[chiptest.TestDefinition]
6363
in_unshare: bool
6464
chip_tool: str
65+
dry_run: bool
6566

6667

6768
@click.group(chain=True)
@@ -70,6 +71,11 @@ class RunContext:
7071
default='info',
7172
type=click.Choice(__LOG_LEVELS__.keys(), case_sensitive=False),
7273
help='Determines the verbosity of script output.')
74+
@click.option(
75+
'--dry-run',
76+
default=False,
77+
is_flag=True,
78+
help='Only print out shell commands that would be executed')
7379
@click.option(
7480
'--target',
7581
default=['all'],
@@ -106,7 +112,7 @@ class RunContext:
106112
'--chip-tool',
107113
help='Binary path of chip tool app to use to run the test')
108114
@click.pass_context
109-
def main(context, log_level, target, target_glob, target_skip_glob,
115+
def main(context, dry_run, log_level, target, target_glob, target_skip_glob,
110116
no_log_timestamps, root, internal_inside_unshare, chip_tool):
111117
# Ensures somewhat pretty logging of what is going on
112118
log_fmt = '%(asctime)s.%(msecs)03d %(levelname)-7s %(message)s'
@@ -151,7 +157,7 @@ def main(context, log_level, target, target_glob, target_skip_glob,
151157

152158
context.obj = RunContext(root=root, tests=tests,
153159
in_unshare=internal_inside_unshare,
154-
chip_tool=chip_tool)
160+
chip_tool=chip_tool, dry_run=dry_run)
155161

156162

157163
@main.command(
@@ -245,7 +251,10 @@ def cmd_run(context, iterations, all_clusters_app, lock_app, ota_provider_app, o
245251
for test in context.obj.tests:
246252
test_start = time.monotonic()
247253
try:
248-
test.Run(runner, apps_register, paths, pics_file, test_timeout_seconds)
254+
if context.obj.dry_run:
255+
logging.info("Would run test %s:" % test.name)
256+
257+
test.Run(runner, apps_register, paths, pics_file, test_timeout_seconds, context.obj.dry_run)
249258
test_end = time.monotonic()
250259
logging.info('%-20s - Completed in %0.2f seconds' %
251260
(test.name, (test_end - test_start)))

0 commit comments

Comments
 (0)