14
14
# limitations under the License.
15
15
16
16
import logging
17
- import re
18
- from time import sleep
17
+ import os
19
18
20
19
import chip .native
21
20
import pytest
22
21
from chip import exceptions
23
22
from chip .setup_payload import SetupPayload
24
- from common .utils import *
25
23
from packaging import version
26
24
27
25
log = logging .getLogger (__name__ )
@@ -72,9 +70,9 @@ def parse_boarding_codes_response(response):
72
70
@pytest .mark .smoketest
73
71
def test_smoke_test (device ):
74
72
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
76
74
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
78
76
79
77
80
78
@pytest .mark .ctrltest
@@ -84,64 +82,64 @@ def test_command_check(device):
84
82
except exceptions .ChipStackException as ex :
85
83
log .error ("CHIP initialization failed {}" .format (ex ))
86
84
assert False
87
- except :
85
+ except Exception :
88
86
log .error ("CHIP initialization failed" )
89
87
assert False
90
88
91
89
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
93
91
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
95
93
96
94
# Help
97
95
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
99
97
shell_commands = get_shell_command (ret [1 :- 1 ])
100
98
assert set (SHELL_COMMAND_NAME ) == set (shell_commands )
101
99
102
100
# Echo
103
101
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
105
103
assert "Hello" in ret [- 2 ]
106
104
107
105
# Log
108
106
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
110
108
assert "[INF] [TOO] Hello" in ret [- 2 ]
111
109
112
110
# Rand
113
111
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
115
113
assert ret [- 2 ].rstrip ().isdigit ()
116
114
117
115
# Base64
118
116
hex_string = "1234"
119
117
ret = device .send (command = "base64 encode {}" .format (
120
118
hex_string ), expected_output = "Done" )
121
- assert ret != None and len (ret ) > 1
119
+ assert ret is not None and len (ret ) > 1
122
120
base64code = ret [- 2 ]
123
121
ret = device .send (command = "base64 decode {}" .format (
124
122
base64code ), expected_output = "Done" )
125
- assert ret != None and len (ret ) > 1
123
+ assert ret is not None and len (ret ) > 1
126
124
assert ret [- 2 ].rstrip () == hex_string
127
125
128
126
# Version
129
127
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
131
129
assert "CHIP" in ret [- 2 ].split ()[0 ]
132
130
app_version = ret [- 2 ].split ()[1 ]
133
131
assert isinstance (version .parse (app_version ), version .Version )
134
132
135
133
# Config
136
134
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
138
136
139
137
config = parse_config_response (ret [1 :- 1 ])
140
138
141
139
for param_name , value in config .items ():
142
140
ret = device .send (command = "config {}" .format (
143
141
param_name ), expected_output = "Done" )
144
- assert ret != None and len (ret ) > 1
142
+ assert ret is not None and len (ret ) > 1
145
143
if "discriminator" in param_name :
146
144
assert int (ret [- 2 ].split ()[0 ], 16 ) == value
147
145
else :
@@ -150,23 +148,23 @@ def test_command_check(device):
150
148
new_value = int (config ['discriminator' ]) + 1
151
149
ret = device .send (command = "config discriminator {}" .format (
152
150
new_value ), expected_output = "Done" )
153
- assert ret != None and len (ret ) > 1
151
+ assert ret is not None and len (ret ) > 1
154
152
assert "Setup discriminator set to: {}" .format (new_value ) in ret [- 2 ]
155
153
156
154
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
158
156
assert int (ret [- 2 ].split ()[0 ], 16 ) == new_value
159
157
160
158
# Onboardingcodes
161
159
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
163
161
164
162
boarding_codes = parse_boarding_codes_response (ret [1 :- 1 ])
165
163
166
164
for param , value in boarding_codes .items ():
167
165
ret = device .send (command = "onboardingcodes none {}" .format (
168
166
param ), expected_output = "Done" )
169
- assert ret != None and len (ret ) > 1
167
+ assert ret is not None and len (ret ) > 1
170
168
assert value == ret [- 2 ].strip ()
171
169
172
170
try :
@@ -175,16 +173,16 @@ def test_command_check(device):
175
173
except exceptions .ChipStackError as ex :
176
174
log .error (ex .msg )
177
175
assert False
178
- assert device_details != None and len (device_details ) != 0
176
+ assert device_details is not None and len (device_details ) != 0
179
177
180
178
try :
181
179
device_details = dict (SetupPayload ().ParseManualPairingCode (
182
180
boarding_codes ['manualpairingcode' ]).attributes )
183
181
except exceptions .ChipStackError as ex :
184
182
log .error (ex .msg )
185
183
assert False
186
- assert device_details != None and len (device_details ) != 0
184
+ assert device_details is not None and len (device_details ) != 0
187
185
188
186
# Exit - should be the last check
189
187
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