Skip to content

Commit e0e186c

Browse files
[python tests] Add to flake8 in workflow and fix python files (part #25193) (#25312)
* [python tests] Add to flake8 in workflow and fix python files * Restyled by autopep8 * Add testing files from controller --------- Co-authored-by: Restyled.io <commits@restyled.io>
1 parent 74a1f14 commit e0e186c

34 files changed

+989
-518
lines changed

.flake8

-30
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,14 @@ exclude = third_party
3333
scripts/build/builders/imx.py
3434
scripts/build/builders/infineon.py
3535
scripts/build/builders/nrf.py
36-
scripts/build/test.py
3736
scripts/codegen.py
3837
scripts/codepregen.py
3938
scripts/error_table.py
4039
scripts/examples/gn_to_cmakelists.py
41-
scripts/examples/tests/test.py
4240
scripts/flashing/bouffalolab_firmware_utils.py
4341
scripts/flashing/cyw30739_firmware_utils.py
4442
scripts/flashing/nrfconnect_firmware_utils.py
4543
scripts/gen_chip_version.py
46-
scripts/gen_test_driver.py
4744
scripts/helpers/bloat_check.py
4845
scripts/pregenerate/using_codegen.py
4946
scripts/pregenerate/using_zap.py
@@ -60,16 +57,7 @@ exclude = third_party
6057
scripts/py_matter_yamltests/test_yaml_parser.py
6158
scripts/run-clang-tidy-on-compile-commands.py
6259
scripts/setup/nrfconnect/update_ncs.py
63-
scripts/tests/chiptest/__init__.py
64-
scripts/tests/chiptest/runner.py
65-
scripts/tests/chiptest/test_definition.py
6660
scripts/tests/chiptest/yamltest_with_chip_repl_tester.py
67-
scripts/tests/java/base.py
68-
scripts/tests/java/commissioning_test.py
69-
scripts/tests/java/discover_test.py
70-
scripts/tests/run_java_test.py
71-
scripts/tests/run_python_test.py
72-
scripts/tests/run_test_suite.py
7361
scripts/tools/check_zcl_file_sync.py
7462
scripts/tools/convert_ini.py
7563
scripts/tools/generate_esp32_chip_factory_bin.py
@@ -82,12 +70,10 @@ exclude = third_party
8270
scripts/tools/telink/mfg_tool.py
8371
scripts/tools/zap/generate.py
8472
scripts/tools/zap/prune_outputs.py
85-
scripts/tools/zap/test_generate.py
8673
scripts/tools/zap/version_update.py
8774
scripts/tools/zap/zap_download.py
8875
scripts/tools/zap_convert_all.py
8976
src/app/ota_image_tool.py
90-
src/app/tests/suites/certification/information.py
9177
src/app/zap_cluster_list.py
9278
src/controller/python/build-chip-wheel.py
9379
src/controller/python/chip-device-ctrl.py
@@ -117,23 +103,7 @@ exclude = third_party
117103
src/controller/python/chip/yaml/__init__.py
118104
src/controller/python/chip/yaml/format_converter.py
119105
src/controller/python/chip/yaml/runner.py
120-
src/controller/python/test/test_scripts/base.py
121-
src/controller/python/test/test_scripts/cluster_objects.py
122-
src/controller/python/test/test_scripts/mobile-device-test.py
123-
src/controller/python/test/test_scripts/network_commissioning.py
124-
src/controller/python/test/unit_tests/test_cluster_objects.py
125-
src/controller/python/test/unit_tests/test_tlv.py
126106
src/lib/asn1/gen_asn1oid.py
127107
src/pybindings/pycontroller/build-chip-wheel.py
128108
src/pybindings/pycontroller/pychip/__init__.py
129-
src/python_testing/TC_ACE_1_3.py
130-
src/python_testing/TC_ACE_1_4.py
131-
src/python_testing/TC_CGEN_2_4.py
132-
src/python_testing/TC_DA_1_7.py
133-
src/python_testing/TC_RR_1_1.py
134-
src/python_testing/TC_SC_3_6.py
135-
src/python_testing/TC_TestEventTrigger.py
136-
src/python_testing/hello_test.py
137-
src/python_testing/matter_testing_support.py
138109
src/setup_payload/python/generate_setup_payload.py
139-
src/setup_payload/tests/run_python_setup_payload_gen_test.py

build/chip/java/tests/test.py

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
import json
2020
import os
21-
import subprocess
2221
import unittest
2322
from os import path
2423

scripts/build/test.py

+10-10
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626

2727
def build_expected_output(source: str, root: str, out: str) -> List[str]:
2828
with open(os.path.join(SCRIPT_ROOT, source), 'rt') as f:
29-
for l in f.readlines():
30-
yield l.replace("{root}", root).replace("{out}", out)
29+
for line in f.readlines():
30+
yield line.replace("{root}", root).replace("{out}", out)
3131

3232

3333
def build_actual_output(root: str, out: str, args: List[str]) -> List[str]:
@@ -57,7 +57,7 @@ def build_actual_output(root: str, out: str, args: List[str]) -> List[str]:
5757
'--out-prefix', out,
5858
] + args, stdout=subprocess.PIPE, check=True, encoding='UTF-8', env=runenv)
5959

