Skip to content

Commit d5ebdab

Browse files
authored
Add to flake8 in workflow and fix python files (#25251)
1 parent 1d8d73f commit d5ebdab

File tree

8 files changed

+53
-62
lines changed

8 files changed

+53
-62
lines changed

.flake8

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ exclude = third_party
88
# temporarily scan only directories with fixed files
99
# TODO: Remove the paths below when all bugs are fixed
1010
src/tools/chip-cert/*
11-
src/test_driver/openiotsdk/*
1211
src/test_driver/mbed/*
1312
src/test_driver/linux-cirque/*
1413
build/chip/java/tests/*

src/test_driver/openiotsdk/integration-tests/common/device.py

-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ def wait_for_output(self, search: str, timeout: float = 10, assert_timeout: bool
9696
if line:
9797
lines.append(line)
9898
if search in line:
99-
end = time()
10099
return lines
101100

102101
except queue.Empty:

src/test_driver/openiotsdk/integration-tests/common/fixtures.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,11 @@
1919
import os
2020
import pathlib
2121
import shutil
22-
from time import sleep
2322

2423
import chip.CertificateAuthority
2524
import chip.native
2625
import pytest
27-
from chip import ChipDeviceCtrl, exceptions
28-
from chip.ChipStack import *
26+
from chip import exceptions
2927

3028
from .fvp_device import FvpDevice
3129
from .telnet_connection import TelnetConnection
@@ -113,7 +111,7 @@ def controller(vendor_id, fabric_id, node_id):
113111
except exceptions.ChipStackException as ex:
114112
log.error("Controller initialization failed {}".format(ex))
115113
return None
116-
except:
114+
except Exception:
117115
log.error("Controller initialization failed")
118116
return None
119117

src/test_driver/openiotsdk/integration-tests/common/fvp_device.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
#
1717

1818
import logging
19-
import os
2019
import subprocess
2120
import threading
2221
from time import sleep
@@ -45,7 +44,7 @@ def __init__(self, fvp, fvp_config, binary_file, connection_channel, network_int
4544
'-C', 'mps3_board.telnetterminal0.start_port={}'.format(self.connection_channel.get_port())
4645
]
4746

48-
if network_interface != None:
47+
if network_interface is not None:
4948
self.fvp_cmd.extend(['-C', 'mps3_board.hostbridge.interfaceName={}'.format(network_interface), ])
5049
else:
5150
self.fvp_cmd.extend(['-C', 'mps3_board.hostbridge.userNetworking=1'])

src/test_driver/openiotsdk/integration-tests/common/utils.py

+4-7
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,10 @@
1616
#
1717

1818
import asyncio
19-
import ctypes
2019
import logging
21-
import os
2220
import random
2321
import re
2422
import shlex
25-
from time import sleep
2623

2724
from chip import discovery, exceptions
2825
from chip.clusters import Objects as GeneratedObjects
@@ -40,7 +37,7 @@ def get_setup_payload(device):
4037
:return: setup payload or None
4138
"""
4239
ret = device.wait_for_output("SetupQRCode")
43-
if ret == None or len(ret) < 2:
40+
if ret is None or len(ret) < 2:
4441
return None
4542

4643
qr_code = re.sub(
@@ -85,7 +82,7 @@ def connect_device(setupPayload, commissionableDevice, nodeId=None):
8582
:param nodeId: device node ID
8683
:return: node ID if connection successful or None if failed
8784
"""
88-
if nodeId == None:
85+
if nodeId is None:
8986
nodeId = random.randint(1, 1000000)
9087

9188
pincode = int(setupPayload.attributes['SetUpPINCode'])
@@ -191,7 +188,7 @@ def send_zcl_command(devCtrl, line, requestTimeoutMs: int = None):
191188
raise exceptions.UnknownCluster(cluster)
192189
cmdArgsWithType = allCommands.get(cluster).get(command, None)
193190
# When command takes no arguments, (not command) is True
194-
if command == None:
191+
if command is None:
195192
raise exceptions.UnknownCommand(cluster, command)
196193

197194
args = FormatZCLArguments(cluster, cmdArgsLine, cmdArgsWithType)
@@ -232,7 +229,7 @@ def read_zcl_attribute(devCtrl, line):
232229
raise exceptions.UnknownCluster(cluster)
233230

234231
attrDetails = allAttrs.get(cluster).get(attribute, None)
235-
if attrDetails == None:
232+
if attrDetails is None:
236233
raise exceptions.UnknownAttribute(cluster, attribute)
237234

238235
res = devCtrl.ZCLReadAttribute(cluster, attribute, int(

src/test_driver/openiotsdk/integration-tests/conftest.py

-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
# limitations under the License.
1616
#
1717

18-
import pytest
19-
2018
pytest_plugins = ['common.fixtures']
2119

2220

src/test_driver/openiotsdk/integration-tests/lock-app/test_app.py

+24-21
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
#
1717

1818
import logging
19-
from time import sleep
19+
import os
2020

2121
import pytest
2222
from chip.clusters.Objects import DoorLock
23-
from common.utils import *
23+
from common.utils import connect_device, disconnect_device, discover_device, get_setup_payload, read_zcl_attribute, send_zcl_command
2424

2525
log = logging.getLogger(__name__)
2626

@@ -36,32 +36,32 @@ def binaryPath(request, rootDir):
3636
@pytest.mark.smoketest
3737
def test_smoke_test(device):
3838
ret = device.wait_for_output("Open IoT SDK lock-app example application start")
39-
assert ret != None and len(ret) > 0
39+
assert ret is not None and len(ret) > 0
4040
ret = device.wait_for_output("Open IoT SDK lock-app example application run")
41-
assert ret != None and len(ret) > 0
41+
assert ret is not None and len(ret) > 0
4242

4343

4444
@pytest.mark.commissioningtest
4545
def test_commissioning(device, controller):
46-
assert controller != None
46+
assert controller is not None
4747
devCtrl = controller
4848

4949
setupPayload = get_setup_payload(device)
50-
assert setupPayload != None
50+
assert setupPayload is not None
5151

5252
commissionable_device = discover_device(devCtrl, setupPayload)
53-
assert commissionable_device != None
53+
assert commissionable_device is not None
5454

5555
assert commissionable_device.vendorId == int(setupPayload.attributes['VendorID'])
5656
assert commissionable_device.productId == int(setupPayload.attributes['ProductID'])
57-
assert commissionable_device.addresses[0] != None
57+
assert commissionable_device.addresses[0] is not None
5858

5959
nodeId = connect_device(setupPayload, commissionable_device)
60-
assert nodeId != None
60+
assert nodeId is not None
6161
log.info("Device {} connected".format(commissionable_device.addresses[0]))
6262

6363
ret = device.wait_for_output("Commissioning completed successfully", timeout=30)
64-
assert ret != None and len(ret) > 0
64+
assert ret is not None and len(ret) > 0
6565

6666
assert disconnect_device(devCtrl, nodeId)
6767

@@ -75,20 +75,20 @@ def test_commissioning(device, controller):
7575

7676
@pytest.mark.ctrltest
7777
def test_lock_ctrl(device, controller):
78-
assert controller != None
78+
assert controller is not None
7979
devCtrl = controller
8080

8181
setupPayload = get_setup_payload(device)
82-
assert setupPayload != None
82+
assert setupPayload is not None
8383

8484
commissionable_device = discover_device(devCtrl, setupPayload)
85-
assert commissionable_device != None
85+
assert commissionable_device is not None
8686

8787
nodeId = connect_device(setupPayload, commissionable_device)
88-
assert nodeId != None
88+
assert nodeId is not None
8989

9090
ret = device.wait_for_output("Commissioning completed successfully", timeout=30)
91-
assert ret != None and len(ret) > 0
91+
assert ret is not None and len(ret) > 0
9292

9393
err, res = send_zcl_command(
9494
devCtrl, "DoorLock SetUser {} {} operationType={} userIndex={} userName={} userUniqueId={} "
@@ -105,7 +105,7 @@ def test_lock_ctrl(device, controller):
105105
ret = device.wait_for_output("Successfully set the user [mEndpointId={},index={},adjustedIndex=0]".format(
106106
LOCK_CTRL_TEST_ENDPOINT_ID,
107107
LOCK_CTRL_TEST_USER_INDEX))
108-
assert ret != None and len(ret) > 0
108+
assert ret is not None and len(ret) > 0
109109

110110
err, res = send_zcl_command(
111111
devCtrl, "DoorLock GetUser {} {} userIndex={}".format(nodeId, LOCK_CTRL_TEST_ENDPOINT_ID,
@@ -133,9 +133,12 @@ def test_lock_ctrl(device, controller):
133133
assert res.status == DoorLock.Enums.DlStatus.kSuccess
134134

135135
ret = device.wait_for_output("Successfully set the credential [mEndpointId={},index={},"
136-
"credentialType={},creator=1,modifier=1]".format(LOCK_CTRL_TEST_ENDPOINT_ID,
137-
LOCK_CTRL_TEST_USER_INDEX, DoorLock.Enums.DlCredentialType.kPin))
138-
assert ret != None and len(ret) > 0
136+
"credentialType={},creator=1,modifier=1]".format(
137+
LOCK_CTRL_TEST_ENDPOINT_ID,
138+
LOCK_CTRL_TEST_USER_INDEX,
139+
DoorLock.Enums.DlCredentialType.kPin
140+
))
141+
assert ret is not None and len(ret) > 0
139142

140143
err, res = send_zcl_command(
141144
devCtrl, "DoorLock GetCredentialStatus {} {} credential=struct:DlCredential(credentialType={},"
@@ -152,7 +155,7 @@ def test_lock_ctrl(device, controller):
152155
assert err == 0
153156

154157
ret = device.wait_for_output("Setting door lock state to \"Locked\" [endpointId={}]".format(LOCK_CTRL_TEST_ENDPOINT_ID))
155-
assert ret != None and len(ret) > 0
158+
assert ret is not None and len(ret) > 0
156159

157160
err, res = read_zcl_attribute(
158161
devCtrl, "DoorLock LockState {} {}".format(nodeId, LOCK_CTRL_TEST_ENDPOINT_ID))
@@ -165,7 +168,7 @@ def test_lock_ctrl(device, controller):
165168
assert err == 0
166169

167170
ret = device.wait_for_output("Setting door lock state to \"Unlocked\" [endpointId={}]".format(LOCK_CTRL_TEST_ENDPOINT_ID))
168-
assert ret != None and len(ret) > 0
171+
assert ret is not None and len(ret) > 0
169172

170173
err, res = read_zcl_attribute(
171174
devCtrl, "DoorLock LockState {} {}".format(nodeId, LOCK_CTRL_TEST_ENDPOINT_ID))

src/test_driver/openiotsdk/integration-tests/shell/test_app.py

+22-24
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,12 @@
1414
# limitations under the License.
1515

1616
import logging
17-
import re
18-
from time import sleep
17+
import os
1918

2019
import chip.native
2120
import pytest
2221
from chip import exceptions
2322
from chip.setup_payload import SetupPayload
24-
from common.utils import *
2523
from packaging import version
2624

2725
log = logging.getLogger(__name__)
@@ -72,9 +70,9 @@ def parse_boarding_codes_response(response):
7270
@pytest.mark.smoketest
7371
def test_smoke_test(device):
7472
ret = device.wait_for_output("Open IoT SDK shell example application start")
75-
assert ret != None and len(ret) > 0
73+
assert ret is not None and len(ret) > 0
7674
ret = device.wait_for_output("Open IoT SDK shell example application run")
77-
assert ret != None and len(ret) > 0
75+
assert ret is not None and len(ret) > 0
7876

7977

8078
@pytest.mark.ctrltest
@@ -84,64 +82,64 @@ def test_command_check(device):
8482
except exceptions.ChipStackException as ex:
8583
log.error("CHIP initialization failed {}".format(ex))
8684
assert False
87-
except:
85+
except Exception:
8886
log.error("CHIP initialization failed")
8987
assert False
9088

9189
ret = device.wait_for_output("Open IoT SDK shell example application start")
92-
assert ret != None and len(ret) > 0
90+
assert ret is not None and len(ret) > 0
9391
ret = device.wait_for_output("Open IoT SDK shell example application run")
94-
assert ret != None and len(ret) > 0
92+
assert ret is not None and len(ret) > 0
9593

9694
# Help
9795
ret = device.send(command="help", expected_output="Done")
98-
assert ret != None and len(ret) > 1
96+
assert ret is not None and len(ret) > 1
9997
shell_commands = get_shell_command(ret[1:-1])
10098
assert set(SHELL_COMMAND_NAME) == set(shell_commands)
10199

102100
# Echo
103101
ret = device.send(command="echo Hello", expected_output="Done")
104-
assert ret != None and len(ret) > 1
102+
assert ret is not None and len(ret) > 1
105103
assert "Hello" in ret[-2]
106104

107105
# Log
108106
ret = device.send(command="log Hello", expected_output="Done")
109-
assert ret != None and len(ret) > 1
107+
assert ret is not None and len(ret) > 1
110108
assert "[INF] [TOO] Hello" in ret[-2]
111109

112110
# Rand
113111
ret = device.send(command="rand", expected_output="Done")
114-
assert ret != None and len(ret) > 1
112+
assert ret is not None and len(ret) > 1
115113
assert ret[-2].rstrip().isdigit()
116114

117115
# Base64
118116
hex_string = "1234"
119117
ret = device.send(command="base64 encode {}".format(
120118
hex_string), expected_output="Done")
121-
assert ret != None and len(ret) > 1
119+
assert ret is not None and len(ret) > 1
122120
base64code = ret[-2]
123121
ret = device.send(command="base64 decode {}".format(
124122
base64code), expected_output="Done")
125-
assert ret != None and len(ret) > 1
123+
assert ret is not None and len(ret) > 1
126124
assert ret[-2].rstrip() == hex_string
127125

128126
# Version
129127
ret = device.send(command="version", expected_output="Done")
130-
assert ret != None and len(ret) > 1
128+
assert ret is not None and len(ret) > 1
131129
assert "CHIP" in ret[-2].split()[0]
132130
app_version = ret[-2].split()[1]
133131
assert isinstance(version.parse(app_version), version.Version)
134132

135133
# Config
136134
ret = device.send(command="config", expected_output="Done")
137-
assert ret != None and len(ret) > 2
135+
assert ret is not None and len(ret) > 2
138136

139137
config = parse_config_response(ret[1:-1])
140138

141139
for param_name, value in config.items():
142140
ret = device.send(command="config {}".format(
143141
param_name), expected_output="Done")
144-
assert ret != None and len(ret) > 1
142+
assert ret is not None and len(ret) > 1
145143
if "discriminator" in param_name:
146144
assert int(ret[-2].split()[0], 16) == value
147145
else:
@@ -150,23 +148,23 @@ def test_command_check(device):
150148
new_value = int(config['discriminator']) + 1
151149
ret = device.send(command="config discriminator {}".format(
152150
new_value), expected_output="Done")
153-
assert ret != None and len(ret) > 1
151+
assert ret is not None and len(ret) > 1
154152
assert "Setup discriminator set to: {}".format(new_value) in ret[-2]
155153

156154
ret = device.send(command="config discriminator", expected_output="Done")
157-
assert ret != None and len(ret) > 1
155+
assert ret is not None and len(ret) > 1
158156
assert int(ret[-2].split()[0], 16) == new_value
159157

160158
# Onboardingcodes
161159
ret = device.send(command="onboardingcodes none", expected_output="Done")
162-
assert ret != None and len(ret) > 2
160+
assert ret is not None and len(ret) > 2
163161

164162
boarding_codes = parse_boarding_codes_response(ret[1:-1])
165163

166164
for param, value in boarding_codes.items():
167165
ret = device.send(command="onboardingcodes none {}".format(
168166
param), expected_output="Done")
169-
assert ret != None and len(ret) > 1
167+
assert ret is not None and len(ret) > 1
170168
assert value == ret[-2].strip()
171169

172170
try:
@@ -175,16 +173,16 @@ def test_command_check(device):
175173
except exceptions.ChipStackError as ex:
176174
log.error(ex.msg)
177175
assert False
178-
assert device_details != None and len(device_details) != 0
176+
assert device_details is not None and len(device_details) != 0
179177

180178
try:
181179
device_details = dict(SetupPayload().ParseManualPairingCode(
182180
boarding_codes['manualpairingcode']).attributes)
183181
except exceptions.ChipStackError as ex:
184182
log.error(ex.msg)
185183
assert False
186-
assert device_details != None and len(device_details) != 0
184+
assert device_details is not None and len(device_details) != 0
187185

188186
# Exit - should be the last check
189187
ret = device.send(command="exit", expected_output="Goodbye")
190-
assert ret != None and len(ret) > 0
188+
assert ret is not None and len(ret) > 0

0 commit comments

Comments
 (0)