60-
result = [l + '\n' for l in retval.stdout.split('\n')]
60+
result = [line + '\n' for line in retval.stdout.split('\n')]
6161

6262
# ensure a single terminating newline: easier to edit since autoformat
6363
# often strips ending double newlines on text files
@@ -73,22 +73,22 @@ def assertCommandOutput(self, expected_file: str, args: List[str]):
7373
ROOT = '/TEST/BUILD/ROOT'
7474
OUT = '/OUTPUT/DIR'
7575

76-
expected = [l for l in build_expected_output(expected_file, ROOT, OUT)]
77-
actual = [l for l in build_actual_output(ROOT, OUT, args)]
76+
expected = [line for line in build_expected_output(expected_file, ROOT, OUT)]
77+
actual = [line for line in build_actual_output(ROOT, OUT, args)]
7878

7979
diffs = [line for line in difflib.unified_diff(expected, actual)]
8080

8181
if diffs:
8282
reference = os.path.basename(expected_file) + '.actual'
8383
with open(reference, 'wt') as fo:
84-
for l in build_actual_output(ROOT, OUT, args):
85-
fo.write(l.replace(ROOT, '{root}').replace(OUT, '{out}'))
84+
for line in build_actual_output(ROOT, OUT, args):
85+
fo.write(line.replace(ROOT, '{root}').replace(OUT, '{out}'))
8686

8787
msg = "DIFFERENCE between expected and generated output in %s\n" % expected_file
8888
msg += "Expected file can be found in %s" % reference
89-
for l in diffs:
90-
msg += ("\n " + l.replace(ROOT,
91-
'{root}').replace(OUT, '{out}').strip())
89+
for line in diffs:
90+
msg += ("\n " + line.replace(ROOT,
91+
'{root}').replace(OUT, '{out}').strip())
9292
self.fail(msg)
9393

9494
@unittest.skipUnless(sys.platform == 'linux', 'Build on linux test')

scripts/examples/tests/test.py

+10-10
Original file line numberDiff line numberDiff line change
@@ -27,24 +27,24 @@
2727

2828

2929
def build_expected_output(root: str, out: str) -> List[str]:
30-
with open(os.path.join(SCRIPT_ROOT, 'expected_test_cmakelists.txt'), 'rt') as f:
31-
for l in f.readlines():
32-
yield l.replace("{root}", root).replace("{out}", out)
30+
with open(os.path.join(SCRIPT_ROOT, 'expected_test_cmakelists.txt'), 'rt') as file:
31+
for line in file.readlines():
32+
yield line.replace("{root}", root).replace("{out}", out)
3333

3434

3535
def build_actual_output(root: str, out: str) -> List[str]:
3636
# Fake out that we have a project root
3737
binary = os.path.join(SCRIPT_ROOT, '../gn_to_cmakelists.py')
3838
project = os.path.join(SCRIPT_ROOT, "test_project.json")
3939
cmake = os.path.join(SCRIPT_ROOT, "../../../out/CMakeLists.txt")
40-
retval = subprocess.run([
40+
subprocess.run([
4141
binary,
4242
project,
4343
], stdout=subprocess.PIPE, check=True, encoding='UTF-8', )
4444

4545
with open(cmake, 'rt') as f:
46-
for l in f.readlines():
47-
yield l
46+
for line in f.readlines():
47+
yield line
4848

4949

5050
def main():
@@ -54,15 +54,15 @@ def main():
5454
ROOT = '/TEST/BUILD/ROOT'
5555
OUT = '/OUTPUT/DIR'
5656

57-
expected = [l for l in build_expected_output(ROOT, OUT)]
58-
actual = [l for l in build_actual_output(ROOT, OUT)]
57+
expected = [line for line in build_expected_output(ROOT, OUT)]
58+
actual = [line for line in build_actual_output(ROOT, OUT)]
5959

6060
diffs = [line for line in difflib.unified_diff(expected, actual)]
6161

6262
if diffs:
6363
logging.error("DIFFERENCE between expected and generated output")
64-
for l in diffs:
65-
logging.warning(" " + l.strip())
64+
for line in diffs:
65+
logging.warning(" " + line.strip())
6666
sys.exit(1)
6767

6868

scripts/gen_test_driver.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
#!/usr/bin/env python
32

43
# Copyright (c) 2020 Project CHIP Authors
@@ -74,8 +73,8 @@ def main(argv):
7473
TEST_SUITE_RE = re.compile(r'\s*CHIP_REGISTER_TEST_SUITE\(([^)]*)\)')
7574

7675
with open(options.input_file, 'r') as input_file:
77-
for l in input_file.readlines():
78-
match = TEST_SUITE_RE.match(l)
76+
for line in input_file.readlines():
77+
match = TEST_SUITE_RE.match(line)
7978
if not match:
8079
continue
8180

scripts/tests/chiptest/__init__.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from typing import Iterator, Set
2323

2424
from . import linux, runner
25-
from .test_definition import ApplicationPaths, TestDefinition, TestRunTime, TestTag, TestTarget
25+
from .test_definition import ApplicationPaths, TestDefinition, TestTag, TestTarget
2626

2727
_DEFAULT_CHIP_ROOT = os.path.abspath(
2828
os.path.join(os.path.dirname(__file__), "..", "..", ".."))
@@ -149,7 +149,13 @@ def _AllYamlTests():
149149

150150

151151
def target_for_name(name: str):
152-
if name.startswith("TV_") or name.startswith("Test_TC_MC_") or name.startswith("Test_TC_LOWPOWER_") or name.startswith("Test_TC_KEYPADINPUT_") or name.startswith("Test_TC_APPLAUNCHER_") or name.startswith("Test_TC_MEDIAINPUT_") or name.startswith("Test_TC_WAKEONLAN_") or name.startswith("Test_TC_CHANNEL_") or name.startswith("Test_TC_MEDIAPLAYBACK_") or name.startswith("Test_TC_AUDIOOUTPUT_") or name.startswith("Test_TC_TGTNAV_") or name.startswith("Test_TC_APBSC_") or name.startswith("Test_TC_CONTENTLAUNCHER_") or name.startswith("Test_TC_ALOGIN_"):
152+
if (name.startswith("TV_") or name.startswith("Test_TC_MC_") or
153+
name.startswith("Test_TC_LOWPOWER_") or name.startswith("Test_TC_KEYPADINPUT_") or
154+
name.startswith("Test_TC_APPLAUNCHER_") or name.startswith("Test_TC_MEDIAINPUT_") or
155+
name.startswith("Test_TC_WAKEONLAN_") or name.startswith("Test_TC_CHANNEL_") or
156+
name.startswith("Test_TC_MEDIAPLAYBACK_") or name.startswith("Test_TC_AUDIOOUTPUT_") or
157+
name.startswith("Test_TC_TGTNAV_") or name.startswith("Test_TC_APBSC_") or
158+
name.startswith("Test_TC_CONTENTLAUNCHER_") or name.startswith("Test_TC_ALOGIN_")):
153159
return TestTarget.TV
154160
if name.startswith("DL_") or name.startswith("Test_TC_DRLK_"):
155161
return TestTarget.LOCK

scripts/tests/chiptest/runner.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ def CapturedLogContains(self, txt: str, index=0):
5656
return False, len(self.captured_logs)
5757

5858
def FindLastMatchingLine(self, matcher):
59-
for l in reversed(self.captured_logs):
60-
match = re.match(matcher, l)
59+
for line in reversed(self.captured_logs):
60+
match = re.match(matcher, line)
6161
if match:
6262
return match
6363
return None

scripts/tests/chiptest/test_definition.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,12 @@
1515

1616
import logging
1717
import os
18-
import sys
1918
import threading
2019
import time
2120
import typing
2221
from dataclasses import dataclass, field
2322
from datetime import datetime
2423
from enum import Enum, auto
25-
from random import randrange
2624

2725
TEST_NODE_ID = '0x12344321'
2826

@@ -94,7 +92,7 @@ def wait(self, timeout=None):
9492
if self.killed:
9593
return 0
9694
# If the App was never started, wait cannot be called on the process
97-
if self.process == None:
95+
if self.process is None:
9896
time.sleep(0.1)
9997
continue
10098
code = self.process.wait(timeout)
@@ -169,7 +167,8 @@ class ApplicationPaths:
169167
chip_tool_with_python_cmd: typing.List[str]
170168

171169
def items(self):
172-
return [self.chip_tool, self.all_clusters_app, self.lock_app, self.ota_provider_app, self.ota_requestor_app, self.tv_app, self.bridge_app, self.chip_repl_yaml_tester_cmd, self.chip_tool_with_python_cmd]
170+
return [self.chip_tool, self.all_clusters_app, self.lock_app, self.ota_provider_app, self.ota_requestor_app,
171+
self.tv_app, self.bridge_app, self.chip_repl_yaml_tester_cmd, self.chip_tool_with_python_cmd]
173172

174173

175174
@dataclass
@@ -253,7 +252,8 @@ def tags_str(self) -> str:
253252
"""Get a human readable list of tags applied to this test"""
254253
return ", ".join([t.to_s() for t in self.tags])
255254

256-
def Run(self, runner, apps_register, paths: ApplicationPaths, pics_file: str, timeout_seconds: typing.Optional[int], dry_run=False, test_runtime: TestRunTime = TestRunTime.CHIP_TOOL_BUILTIN):
255+
def Run(self, runner, apps_register, paths: ApplicationPaths, pics_file: str,
256+
timeout_seconds: typing.Optional[int], dry_run=False, test_runtime: TestRunTime = TestRunTime.CHIP_TOOL_BUILTIN):
257257
"""
258258
Executes the given test case using the provided runner for execution.
259259
"""

scripts/tests/java/base.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,8 @@
1717
# limitations under the License.
1818
#
1919

20-
import asyncio
2120
import datetime
2221
# Commissioning test.
23-
import logging
24-
import os
2522
import queue
2623
import subprocess
2724
import sys
@@ -39,7 +36,7 @@ def EnqueueLogOutput(fp, tag, q):
3936
try:
4037
timestamp = float(line[1:18].decode())
4138
line = line[19:]
42-
except Exception as ex:
39+
except Exception:
4340
pass
4441
sys.stdout.buffer.write(
4542
(f"[{datetime.datetime.fromtimestamp(timestamp).isoformat(sep=' ')}]").encode() + tag + line)

scripts/tests/java/commissioning_test.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,9 @@
1818
#
1919

2020
import argparse
21-
import asyncio
2221
import logging
23-
import os
2422
import queue
2523
import subprocess
26-
import sys
2724
import threading
2825
import typing
2926

@@ -46,7 +43,8 @@ def __init__(self, thread_list: typing.List[threading.Thread], queue: queue.Queu
4643
parser.add_argument('-s', '--setup-payload', dest='setup_payload',
4744
help="Setup Payload (manual pairing code or QR code content)")
4845
parser.add_argument('-c', '--setup-pin-code', dest='setup_pin_code',
49-
help="Setup PIN code which can be used for password-authenticated session establishment (PASE) with the Commissionee")
46+
help=("Setup PIN code which can be used for password-authenticated "
47+
"session establishment (PASE) with the Commissionee"))
5048
parser.add_argument('-n', '--nodeid', help="The Node ID issued to the device", default='1')
5149
parser.add_argument('-d', '--discriminator', help="Discriminator of the device", default='3840')
5250
parser.add_argument('-u', '--paa-trust-store-path', dest='paa_trust_store_path',

scripts/tests/java/discover_test.py

-3
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,9 @@
1818
#
1919

2020
import argparse
21-
import asyncio
2221
import logging
23-
import os
2422
import queue
2523
import subprocess
26-
import sys
2724
import threading
2825
import typing
2926

scripts/tests/run_java_test.py

+12-8
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717
import logging
1818
import os
19-
import pathlib
20-
import pty
2119
import queue
2220
import re
2321
import shlex
@@ -34,12 +32,18 @@
3432

3533

3634
@click.command()
37-
@click.option("--app", type=click.Path(exists=True), default=None, help='Path to local application to use, omit to use external apps.')
38-
@click.option("--app-args", type=str, default='', help='The extra arguments passed to the device.')
39-
@click.option("--tool-path", type=click.Path(exists=True), default=None, help='Path to java-matter-controller.')
40-
@click.option("--tool-cluster", type=str, default='pairing', help='The cluster name passed to the java-matter-controller.')
41-
@click.option("--tool-args", type=str, default='', help='The arguments passed to the java-matter-controller.')
42-
@click.option("--factoryreset", is_flag=True, help='Remove app configs (/tmp/chip*) before running the tests.')
35+
@click.option("--app", type=click.Path(exists=True), default=None,
36+
help='Path to local application to use, omit to use external apps.')
37+
@click.option("--app-args", type=str, default='',
38+
help='The extra arguments passed to the device.')
39+
@click.option("--tool-path", type=click.Path(exists=True), default=None,
40+
help='Path to java-matter-controller.')
41+
@click.option("--tool-cluster", type=str, default='pairing',
42+
help='The cluster name passed to the java-matter-controller.')
43+
@click.option("--tool-args", type=str, default='',
44+
help='The arguments passed to the java-matter-controller.')
45+
@click.option("--factoryreset", is_flag=True,
46+
help='Remove app configs (/tmp/chip*) before running the tests.')
4347
def main(app: str, app_args: str, tool_path: str, tool_cluster: str, tool_args: str, factoryreset: bool):
4448
logging.info("Execute: {script_command}")
4549

0 commit comments

Comments
 (0)