blob: 6b5becc197134923bf7886aeb85d8fe16aee9648 [file] [log] [blame]
Mark De Ruyter1a7ae572018-03-02 15:35:36 -08001#!/usr/bin/env python3
Ang Li73697b32015-12-03 00:41:53 +00002#
tturney1bdf77d2015-12-28 17:46:13 -08003# Copyright 2016 Google, Inc.
Ang Li73697b32015-12-03 00:41:53 +00004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
Ang Li5bd83f32016-05-23 14:39:38 -070017import logging
Girish Moturucf4dccd2018-08-27 12:22:00 -070018import os
James Mattis5a5dd492020-05-14 13:09:43 -070019import re
xianyuanjia0431ba32018-12-14 09:56:42 -080020import shutil
Girish Moturucf4dccd2018-08-27 12:22:00 -070021import time
Ang Li73697b32015-12-03 00:41:53 +000022
David Sue4cd9c22019-03-26 18:07:26 -070023from collections import namedtuple
Ang Li73697b32015-12-03 00:41:53 +000024from enum import IntEnum
25from queue import Empty
26
Ang Li82522812016-06-02 13:57:21 -070027from acts import asserts
Xianyuan Jia0e39e552019-01-24 17:17:47 -080028from acts import context
Ang Li374d7602016-02-08 17:27:27 -080029from acts import signals
Ang Lifee28402016-07-13 13:43:29 -070030from acts import utils
Ang Li2d3fe982016-06-08 10:00:43 -070031from acts.controllers import attenuator
Bindu Mahadev7e5dc682019-02-01 16:53:34 -080032from acts.controllers.ap_lib import hostapd_security
33from acts.controllers.ap_lib import hostapd_ap_preset
Girish Moturucf4dccd2018-08-27 12:22:00 -070034from acts.controllers.ap_lib.hostapd_constants import BAND_2G
35from acts.controllers.ap_lib.hostapd_constants import BAND_5G
Roshan Pius5fd42eb2021-01-21 12:26:31 -080036from acts_contrib.test_utils.net import connectivity_const as cconsts
Xianyuan Jia63751fb2020-11-17 00:07:40 +000037from acts_contrib.test_utils.tel import tel_defines
Roshan Pius5fd42eb2021-01-21 12:26:31 -080038from acts_contrib.test_utils.wifi import wifi_constants
39from acts_contrib.test_utils.wifi.aware import aware_test_utils as autils
Ang Li73697b32015-12-03 00:41:53 +000040
Bindu Mahadev1d3991e2017-03-20 18:06:54 -070041# Default timeout used for reboot, toggle WiFi and Airplane mode,
42# for the system to settle down after the operation.
43DEFAULT_TIMEOUT = 10
Ang Li73697b32015-12-03 00:41:53 +000044# Number of seconds to wait for events that are supposed to happen quickly.
45# Like onSuccess for start background scan and confirmation on wifi state
46# change.
47SHORT_TIMEOUT = 30
Bindu Mahadev7060a9f2018-05-04 13:48:12 -070048ROAMING_TIMEOUT = 30
Preetesh Barrettoe8c428b2019-02-14 09:15:44 -080049WIFI_CONNECTION_TIMEOUT_DEFAULT = 30
Ang Li73697b32015-12-03 00:41:53 +000050# Speed of light in m/s.
51SPEED_OF_LIGHT = 299792458
52
Qi Jiang8b443672018-03-16 14:46:50 -070053DEFAULT_PING_ADDR = "https://www.google.com/robots.txt"
Ang Li73697b32015-12-03 00:41:53 +000054
Girish Moturuddc0d382020-08-24 12:08:41 -070055CNSS_DIAG_CONFIG_PATH = "/data/vendor/wifi/cnss_diag/"
56CNSS_DIAG_CONFIG_FILE = "cnss_diag.conf"
57
Girish Moturu36348a32019-12-10 08:41:54 -080058ROAMING_ATTN = {
Omar El Ayach8c017902020-10-18 10:26:57 -070059 "AP1_on_AP2_off": [0, 0, 95, 95],
60 "AP1_off_AP2_on": [95, 95, 0, 0],
61 "default": [0, 0, 0, 0]
62}
Ang Li82522812016-06-02 13:57:21 -070063
Xianyuan Jia0e39e552019-01-24 17:17:47 -080064
Ang Li73697b32015-12-03 00:41:53 +000065class WifiEnums():
66
Omar El Ayach8c017902020-10-18 10:26:57 -070067 SSID_KEY = "SSID" # Used for Wifi & SoftAp
Roshan Piusc999e5e2018-11-09 10:59:52 -080068 SSID_PATTERN_KEY = "ssidPattern"
Bindu Mahadev4c94b532019-01-09 12:20:10 -080069 NETID_KEY = "network_id"
Omar El Ayach8c017902020-10-18 10:26:57 -070070 BSSID_KEY = "BSSID" # Used for Wifi & SoftAp
Roshan Piusc999e5e2018-11-09 10:59:52 -080071 BSSID_PATTERN_KEY = "bssidPattern"
Omar El Ayach8c017902020-10-18 10:26:57 -070072 PWD_KEY = "password" # Used for Wifi & SoftAp
Ang Li73697b32015-12-03 00:41:53 +000073 frequency_key = "frequency"
Omar El Ayach8c017902020-10-18 10:26:57 -070074 HIDDEN_KEY = "hiddenSSID" # Used for Wifi & SoftAp
Roshan Piusd1204442018-11-12 12:20:39 -080075 IS_APP_INTERACTION_REQUIRED = "isAppInteractionRequired"
76 IS_USER_INTERACTION_REQUIRED = "isUserInteractionRequired"
Roshan Pius55fb7c42020-04-03 14:47:18 -070077 IS_SUGGESTION_METERED = "isMetered"
Roshan Piusd1204442018-11-12 12:20:39 -080078 PRIORITY = "priority"
Omar El Ayach8c017902020-10-18 10:26:57 -070079 SECURITY = "security" # Used for Wifi & SoftAp
Ang Li73697b32015-12-03 00:41:53 +000080
leslce9cf6d2020-02-19 16:37:07 +080081 # Used for SoftAp
lesl6d30a172020-03-05 15:05:22 +080082 AP_BAND_KEY = "apBand"
83 AP_CHANNEL_KEY = "apChannel"
84 AP_MAXCLIENTS_KEY = "MaxNumberOfClients"
85 AP_SHUTDOWNTIMEOUT_KEY = "ShutdownTimeoutMillis"
86 AP_SHUTDOWNTIMEOUTENABLE_KEY = "AutoShutdownEnabled"
87 AP_CLIENTCONTROL_KEY = "ClientControlByUserEnabled"
88 AP_ALLOWEDLIST_KEY = "AllowedClientList"
89 AP_BLOCKEDLIST_KEY = "BlockedClientList"
90
leslce9cf6d2020-02-19 16:37:07 +080091 WIFI_CONFIG_SOFTAP_BAND_2G = 1
92 WIFI_CONFIG_SOFTAP_BAND_5G = 2
93 WIFI_CONFIG_SOFTAP_BAND_2G_5G = 3
94 WIFI_CONFIG_SOFTAP_BAND_6G = 4
95 WIFI_CONFIG_SOFTAP_BAND_2G_6G = 5
96 WIFI_CONFIG_SOFTAP_BAND_5G_6G = 6
97 WIFI_CONFIG_SOFTAP_BAND_ANY = 7
98
99 # DO NOT USE IT for new test case! Replaced by WIFI_CONFIG_SOFTAP_BAND_
100 WIFI_CONFIG_APBAND_2G = WIFI_CONFIG_SOFTAP_BAND_2G
101 WIFI_CONFIG_APBAND_5G = WIFI_CONFIG_SOFTAP_BAND_5G
102 WIFI_CONFIG_APBAND_AUTO = WIFI_CONFIG_SOFTAP_BAND_2G_5G
103
104 WIFI_CONFIG_APBAND_2G_OLD = 0
105 WIFI_CONFIG_APBAND_5G_OLD = 1
106 WIFI_CONFIG_APBAND_AUTO_OLD = -1
Ang Li73697b32015-12-03 00:41:53 +0000107
Ang Li82522812016-06-02 13:57:21 -0700108 WIFI_WPS_INFO_PBC = 0
109 WIFI_WPS_INFO_DISPLAY = 1
110 WIFI_WPS_INFO_KEYPAD = 2
111 WIFI_WPS_INFO_LABEL = 3
112 WIFI_WPS_INFO_INVALID = 4
Ang Li73697b32015-12-03 00:41:53 +0000113
lesl6d30a172020-03-05 15:05:22 +0800114 class SoftApSecurityType():
115 OPEN = "NONE"
116 WPA2 = "WPA2_PSK"
117 WPA3_SAE_TRANSITION = "WPA3_SAE_TRANSITION"
118 WPA3_SAE = "WPA3_SAE"
119
Ang Li73697b32015-12-03 00:41:53 +0000120 class CountryCode():
Girish Moturue648b6a2021-03-04 13:52:15 -0800121 AUSTRALIA = "AU"
Ang Li73697b32015-12-03 00:41:53 +0000122 CHINA = "CN"
Girish Moturua5ef35d2020-10-19 14:58:01 -0700123 GERMANY = "DE"
Ang Li73697b32015-12-03 00:41:53 +0000124 JAPAN = "JP"
125 UK = "GB"
126 US = "US"
127 UNKNOWN = "UNKNOWN"
128
129 # Start of Macros for EAP
130 # EAP types
131 class Eap(IntEnum):
132 NONE = -1
133 PEAP = 0
Ang Li82522812016-06-02 13:57:21 -0700134 TLS = 1
Ang Li73697b32015-12-03 00:41:53 +0000135 TTLS = 2
Ang Li82522812016-06-02 13:57:21 -0700136 PWD = 3
137 SIM = 4
138 AKA = 5
139 AKA_PRIME = 6
140 UNAUTH_TLS = 7
Ang Li73697b32015-12-03 00:41:53 +0000141
142 # EAP Phase2 types
143 class EapPhase2(IntEnum):
Ang Li82522812016-06-02 13:57:21 -0700144 NONE = 0
145 PAP = 1
146 MSCHAP = 2
147 MSCHAPV2 = 3
148 GTC = 4
Ang Li73697b32015-12-03 00:41:53 +0000149
150 class Enterprise:
Ang Li82522812016-06-02 13:57:21 -0700151 # Enterprise Config Macros
152 EMPTY_VALUE = "NULL"
153 EAP = "eap"
154 PHASE2 = "phase2"
155 IDENTITY = "identity"
156 ANON_IDENTITY = "anonymous_identity"
157 PASSWORD = "password"
158 SUBJECT_MATCH = "subject_match"
Ang Li73697b32015-12-03 00:41:53 +0000159 ALTSUBJECT_MATCH = "altsubject_match"
160 DOM_SUFFIX_MATCH = "domain_suffix_match"
Ang Li82522812016-06-02 13:57:21 -0700161 CLIENT_CERT = "client_cert"
162 CA_CERT = "ca_cert"
163 ENGINE = "engine"
164 ENGINE_ID = "engine_id"
165 PRIVATE_KEY_ID = "key_id"
166 REALM = "realm"
167 PLMN = "plmn"
168 FQDN = "FQDN"
169 FRIENDLY_NAME = "providerFriendlyName"
170 ROAMING_IDS = "roamingConsortiumIds"
Jimmy Chen7baec622020-06-23 19:00:33 +0800171 OCSP = "ocsp"
Omar El Ayach8c017902020-10-18 10:26:57 -0700172
Ang Li73697b32015-12-03 00:41:53 +0000173 # End of Macros for EAP
174
175 # Macros for wifi p2p.
176 WIFI_P2P_SERVICE_TYPE_ALL = 0
177 WIFI_P2P_SERVICE_TYPE_BONJOUR = 1
178 WIFI_P2P_SERVICE_TYPE_UPNP = 2
179 WIFI_P2P_SERVICE_TYPE_VENDOR_SPECIFIC = 255
180
181 class ScanResult:
182 CHANNEL_WIDTH_20MHZ = 0
183 CHANNEL_WIDTH_40MHZ = 1
184 CHANNEL_WIDTH_80MHZ = 2
185 CHANNEL_WIDTH_160MHZ = 3
186 CHANNEL_WIDTH_80MHZ_PLUS_MHZ = 4
187
188 # Macros for wifi rtt.
189 class RttType(IntEnum):
Ang Li82522812016-06-02 13:57:21 -0700190 TYPE_ONE_SIDED = 1
191 TYPE_TWO_SIDED = 2
Ang Li73697b32015-12-03 00:41:53 +0000192
193 class RttPeerType(IntEnum):
Ang Li82522812016-06-02 13:57:21 -0700194 PEER_TYPE_AP = 1
195 PEER_TYPE_STA = 2 # Requires NAN.
196 PEER_P2P_GO = 3
197 PEER_P2P_CLIENT = 4
198 PEER_NAN = 5
Ang Li73697b32015-12-03 00:41:53 +0000199
200 class RttPreamble(IntEnum):
Ang Li82522812016-06-02 13:57:21 -0700201 PREAMBLE_LEGACY = 0x01
202 PREAMBLE_HT = 0x02
203 PREAMBLE_VHT = 0x04
Ang Li73697b32015-12-03 00:41:53 +0000204
205 class RttBW(IntEnum):
Ang Li82522812016-06-02 13:57:21 -0700206 BW_5_SUPPORT = 0x01
207 BW_10_SUPPORT = 0x02
208 BW_20_SUPPORT = 0x04
209 BW_40_SUPPORT = 0x08
210 BW_80_SUPPORT = 0x10
Ang Li73697b32015-12-03 00:41:53 +0000211 BW_160_SUPPORT = 0x20
212
213 class Rtt(IntEnum):
Ang Li82522812016-06-02 13:57:21 -0700214 STATUS_SUCCESS = 0
215 STATUS_FAILURE = 1
216 STATUS_FAIL_NO_RSP = 2
217 STATUS_FAIL_REJECTED = 3
218 STATUS_FAIL_NOT_SCHEDULED_YET = 4
219 STATUS_FAIL_TM_TIMEOUT = 5
220 STATUS_FAIL_AP_ON_DIFF_CHANNEL = 6
221 STATUS_FAIL_NO_CAPABILITY = 7
222 STATUS_ABORTED = 8
223 STATUS_FAIL_INVALID_TS = 9
224 STATUS_FAIL_PROTOCOL = 10
225 STATUS_FAIL_SCHEDULE = 11
226 STATUS_FAIL_BUSY_TRY_LATER = 12
227 STATUS_INVALID_REQ = 13
228 STATUS_NO_WIFI = 14
229 STATUS_FAIL_FTM_PARAM_OVERRIDE = 15
Ang Li73697b32015-12-03 00:41:53 +0000230
Ang Li82522812016-06-02 13:57:21 -0700231 REASON_UNSPECIFIED = -1
232 REASON_NOT_AVAILABLE = -2
233 REASON_INVALID_LISTENER = -3
234 REASON_INVALID_REQUEST = -4
Ang Li73697b32015-12-03 00:41:53 +0000235
236 class RttParam:
237 device_type = "deviceType"
238 request_type = "requestType"
239 BSSID = "bssid"
240 channel_width = "channelWidth"
241 frequency = "frequency"
242 center_freq0 = "centerFreq0"
243 center_freq1 = "centerFreq1"
244 number_burst = "numberBurst"
245 interval = "interval"
246 num_samples_per_burst = "numSamplesPerBurst"
247 num_retries_per_measurement_frame = "numRetriesPerMeasurementFrame"
248 num_retries_per_FTMR = "numRetriesPerFTMR"
249 lci_request = "LCIRequest"
250 lcr_request = "LCRRequest"
251 burst_timeout = "burstTimeout"
252 preamble = "preamble"
253 bandwidth = "bandwidth"
254 margin = "margin"
255
256 RTT_MARGIN_OF_ERROR = {
257 RttBW.BW_80_SUPPORT: 2,
258 RttBW.BW_40_SUPPORT: 5,
259 RttBW.BW_20_SUPPORT: 5
260 }
261
262 # Macros as specified in the WifiScanner code.
Ang Li82522812016-06-02 13:57:21 -0700263 WIFI_BAND_UNSPECIFIED = 0 # not specified
264 WIFI_BAND_24_GHZ = 1 # 2.4 GHz band
265 WIFI_BAND_5_GHZ = 2 # 5 GHz band without DFS channels
266 WIFI_BAND_5_GHZ_DFS_ONLY = 4 # 5 GHz band with DFS channels
267 WIFI_BAND_5_GHZ_WITH_DFS = 6 # 5 GHz band with DFS channels
268 WIFI_BAND_BOTH = 3 # both bands without DFS channels
269 WIFI_BAND_BOTH_WITH_DFS = 7 # both bands with DFS channels
Ang Li73697b32015-12-03 00:41:53 +0000270
271 REPORT_EVENT_AFTER_BUFFER_FULL = 0
272 REPORT_EVENT_AFTER_EACH_SCAN = 1
273 REPORT_EVENT_FULL_SCAN_RESULT = 2
274
xshuaabcfeb2018-02-14 11:43:24 -0800275 SCAN_TYPE_LOW_LATENCY = 0
276 SCAN_TYPE_LOW_POWER = 1
277 SCAN_TYPE_HIGH_ACCURACY = 2
278
Ang Li73697b32015-12-03 00:41:53 +0000279 # US Wifi frequencies
Omar El Ayach8c017902020-10-18 10:26:57 -0700280 ALL_2G_FREQUENCIES = [
281 2412, 2417, 2422, 2427, 2432, 2437, 2442, 2447, 2452, 2457, 2462
282 ]
283 DFS_5G_FREQUENCIES = [
284 5260, 5280, 5300, 5320, 5500, 5520, 5540, 5560, 5580, 5600, 5620, 5640,
285 5660, 5680, 5700, 5720
286 ]
287 NONE_DFS_5G_FREQUENCIES = [
288 5180, 5200, 5220, 5240, 5745, 5765, 5785, 5805, 5825
289 ]
Ang Li73697b32015-12-03 00:41:53 +0000290 ALL_5G_FREQUENCIES = DFS_5G_FREQUENCIES + NONE_DFS_5G_FREQUENCIES
291
292 band_to_frequencies = {
Ang Li82522812016-06-02 13:57:21 -0700293 WIFI_BAND_24_GHZ: ALL_2G_FREQUENCIES,
294 WIFI_BAND_5_GHZ: NONE_DFS_5G_FREQUENCIES,
295 WIFI_BAND_5_GHZ_DFS_ONLY: DFS_5G_FREQUENCIES,
296 WIFI_BAND_5_GHZ_WITH_DFS: ALL_5G_FREQUENCIES,
297 WIFI_BAND_BOTH: ALL_2G_FREQUENCIES + NONE_DFS_5G_FREQUENCIES,
298 WIFI_BAND_BOTH_WITH_DFS: ALL_5G_FREQUENCIES + ALL_2G_FREQUENCIES
Ang Li73697b32015-12-03 00:41:53 +0000299 }
300
301 # All Wifi frequencies to channels lookup.
302 freq_to_channel = {
303 2412: 1,
304 2417: 2,
305 2422: 3,
306 2427: 4,
307 2432: 5,
308 2437: 6,
309 2442: 7,
310 2447: 8,
311 2452: 9,
312 2457: 10,
313 2462: 11,
314 2467: 12,
315 2472: 13,
316 2484: 14,
317 4915: 183,
318 4920: 184,
319 4925: 185,
320 4935: 187,
321 4940: 188,
322 4945: 189,
323 4960: 192,
324 4980: 196,
325 5035: 7,
326 5040: 8,
327 5045: 9,
328 5055: 11,
329 5060: 12,
330 5080: 16,
331 5170: 34,
332 5180: 36,
333 5190: 38,
334 5200: 40,
335 5210: 42,
336 5220: 44,
337 5230: 46,
338 5240: 48,
339 5260: 52,
340 5280: 56,
341 5300: 60,
342 5320: 64,
343 5500: 100,
344 5520: 104,
345 5540: 108,
346 5560: 112,
347 5580: 116,
348 5600: 120,
349 5620: 124,
350 5640: 128,
351 5660: 132,
352 5680: 136,
353 5700: 140,
354 5745: 149,
355 5765: 153,
356 5785: 157,
Omar El Ayachdb8463b2020-05-15 18:08:23 -0700357 5795: 159,
Ang Li73697b32015-12-03 00:41:53 +0000358 5805: 161,
359 5825: 165,
360 }
361
362 # All Wifi channels to frequencies lookup.
363 channel_2G_to_freq = {
364 1: 2412,
365 2: 2417,
366 3: 2422,
367 4: 2427,
368 5: 2432,
369 6: 2437,
370 7: 2442,
371 8: 2447,
372 9: 2452,
373 10: 2457,
374 11: 2462,
375 12: 2467,
376 13: 2472,
377 14: 2484
378 }
379
380 channel_5G_to_freq = {
381 183: 4915,
382 184: 4920,
383 185: 4925,
384 187: 4935,
385 188: 4940,
386 189: 4945,
387 192: 4960,
388 196: 4980,
389 7: 5035,
390 8: 5040,
391 9: 5045,
392 11: 5055,
393 12: 5060,
394 16: 5080,
395 34: 5170,
396 36: 5180,
397 38: 5190,
398 40: 5200,
399 42: 5210,
400 44: 5220,
401 46: 5230,
402 48: 5240,
Omar El Ayach8c017902020-10-18 10:26:57 -0700403 50: 5250,
Ang Li73697b32015-12-03 00:41:53 +0000404 52: 5260,
405 56: 5280,
406 60: 5300,
407 64: 5320,
408 100: 5500,
409 104: 5520,
410 108: 5540,
411 112: 5560,
412 116: 5580,
413 120: 5600,
414 124: 5620,
415 128: 5640,
416 132: 5660,
417 136: 5680,
418 140: 5700,
419 149: 5745,
Omar El Ayachdb8463b2020-05-15 18:08:23 -0700420 151: 5755,
Ang Li73697b32015-12-03 00:41:53 +0000421 153: 5765,
Omar El Ayachdb8463b2020-05-15 18:08:23 -0700422 155: 5775,
Ang Li73697b32015-12-03 00:41:53 +0000423 157: 5785,
Omar El Ayachdb8463b2020-05-15 18:08:23 -0700424 159: 5795,
Ang Li73697b32015-12-03 00:41:53 +0000425 161: 5805,
426 165: 5825
427 }
428
Ang Li82522812016-06-02 13:57:21 -0700429
Ang Li73697b32015-12-03 00:41:53 +0000430class WifiChannelBase:
431 ALL_2G_FREQUENCIES = []
432 DFS_5G_FREQUENCIES = []
433 NONE_DFS_5G_FREQUENCIES = []
434 ALL_5G_FREQUENCIES = DFS_5G_FREQUENCIES + NONE_DFS_5G_FREQUENCIES
435 MIX_CHANNEL_SCAN = []
436
437 def band_to_freq(self, band):
438 _band_to_frequencies = {
Omar El Ayach8c017902020-10-18 10:26:57 -0700439 WifiEnums.WIFI_BAND_24_GHZ:
440 self.ALL_2G_FREQUENCIES,
441 WifiEnums.WIFI_BAND_5_GHZ:
442 self.NONE_DFS_5G_FREQUENCIES,
443 WifiEnums.WIFI_BAND_5_GHZ_DFS_ONLY:
444 self.DFS_5G_FREQUENCIES,
445 WifiEnums.WIFI_BAND_5_GHZ_WITH_DFS:
446 self.ALL_5G_FREQUENCIES,
Ang Li82522812016-06-02 13:57:21 -0700447 WifiEnums.WIFI_BAND_BOTH:
448 self.ALL_2G_FREQUENCIES + self.NONE_DFS_5G_FREQUENCIES,
449 WifiEnums.WIFI_BAND_BOTH_WITH_DFS:
450 self.ALL_5G_FREQUENCIES + self.ALL_2G_FREQUENCIES
Ang Li73697b32015-12-03 00:41:53 +0000451 }
452 return _band_to_frequencies[band]
453
Ang Li82522812016-06-02 13:57:21 -0700454
Ang Li73697b32015-12-03 00:41:53 +0000455class WifiChannelUS(WifiChannelBase):
456 # US Wifi frequencies
Omar El Ayach8c017902020-10-18 10:26:57 -0700457 ALL_2G_FREQUENCIES = [
458 2412, 2417, 2422, 2427, 2432, 2437, 2442, 2447, 2452, 2457, 2462
459 ]
460 NONE_DFS_5G_FREQUENCIES = [
461 5180, 5200, 5220, 5240, 5745, 5765, 5785, 5805, 5825
462 ]
463 MIX_CHANNEL_SCAN = [
464 2412, 2437, 2462, 5180, 5200, 5280, 5260, 5300, 5500, 5320, 5520, 5560,
465 5700, 5745, 5805
466 ]
Ang Li73697b32015-12-03 00:41:53 +0000467
468 def __init__(self, model=None):
Omar El Ayach8c017902020-10-18 10:26:57 -0700469 self.DFS_5G_FREQUENCIES = [
470 5260, 5280, 5300, 5320, 5500, 5520, 5540, 5560, 5580, 5600, 5620,
471 5640, 5660, 5680, 5700, 5720
472 ]
Girish Moturu0c567b02017-08-11 16:20:01 -0700473 self.ALL_5G_FREQUENCIES = self.DFS_5G_FREQUENCIES + self.NONE_DFS_5G_FREQUENCIES
Ang Li73697b32015-12-03 00:41:53 +0000474
Bindu Mahadevff295782019-02-08 16:17:48 -0800475
Girish Moturuf02fa1d2017-05-21 09:51:23 +0530476class WifiReferenceNetworks:
477 """ Class to parse and return networks of different band and
478 auth type from reference_networks
479 """
480 def __init__(self, obj):
481 self.reference_networks = obj
482 self.WIFI_2G = "2g"
483 self.WIFI_5G = "5g"
484
485 self.secure_networks_2g = []
486 self.secure_networks_5g = []
487 self.open_networks_2g = []
488 self.open_networks_5g = []
489 self._parse_networks()
490
491 def _parse_networks(self):
492 for network in self.reference_networks:
493 for key in network:
494 if key == self.WIFI_2G:
495 if "password" in network[key]:
496 self.secure_networks_2g.append(network[key])
497 else:
498 self.open_networks_2g.append(network[key])
499 else:
500 if "password" in network[key]:
501 self.secure_networks_5g.append(network[key])
502 else:
503 self.open_networks_5g.append(network[key])
504
505 def return_2g_secure_networks(self):
506 return self.secure_networks_2g
507
508 def return_5g_secure_networks(self):
509 return self.secure_networks_5g
510
511 def return_2g_open_networks(self):
512 return self.open_networks_2g
513
514 def return_5g_open_networks(self):
515 return self.open_networks_5g
516
517 def return_secure_networks(self):
518 return self.secure_networks_2g + self.secure_networks_5g
519
520 def return_open_networks(self):
521 return self.open_networks_2g + self.open_networks_5g
522
Ang Li82522812016-06-02 13:57:21 -0700523
524def _assert_on_fail_handler(func, assert_on_fail, *args, **kwargs):
525 """Wrapper function that handles the bahevior of assert_on_fail.
526
527 When assert_on_fail is True, let all test signals through, which can
528 terminate test cases directly. When assert_on_fail is False, the wrapper
529 raises no test signals and reports operation status by returning True or
530 False.
531
532 Args:
533 func: The function to wrap. This function reports operation status by
534 raising test signals.
535 assert_on_fail: A boolean that specifies if the output of the wrapper
536 is test signal based or return value based.
537 args: Positional args for func.
538 kwargs: Name args for func.
539
540 Returns:
541 If assert_on_fail is True, returns True/False to signal operation
542 status, otherwise return nothing.
543 """
544 try:
545 func(*args, **kwargs)
546 if not assert_on_fail:
547 return True
548 except signals.TestSignal:
549 if assert_on_fail:
550 raise
551 return False
552
553
554def assert_network_in_list(target, network_list):
555 """Makes sure a specified target Wi-Fi network exists in a list of Wi-Fi
556 networks.
557
558 Args:
559 target: A dict representing a Wi-Fi network.
560 E.g. {WifiEnums.SSID_KEY: "SomeNetwork"}
561 network_list: A list of dicts, each representing a Wi-Fi network.
562 """
563 match_results = match_networks(target, network_list)
564 asserts.assert_true(
565 match_results, "Target network %s, does not exist in network list %s" %
566 (target, network_list))
567
568
Ang Li73697b32015-12-03 00:41:53 +0000569def match_networks(target_params, networks):
570 """Finds the WiFi networks that match a given set of parameters in a list
571 of WiFi networks.
572
Girish Moturubc48d9f2016-11-01 13:24:14 -0700573 To be considered a match, the network should contain every key-value pair
574 of target_params
Ang Li73697b32015-12-03 00:41:53 +0000575
576 Args:
Girish Moturubc48d9f2016-11-01 13:24:14 -0700577 target_params: A dict with 1 or more key-value pairs representing a Wi-Fi network.
578 E.g { 'SSID': 'wh_ap1_5g', 'BSSID': '30:b5:c2:33:e4:47' }
Ang Li73697b32015-12-03 00:41:53 +0000579 networks: A list of dict objects representing WiFi networks.
580
581 Returns:
582 The networks that match the target parameters.
583 """
584 results = []
Betty Zhou3caa0982017-02-22 19:26:20 -0800585 asserts.assert_true(target_params,
586 "Expected networks object 'target_params' is empty")
Ang Li73697b32015-12-03 00:41:53 +0000587 for n in networks:
Girish Moturubc48d9f2016-11-01 13:24:14 -0700588 add_network = 1
Ang Li9a66de72016-02-08 15:26:38 -0800589 for k, v in target_params.items():
590 if k not in n:
Girish Moturubc48d9f2016-11-01 13:24:14 -0700591 add_network = 0
592 break
Ang Li9a66de72016-02-08 15:26:38 -0800593 if n[k] != v:
Girish Moturubc48d9f2016-11-01 13:24:14 -0700594 add_network = 0
595 break
596 if add_network:
Ang Li73697b32015-12-03 00:41:53 +0000597 results.append(n)
598 return results
599
Bindu Mahadevff295782019-02-08 16:17:48 -0800600
Roshan Pius93b519c2018-05-09 12:07:11 -0700601def wait_for_wifi_state(ad, state, assert_on_fail=True):
602 """Waits for the device to transition to the specified wifi state
603
604 Args:
605 ad: An AndroidDevice object.
606 state: Wifi state to wait for.
607 assert_on_fail: If True, error checks in this function will raise test
608 failure signals.
609
610 Returns:
611 If assert_on_fail is False, function returns True if the device transitions
612 to the specified state, False otherwise. If assert_on_fail is True, no return value.
613 """
Omar El Ayach8c017902020-10-18 10:26:57 -0700614 return _assert_on_fail_handler(_wait_for_wifi_state,
615 assert_on_fail,
616 ad,
617 state=state)
Roshan Pius93b519c2018-05-09 12:07:11 -0700618
619
620def _wait_for_wifi_state(ad, state):
621 """Toggles the state of wifi.
622
623 TestFailure signals are raised when something goes wrong.
624
625 Args:
626 ad: An AndroidDevice object.
627 state: Wifi state to wait for.
628 """
629 if state == ad.droid.wifiCheckState():
630 # Check if the state is already achieved, so we don't wait for the
631 # state change event by mistake.
632 return
633 ad.droid.wifiStartTrackingStateChange()
Omar El Ayach8c017902020-10-18 10:26:57 -0700634 fail_msg = "Device did not transition to Wi-Fi state to %s on %s." % (
635 state, ad.serial)
Roshan Pius93b519c2018-05-09 12:07:11 -0700636 try:
637 ad.ed.wait_for_event(wifi_constants.WIFI_STATE_CHANGED,
638 lambda x: x["data"]["enabled"] == state,
639 SHORT_TIMEOUT)
640 except Empty:
641 asserts.assert_equal(state, ad.droid.wifiCheckState(), fail_msg)
642 finally:
643 ad.droid.wifiStopTrackingStateChange()
Ang Li82522812016-06-02 13:57:21 -0700644
Bindu Mahadevff295782019-02-08 16:17:48 -0800645
Ang Li82522812016-06-02 13:57:21 -0700646def wifi_toggle_state(ad, new_state=None, assert_on_fail=True):
Ang Li6b557182015-11-11 17:19:17 -0800647 """Toggles the state of wifi.
Ang Li73697b32015-12-03 00:41:53 +0000648
Ang Li6b557182015-11-11 17:19:17 -0800649 Args:
650 ad: An AndroidDevice object.
651 new_state: Wifi state to set to. If None, opposite of the current state.
Ang Li82522812016-06-02 13:57:21 -0700652 assert_on_fail: If True, error checks in this function will raise test
653 failure signals.
Ang Li73697b32015-12-03 00:41:53 +0000654
Ang Li6b557182015-11-11 17:19:17 -0800655 Returns:
Ang Li82522812016-06-02 13:57:21 -0700656 If assert_on_fail is False, function returns True if the toggle was
657 successful, False otherwise. If assert_on_fail is True, no return value.
658 """
Omar El Ayach8c017902020-10-18 10:26:57 -0700659 return _assert_on_fail_handler(_wifi_toggle_state,
660 assert_on_fail,
661 ad,
662 new_state=new_state)
Ang Li82522812016-06-02 13:57:21 -0700663
664
665def _wifi_toggle_state(ad, new_state=None):
666 """Toggles the state of wifi.
667
668 TestFailure signals are raised when something goes wrong.
669
670 Args:
671 ad: An AndroidDevice object.
672 new_state: The state to set Wi-Fi to. If None, opposite of the current
673 state will be set.
Ang Li6b557182015-11-11 17:19:17 -0800674 """
Ang Li31b00782016-06-21 13:04:23 -0700675 if new_state is None:
676 new_state = not ad.droid.wifiCheckState()
Ang Lie5c85c92016-07-27 15:38:09 -0700677 elif new_state == ad.droid.wifiCheckState():
678 # Check if the new_state is already achieved, so we don't wait for the
679 # state change event by mistake.
680 return
681 ad.droid.wifiStartTrackingStateChange()
Ang Li31b00782016-06-21 13:04:23 -0700682 ad.log.info("Setting Wi-Fi state to %s.", new_state)
Roshan Pius5a027fa2018-05-04 13:59:38 -0700683 ad.ed.clear_all_events()
Ang Li31b00782016-06-21 13:04:23 -0700684 # Setting wifi state.
Ang Li6b557182015-11-11 17:19:17 -0800685 ad.droid.wifiToggleState(new_state)
Jaineel3bd9bea2019-12-13 12:44:17 -0800686 time.sleep(2)
Ang Lie2e93a22016-06-22 16:43:28 -0700687 fail_msg = "Failed to set Wi-Fi state to %s on %s." % (new_state,
688 ad.serial)
Ang Li73697b32015-12-03 00:41:53 +0000689 try:
Roshan Pius5a027fa2018-05-04 13:59:38 -0700690 ad.ed.wait_for_event(wifi_constants.WIFI_STATE_CHANGED,
691 lambda x: x["data"]["enabled"] == new_state,
692 SHORT_TIMEOUT)
Ang Li73697b32015-12-03 00:41:53 +0000693 except Empty:
Ang Li82522812016-06-02 13:57:21 -0700694 asserts.assert_equal(new_state, ad.droid.wifiCheckState(), fail_msg)
Ang Li6b557182015-11-11 17:19:17 -0800695 finally:
696 ad.droid.wifiStopTrackingStateChange()
697
Ang Li82522812016-06-02 13:57:21 -0700698
Ang Li6b557182015-11-11 17:19:17 -0800699def reset_wifi(ad):
Ang Li1179fa72016-06-16 09:44:06 -0700700 """Clears all saved Wi-Fi networks on a device.
701
702 This will turn Wi-Fi on.
Ang Li6b557182015-11-11 17:19:17 -0800703
704 Args:
705 ad: An AndroidDevice object.
706
Ang Li6b557182015-11-11 17:19:17 -0800707 """
Ang Li6b557182015-11-11 17:19:17 -0800708 networks = ad.droid.wifiGetConfiguredNetworks()
709 if not networks:
710 return
711 for n in networks:
712 ad.droid.wifiForgetNetwork(n['networkId'])
713 try:
Bindu Mahadev4e710362016-11-17 16:17:11 -0800714 event = ad.ed.pop_event(wifi_constants.WIFI_FORGET_NW_SUCCESS,
Ang Li82522812016-06-02 13:57:21 -0700715 SHORT_TIMEOUT)
Ang Li6b557182015-11-11 17:19:17 -0800716 except Empty:
Ang Li1179fa72016-06-16 09:44:06 -0700717 logging.warning("Could not confirm the removal of network %s.", n)
718 # Check again to see if there's any network left.
Betty Zhou3caa0982017-02-22 19:26:20 -0800719 asserts.assert_true(
720 not ad.droid.wifiGetConfiguredNetworks(),
721 "Failed to remove these configured Wi-Fi networks: %s" % networks)
Ang Li82522812016-06-02 13:57:21 -0700722
Ang Li73697b32015-12-03 00:41:53 +0000723
Bindu Mahadev1d3991e2017-03-20 18:06:54 -0700724def toggle_airplane_mode_on_and_off(ad):
725 """Turn ON and OFF Airplane mode.
Bindu Mahadev3c54c492017-02-15 16:00:08 -0800726
Bindu Mahadev1d3991e2017-03-20 18:06:54 -0700727 ad: An AndroidDevice object.
728 Returns: Assert if turning on/off Airplane mode fails.
Bindu Mahadev3c54c492017-02-15 16:00:08 -0800729
Bindu Mahadev1d3991e2017-03-20 18:06:54 -0700730 """
731 ad.log.debug("Toggling Airplane mode ON.")
Omar El Ayach8c017902020-10-18 10:26:57 -0700732 asserts.assert_true(utils.force_airplane_mode(ad, True),
733 "Can not turn on airplane mode on: %s" % ad.serial)
Bindu Mahadev1d3991e2017-03-20 18:06:54 -0700734 time.sleep(DEFAULT_TIMEOUT)
735 ad.log.debug("Toggling Airplane mode OFF.")
Omar El Ayach8c017902020-10-18 10:26:57 -0700736 asserts.assert_true(utils.force_airplane_mode(ad, False),
737 "Can not turn on airplane mode on: %s" % ad.serial)
Bindu Mahadev1d3991e2017-03-20 18:06:54 -0700738 time.sleep(DEFAULT_TIMEOUT)
Bindu Mahadev3c54c492017-02-15 16:00:08 -0800739
740
Bindu Mahadev1d3991e2017-03-20 18:06:54 -0700741def toggle_wifi_off_and_on(ad):
742 """Turn OFF and ON WiFi.
Bindu Mahadev3c54c492017-02-15 16:00:08 -0800743
Bindu Mahadev1d3991e2017-03-20 18:06:54 -0700744 ad: An AndroidDevice object.
745 Returns: Assert if turning off/on WiFi fails.
Bindu Mahadev3c54c492017-02-15 16:00:08 -0800746
Bindu Mahadev1d3991e2017-03-20 18:06:54 -0700747 """
748 ad.log.debug("Toggling wifi OFF.")
749 wifi_toggle_state(ad, False)
750 time.sleep(DEFAULT_TIMEOUT)
751 ad.log.debug("Toggling wifi ON.")
752 wifi_toggle_state(ad, True)
753 time.sleep(DEFAULT_TIMEOUT)
Bindu Mahadev3c54c492017-02-15 16:00:08 -0800754
755
Ang Li73697b32015-12-03 00:41:53 +0000756def wifi_forget_network(ad, net_ssid):
Ang Li8e767182015-12-09 17:29:24 -0800757 """Remove configured Wifi network on an android device.
Ang Li73697b32015-12-03 00:41:53 +0000758
Ang Li8e767182015-12-09 17:29:24 -0800759 Args:
760 ad: android_device object for forget network.
761 net_ssid: ssid of network to be forget
Ang Li73697b32015-12-03 00:41:53 +0000762
Ang Li8e767182015-12-09 17:29:24 -0800763 """
Girish Moturu40d7dc22016-11-02 12:14:56 -0700764 networks = ad.droid.wifiGetConfiguredNetworks()
Ang Li8e767182015-12-09 17:29:24 -0800765 if not networks:
766 return
767 for n in networks:
768 if net_ssid in n[WifiEnums.SSID_KEY]:
Girish Moturu40d7dc22016-11-02 12:14:56 -0700769 ad.droid.wifiForgetNetwork(n['networkId'])
Ang Li8e767182015-12-09 17:29:24 -0800770 try:
Bindu Mahadev4e710362016-11-17 16:17:11 -0800771 event = ad.ed.pop_event(wifi_constants.WIFI_FORGET_NW_SUCCESS,
Betty Zhou3caa0982017-02-22 19:26:20 -0800772 SHORT_TIMEOUT)
Ang Li8e767182015-12-09 17:29:24 -0800773 except Empty:
Girish Moturu1bf82302016-11-01 13:27:00 -0700774 asserts.fail("Failed to remove network %s." % n)
Ang Li73697b32015-12-03 00:41:53 +0000775
Ang Li82522812016-06-02 13:57:21 -0700776
Ang Li73697b32015-12-03 00:41:53 +0000777def wifi_test_device_init(ad):
778 """Initializes an android device for wifi testing.
779
780 0. Make sure SL4A connection is established on the android device.
781 1. Disable location service's WiFi scan.
782 2. Turn WiFi on.
783 3. Clear all saved networks.
784 4. Set country code to US.
785 5. Enable WiFi verbose logging.
786 6. Sync device time with computer time.
787 7. Turn off cellular data.
Ang Lifee28402016-07-13 13:43:29 -0700788 8. Turn off ambient display.
Ang Li73697b32015-12-03 00:41:53 +0000789 """
Ang Lifee28402016-07-13 13:43:29 -0700790 utils.require_sl4a((ad, ))
Ang Li73697b32015-12-03 00:41:53 +0000791 ad.droid.wifiScannerToggleAlwaysAvailable(False)
792 msg = "Failed to turn off location service's scan."
Ang Li82522812016-06-02 13:57:21 -0700793 asserts.assert_true(not ad.droid.wifiScannerIsAlwaysAvailable(), msg)
794 wifi_toggle_state(ad, True)
Ang Li6b557182015-11-11 17:19:17 -0800795 reset_wifi(ad)
Ang Li73697b32015-12-03 00:41:53 +0000796 ad.droid.wifiEnableVerboseLogging(1)
Ang Li8e767182015-12-09 17:29:24 -0800797 msg = "Failed to enable WiFi verbose logging."
Ang Li82522812016-06-02 13:57:21 -0700798 asserts.assert_equal(ad.droid.wifiGetVerboseLoggingLevel(), 1, msg)
Ang Li73697b32015-12-03 00:41:53 +0000799 # We don't verify the following settings since they are not critical.
Ang Lie2e93a22016-06-22 16:43:28 -0700800 # Set wpa_supplicant log level to EXCESSIVE.
Omar El Ayach8c017902020-10-18 10:26:57 -0700801 output = ad.adb.shell(
802 "wpa_cli -i wlan0 -p -g@android:wpa_wlan0 IFNAME="
803 "wlan0 log_level EXCESSIVE",
804 ignore_status=True)
Ang Lie2e93a22016-06-22 16:43:28 -0700805 ad.log.info("wpa_supplicant log change status: %s", output)
Ang Lifee28402016-07-13 13:43:29 -0700806 utils.sync_device_time(ad)
Ang Li0bf8e022016-01-04 17:34:48 -0800807 ad.droid.telephonyToggleDataConnection(False)
Roshan Pius48df08c2019-09-13 08:07:30 -0700808 set_wifi_country_code(ad, WifiEnums.CountryCode.US)
Ang Lifee28402016-07-13 13:43:29 -0700809 utils.set_ambient_display(ad, False)
Ang Li73697b32015-12-03 00:41:53 +0000810
Omar El Ayach8c017902020-10-18 10:26:57 -0700811
Roshan Pius48df08c2019-09-13 08:07:30 -0700812def set_wifi_country_code(ad, country_code):
813 """Sets the wifi country code on the device.
814
815 Args:
816 ad: An AndroidDevice object.
817 country_code: 2 letter ISO country code
codycaldwell35b87182020-01-16 14:08:01 -0800818
819 Raises:
820 An RpcException if unable to set the country code.
Roshan Pius48df08c2019-09-13 08:07:30 -0700821 """
Jaineelc5b56a62019-10-10 17:12:02 -0700822 try:
codycaldwell35b87182020-01-16 14:08:01 -0800823 ad.adb.shell("cmd wifi force-country-code enabled %s" % country_code)
Jaineel Mehtacbad5cc2020-11-19 21:38:18 +0000824 except Exception as e:
Jaineelc5b56a62019-10-10 17:12:02 -0700825 ad.droid.wifiSetCountryCode(WifiEnums.CountryCode.US)
Roshan Pius48df08c2019-09-13 08:07:30 -0700826
Ang Li82522812016-06-02 13:57:21 -0700827
Ang Li6b557182015-11-11 17:19:17 -0800828def start_wifi_connection_scan(ad):
Ang Li73697b32015-12-03 00:41:53 +0000829 """Starts a wifi connection scan and wait for results to become available.
830
831 Args:
Ang Li6b557182015-11-11 17:19:17 -0800832 ad: An AndroidDevice object.
Ang Li73697b32015-12-03 00:41:53 +0000833 """
Roshan Pius7f61f1c2018-01-24 18:36:49 -0800834 ad.ed.clear_all_events()
Ang Li6b557182015-11-11 17:19:17 -0800835 ad.droid.wifiStartScan()
Ang Li82522812016-06-02 13:57:21 -0700836 try:
837 ad.ed.pop_event("WifiManagerScanResultsAvailable", 60)
838 except Empty:
839 asserts.fail("Wi-Fi results did not become available within 60s.")
840
Ang Li73697b32015-12-03 00:41:53 +0000841
Roshan Piuscb9bc482018-02-01 14:27:09 -0800842def start_wifi_connection_scan_and_return_status(ad):
843 """
844 Starts a wifi connection scan and wait for results to become available
845 or a scan failure to be reported.
846
847 Args:
848 ad: An AndroidDevice object.
849 Returns:
850 True: if scan succeeded & results are available
851 False: if scan failed
852 """
853 ad.ed.clear_all_events()
854 ad.droid.wifiStartScan()
855 try:
Omar El Ayach8c017902020-10-18 10:26:57 -0700856 events = ad.ed.pop_events("WifiManagerScan(ResultsAvailable|Failure)",
857 60)
Roshan Piuscb9bc482018-02-01 14:27:09 -0800858 except Empty:
859 asserts.fail(
860 "Wi-Fi scan results/failure did not become available within 60s.")
861 # If there are multiple matches, we check for atleast one success.
862 for event in events:
863 if event["name"] == "WifiManagerScanResultsAvailable":
864 return True
865 elif event["name"] == "WifiManagerScanFailure":
866 ad.log.debug("Scan failure received")
867 return False
868
869
Omar El Ayach8c017902020-10-18 10:26:57 -0700870def start_wifi_connection_scan_and_check_for_network(ad,
871 network_ssid,
Roshan Piuscb9bc482018-02-01 14:27:09 -0800872 max_tries=3):
Roshan Pius7f61f1c2018-01-24 18:36:49 -0800873 """
874 Start connectivity scans & checks if the |network_ssid| is seen in
875 scan results. The method performs a max of |max_tries| connectivity scans
876 to find the network.
877
878 Args:
879 ad: An AndroidDevice object.
880 network_ssid: SSID of the network we are looking for.
881 max_tries: Number of scans to try.
882 Returns:
883 True: if network_ssid is found in scan results.
884 False: if network_ssid is not found in scan results.
885 """
886 for num_tries in range(max_tries):
Roshan Piuscb9bc482018-02-01 14:27:09 -0800887 if start_wifi_connection_scan_and_return_status(ad):
888 scan_results = ad.droid.wifiGetScanResults()
Omar El Ayach8c017902020-10-18 10:26:57 -0700889 match_results = match_networks({WifiEnums.SSID_KEY: network_ssid},
890 scan_results)
Roshan Piuscb9bc482018-02-01 14:27:09 -0800891 if len(match_results) > 0:
892 return True
Roshan Pius7f61f1c2018-01-24 18:36:49 -0800893 return False
894
895
Omar El Ayach8c017902020-10-18 10:26:57 -0700896def start_wifi_connection_scan_and_ensure_network_found(
897 ad, network_ssid, max_tries=3):
Roshan Pius7f61f1c2018-01-24 18:36:49 -0800898 """
899 Start connectivity scans & ensure the |network_ssid| is seen in
900 scan results. The method performs a max of |max_tries| connectivity scans
901 to find the network.
902 This method asserts on failure!
903
904 Args:
905 ad: An AndroidDevice object.
906 network_ssid: SSID of the network we are looking for.
907 max_tries: Number of scans to try.
908 """
909 ad.log.info("Starting scans to ensure %s is present", network_ssid)
910 assert_msg = "Failed to find " + network_ssid + " in scan results" \
911 " after " + str(max_tries) + " tries"
Omar El Ayach8c017902020-10-18 10:26:57 -0700912 asserts.assert_true(
913 start_wifi_connection_scan_and_check_for_network(
914 ad, network_ssid, max_tries), assert_msg)
Roshan Pius7f61f1c2018-01-24 18:36:49 -0800915
916
Omar El Ayach8c017902020-10-18 10:26:57 -0700917def start_wifi_connection_scan_and_ensure_network_not_found(
918 ad, network_ssid, max_tries=3):
Roshan Pius7f61f1c2018-01-24 18:36:49 -0800919 """
920 Start connectivity scans & ensure the |network_ssid| is not seen in
921 scan results. The method performs a max of |max_tries| connectivity scans
922 to find the network.
923 This method asserts on failure!
924
925 Args:
926 ad: An AndroidDevice object.
927 network_ssid: SSID of the network we are looking for.
928 max_tries: Number of scans to try.
929 """
930 ad.log.info("Starting scans to ensure %s is not present", network_ssid)
931 assert_msg = "Found " + network_ssid + " in scan results" \
932 " after " + str(max_tries) + " tries"
Omar El Ayach8c017902020-10-18 10:26:57 -0700933 asserts.assert_false(
934 start_wifi_connection_scan_and_check_for_network(
935 ad, network_ssid, max_tries), assert_msg)
Roshan Pius7f61f1c2018-01-24 18:36:49 -0800936
937
Ang Li73697b32015-12-03 00:41:53 +0000938def start_wifi_background_scan(ad, scan_setting):
939 """Starts wifi background scan.
940
941 Args:
942 ad: android_device object to initiate connection on.
943 scan_setting: A dict representing the settings of the scan.
944
945 Returns:
946 If scan was started successfully, event data of success event is returned.
947 """
Girish Moturu40d7dc22016-11-02 12:14:56 -0700948 idx = ad.droid.wifiScannerStartBackgroundScan(scan_setting)
949 event = ad.ed.pop_event("WifiScannerScan{}onSuccess".format(idx),
Betty Zhou3caa0982017-02-22 19:26:20 -0800950 SHORT_TIMEOUT)
Ang Li73697b32015-12-03 00:41:53 +0000951 return event['data']
952
Ang Li82522812016-06-02 13:57:21 -0700953
Girish Moturu38b993c2021-03-25 13:03:50 -0700954def start_wifi_tethering(ad, ssid, password, band=None, hidden=None,
955 security=None):
Ang Li73697b32015-12-03 00:41:53 +0000956 """Starts wifi tethering on an android_device.
957
958 Args:
959 ad: android_device to start wifi tethering on.
960 ssid: The SSID the soft AP should broadcast.
961 password: The password the soft AP should use.
962 band: The band the soft AP should be set on. It should be either
963 WifiEnums.WIFI_CONFIG_APBAND_2G or WifiEnums.WIFI_CONFIG_APBAND_5G.
Roshan Piusce821342018-01-10 11:03:04 -0800964 hidden: boolean to indicate if the AP needs to be hidden or not.
Girish Moturu38b993c2021-03-25 13:03:50 -0700965 security: security type of softap.
Ang Li73697b32015-12-03 00:41:53 +0000966
967 Returns:
Girish Moturu3581d612016-11-02 15:08:51 -0700968 No return value. Error checks in this function will raise test failure signals
Ang Li73697b32015-12-03 00:41:53 +0000969 """
Ang Li82522812016-06-02 13:57:21 -0700970 config = {WifiEnums.SSID_KEY: ssid}
Ang Li73697b32015-12-03 00:41:53 +0000971 if password:
972 config[WifiEnums.PWD_KEY] = password
973 if band:
lesl6d30a172020-03-05 15:05:22 +0800974 config[WifiEnums.AP_BAND_KEY] = band
Roshan Piusce821342018-01-10 11:03:04 -0800975 if hidden:
Omar El Ayach8c017902020-10-18 10:26:57 -0700976 config[WifiEnums.HIDDEN_KEY] = hidden
Girish Moturu38b993c2021-03-25 13:03:50 -0700977 if security:
978 config[WifiEnums.SECURITY] = security
Omar El Ayach8c017902020-10-18 10:26:57 -0700979 asserts.assert_true(ad.droid.wifiSetWifiApConfiguration(config),
980 "Failed to update WifiAp Configuration")
Girish Moturu40d7dc22016-11-02 12:14:56 -0700981 ad.droid.wifiStartTrackingTetherStateChange()
982 ad.droid.connectivityStartTethering(tel_defines.TETHERING_WIFI, False)
Rebecca Silbersteina2889852016-08-11 00:48:53 -0700983 try:
Girish Moturu40d7dc22016-11-02 12:14:56 -0700984 ad.ed.pop_event("ConnectivityManagerOnTetheringStarted")
985 ad.ed.wait_for_event("TetherStateChanged",
Betty Zhou3caa0982017-02-22 19:26:20 -0800986 lambda x: x["data"]["ACTIVE_TETHER"], 30)
Ang Li76216d12016-09-20 14:51:57 -0700987 ad.log.debug("Tethering started successfully.")
Rebecca Silbersteina2889852016-08-11 00:48:53 -0700988 except Empty:
989 msg = "Failed to receive confirmation of wifi tethering starting"
990 asserts.fail(msg)
991 finally:
Girish Moturu40d7dc22016-11-02 12:14:56 -0700992 ad.droid.wifiStopTrackingTetherStateChange()
Ang Li73697b32015-12-03 00:41:53 +0000993
Bindu Mahadevff295782019-02-08 16:17:48 -0800994
Omar El Ayach8c017902020-10-18 10:26:57 -0700995def save_wifi_soft_ap_config(ad,
996 wifi_config,
997 band=None,
998 hidden=None,
999 security=None,
1000 password=None,
1001 channel=None,
1002 max_clients=None,
lesl6d30a172020-03-05 15:05:22 +08001003 shutdown_timeout_enable=None,
1004 shutdown_timeout_millis=None,
1005 client_control_enable=None,
Omar El Ayach8c017902020-10-18 10:26:57 -07001006 allowedList=None,
1007 blockedList=None):
lesl6d30a172020-03-05 15:05:22 +08001008 """ Save a soft ap configuration and verified
1009 Args:
1010 ad: android_device to set soft ap configuration.
1011 wifi_config: a soft ap configuration object, at least include SSID.
1012 band: specifies the band for the soft ap.
1013 hidden: specifies the soft ap need to broadcast its SSID or not.
1014 security: specifies the security type for the soft ap.
1015 password: specifies the password for the soft ap.
1016 channel: specifies the channel for the soft ap.
1017 max_clients: specifies the maximum connected client number.
1018 shutdown_timeout_enable: specifies the auto shut down enable or not.
1019 shutdown_timeout_millis: specifies the shut down timeout value.
1020 client_control_enable: specifies the client control enable or not.
1021 allowedList: specifies allowed clients list.
1022 blockedList: specifies blocked clients list.
1023 """
1024 if security and password:
Omar El Ayach8c017902020-10-18 10:26:57 -07001025 wifi_config[WifiEnums.SECURITY] = security
1026 wifi_config[WifiEnums.PWD_KEY] = password
Girish Moturu528b5442018-06-07 10:48:14 -07001027 if band:
lesl6d30a172020-03-05 15:05:22 +08001028 wifi_config[WifiEnums.AP_BAND_KEY] = band
Girish Moturu528b5442018-06-07 10:48:14 -07001029 if hidden:
1030 wifi_config[WifiEnums.HIDDEN_KEY] = hidden
lesl6d30a172020-03-05 15:05:22 +08001031 if channel and band:
1032 wifi_config[WifiEnums.AP_BAND_KEY] = band
1033 wifi_config[WifiEnums.AP_CHANNEL_KEY] = channel
1034 if max_clients:
1035 wifi_config[WifiEnums.AP_MAXCLIENTS_KEY] = max_clients
1036 if shutdown_timeout_enable:
1037 wifi_config[
1038 WifiEnums.AP_SHUTDOWNTIMEOUTENABLE_KEY] = shutdown_timeout_enable
1039 if shutdown_timeout_millis:
Omar El Ayach8c017902020-10-18 10:26:57 -07001040 wifi_config[WifiEnums.AP_SHUTDOWNTIMEOUT_KEY] = shutdown_timeout_millis
lesl6d30a172020-03-05 15:05:22 +08001041 if client_control_enable:
1042 wifi_config[WifiEnums.AP_CLIENTCONTROL_KEY] = client_control_enable
1043 if allowedList:
1044 wifi_config[WifiEnums.AP_ALLOWEDLIST_KEY] = allowedList
1045 if blockedList:
1046 wifi_config[WifiEnums.AP_BLOCKEDLIST_KEY] = blockedList
1047
1048 if WifiEnums.AP_CHANNEL_KEY in wifi_config and wifi_config[
Omar El Ayach8c017902020-10-18 10:26:57 -07001049 WifiEnums.AP_CHANNEL_KEY] == 0:
lesl6d30a172020-03-05 15:05:22 +08001050 del wifi_config[WifiEnums.AP_CHANNEL_KEY]
1051
1052 if WifiEnums.SECURITY in wifi_config and wifi_config[
Omar El Ayach8c017902020-10-18 10:26:57 -07001053 WifiEnums.SECURITY] == WifiEnums.SoftApSecurityType.OPEN:
lesl6d30a172020-03-05 15:05:22 +08001054 del wifi_config[WifiEnums.SECURITY]
1055 del wifi_config[WifiEnums.PWD_KEY]
1056
Girish Moturu528b5442018-06-07 10:48:14 -07001057 asserts.assert_true(ad.droid.wifiSetWifiApConfiguration(wifi_config),
1058 "Failed to set WifiAp Configuration")
1059
1060 wifi_ap = ad.droid.wifiGetApConfiguration()
1061 asserts.assert_true(
1062 wifi_ap[WifiEnums.SSID_KEY] == wifi_config[WifiEnums.SSID_KEY],
lesl6d30a172020-03-05 15:05:22 +08001063 "Hotspot SSID doesn't match")
1064 if WifiEnums.SECURITY in wifi_config:
1065 asserts.assert_true(
1066 wifi_ap[WifiEnums.SECURITY] == wifi_config[WifiEnums.SECURITY],
1067 "Hotspot Security doesn't match")
1068 if WifiEnums.PWD_KEY in wifi_config:
1069 asserts.assert_true(
1070 wifi_ap[WifiEnums.PWD_KEY] == wifi_config[WifiEnums.PWD_KEY],
1071 "Hotspot Password doesn't match")
Girish Moturu528b5442018-06-07 10:48:14 -07001072
lesl6d30a172020-03-05 15:05:22 +08001073 if WifiEnums.HIDDEN_KEY in wifi_config:
1074 asserts.assert_true(
1075 wifi_ap[WifiEnums.HIDDEN_KEY] == wifi_config[WifiEnums.HIDDEN_KEY],
1076 "Hotspot hidden setting doesn't match")
1077
1078 if WifiEnums.AP_BAND_KEY in wifi_config:
1079 asserts.assert_true(
Omar El Ayach8c017902020-10-18 10:26:57 -07001080 wifi_ap[WifiEnums.AP_BAND_KEY] == wifi_config[
1081 WifiEnums.AP_BAND_KEY], "Hotspot Band doesn't match")
lesl6d30a172020-03-05 15:05:22 +08001082 if WifiEnums.AP_CHANNEL_KEY in wifi_config:
1083 asserts.assert_true(
1084 wifi_ap[WifiEnums.AP_CHANNEL_KEY] == wifi_config[
Omar El Ayach8c017902020-10-18 10:26:57 -07001085 WifiEnums.AP_CHANNEL_KEY], "Hotspot Channel doesn't match")
lesl6d30a172020-03-05 15:05:22 +08001086 if WifiEnums.AP_MAXCLIENTS_KEY in wifi_config:
1087 asserts.assert_true(
1088 wifi_ap[WifiEnums.AP_MAXCLIENTS_KEY] == wifi_config[
Omar El Ayach8c017902020-10-18 10:26:57 -07001089 WifiEnums.AP_MAXCLIENTS_KEY],
1090 "Hotspot Max Clients doesn't match")
lesl6d30a172020-03-05 15:05:22 +08001091 if WifiEnums.AP_SHUTDOWNTIMEOUTENABLE_KEY in wifi_config:
1092 asserts.assert_true(
1093 wifi_ap[WifiEnums.AP_SHUTDOWNTIMEOUTENABLE_KEY] == wifi_config[
Omar El Ayach8c017902020-10-18 10:26:57 -07001094 WifiEnums.AP_SHUTDOWNTIMEOUTENABLE_KEY],
lesl6d30a172020-03-05 15:05:22 +08001095 "Hotspot ShutDown feature flag doesn't match")
1096 if WifiEnums.AP_SHUTDOWNTIMEOUT_KEY in wifi_config:
1097 asserts.assert_true(
1098 wifi_ap[WifiEnums.AP_SHUTDOWNTIMEOUT_KEY] == wifi_config[
Omar El Ayach8c017902020-10-18 10:26:57 -07001099 WifiEnums.AP_SHUTDOWNTIMEOUT_KEY],
lesl6d30a172020-03-05 15:05:22 +08001100 "Hotspot ShutDown timeout setting doesn't match")
1101 if WifiEnums.AP_CLIENTCONTROL_KEY in wifi_config:
1102 asserts.assert_true(
1103 wifi_ap[WifiEnums.AP_CLIENTCONTROL_KEY] == wifi_config[
Omar El Ayach8c017902020-10-18 10:26:57 -07001104 WifiEnums.AP_CLIENTCONTROL_KEY],
lesl6d30a172020-03-05 15:05:22 +08001105 "Hotspot Client control flag doesn't match")
1106 if WifiEnums.AP_ALLOWEDLIST_KEY in wifi_config:
1107 asserts.assert_true(
1108 wifi_ap[WifiEnums.AP_ALLOWEDLIST_KEY] == wifi_config[
Omar El Ayach8c017902020-10-18 10:26:57 -07001109 WifiEnums.AP_ALLOWEDLIST_KEY],
lesl6d30a172020-03-05 15:05:22 +08001110 "Hotspot Allowed List doesn't match")
1111 if WifiEnums.AP_BLOCKEDLIST_KEY in wifi_config:
1112 asserts.assert_true(
1113 wifi_ap[WifiEnums.AP_BLOCKEDLIST_KEY] == wifi_config[
Omar El Ayach8c017902020-10-18 10:26:57 -07001114 WifiEnums.AP_BLOCKEDLIST_KEY],
lesl6d30a172020-03-05 15:05:22 +08001115 "Hotspot Blocked List doesn't match")
Bindu Mahadevff295782019-02-08 16:17:48 -08001116
Omar El Ayach8c017902020-10-18 10:26:57 -07001117
Girish Moturu528b5442018-06-07 10:48:14 -07001118def start_wifi_tethering_saved_config(ad):
1119 """ Turn on wifi hotspot with a config that is already saved """
1120 ad.droid.wifiStartTrackingTetherStateChange()
1121 ad.droid.connectivityStartTethering(tel_defines.TETHERING_WIFI, False)
1122 try:
1123 ad.ed.pop_event("ConnectivityManagerOnTetheringStarted")
1124 ad.ed.wait_for_event("TetherStateChanged",
1125 lambda x: x["data"]["ACTIVE_TETHER"], 30)
1126 except:
1127 asserts.fail("Didn't receive wifi tethering starting confirmation")
1128 finally:
1129 ad.droid.wifiStopTrackingTetherStateChange()
Betty Zhou3caa0982017-02-22 19:26:20 -08001130
Bindu Mahadevff295782019-02-08 16:17:48 -08001131
Ang Li73697b32015-12-03 00:41:53 +00001132def stop_wifi_tethering(ad):
1133 """Stops wifi tethering on an android_device.
Ang Li73697b32015-12-03 00:41:53 +00001134 Args:
1135 ad: android_device to stop wifi tethering on.
1136 """
Girish Moturu40d7dc22016-11-02 12:14:56 -07001137 ad.droid.wifiStartTrackingTetherStateChange()
1138 ad.droid.connectivityStopTethering(tel_defines.TETHERING_WIFI)
Rebecca Silbersteina2889852016-08-11 00:48:53 -07001139 try:
Girish Moturu40d7dc22016-11-02 12:14:56 -07001140 ad.ed.pop_event("WifiManagerApDisabled", 30)
1141 ad.ed.wait_for_event("TetherStateChanged",
Betty Zhou3caa0982017-02-22 19:26:20 -08001142 lambda x: not x["data"]["ACTIVE_TETHER"], 30)
Rebecca Silbersteina2889852016-08-11 00:48:53 -07001143 except Empty:
1144 msg = "Failed to receive confirmation of wifi tethering stopping"
1145 asserts.fail(msg)
1146 finally:
Girish Moturu40d7dc22016-11-02 12:14:56 -07001147 ad.droid.wifiStopTrackingTetherStateChange()
Ang Li82522812016-06-02 13:57:21 -07001148
Ang Li76216d12016-09-20 14:51:57 -07001149
Roshan Pius58916a32016-06-16 16:26:44 -07001150def toggle_wifi_and_wait_for_reconnection(ad,
1151 network,
1152 num_of_tries=1,
1153 assert_on_fail=True):
1154 """Toggle wifi state and then wait for Android device to reconnect to
1155 the provided wifi network.
1156
1157 This expects the device to be already connected to the provided network.
1158
1159 Logic steps are
1160 1. Ensure that we're connected to the network.
1161 2. Turn wifi off.
1162 3. Wait for 10 seconds.
1163 4. Turn wifi on.
1164 5. Wait for the "connected" event, then confirm the connected ssid is the
1165 one requested.
1166
1167 Args:
1168 ad: android_device object to initiate connection on.
1169 network: A dictionary representing the network to await connection. The
1170 dictionary must have the key "SSID".
1171 num_of_tries: An integer that is the number of times to try before
1172 delaring failure. Default is 1.
1173 assert_on_fail: If True, error checks in this function will raise test
1174 failure signals.
1175
1176 Returns:
1177 If assert_on_fail is False, function returns True if the toggle was
1178 successful, False otherwise. If assert_on_fail is True, no return value.
1179 """
Omar El Ayach8c017902020-10-18 10:26:57 -07001180 return _assert_on_fail_handler(_toggle_wifi_and_wait_for_reconnection,
1181 assert_on_fail,
1182 ad,
1183 network,
1184 num_of_tries=num_of_tries)
Roshan Pius58916a32016-06-16 16:26:44 -07001185
1186
Girish Moturu5d9f4202019-12-03 15:29:21 -08001187def _toggle_wifi_and_wait_for_reconnection(ad, network, num_of_tries=3):
Roshan Pius58916a32016-06-16 16:26:44 -07001188 """Toggle wifi state and then wait for Android device to reconnect to
1189 the provided wifi network.
1190
1191 This expects the device to be already connected to the provided network.
1192
1193 Logic steps are
1194 1. Ensure that we're connected to the network.
1195 2. Turn wifi off.
1196 3. Wait for 10 seconds.
1197 4. Turn wifi on.
1198 5. Wait for the "connected" event, then confirm the connected ssid is the
1199 one requested.
1200
1201 This will directly fail a test if anything goes wrong.
1202
1203 Args:
1204 ad: android_device object to initiate connection on.
1205 network: A dictionary representing the network to await connection. The
1206 dictionary must have the key "SSID".
1207 num_of_tries: An integer that is the number of times to try before
1208 delaring failure. Default is 1.
1209 """
Roshan Pius58916a32016-06-16 16:26:44 -07001210 expected_ssid = network[WifiEnums.SSID_KEY]
1211 # First ensure that we're already connected to the provided network.
1212 verify_con = {WifiEnums.SSID_KEY: expected_ssid}
1213 verify_wifi_connection_info(ad, verify_con)
1214 # Now toggle wifi state and wait for the connection event.
1215 wifi_toggle_state(ad, False)
1216 time.sleep(10)
1217 wifi_toggle_state(ad, True)
1218 ad.droid.wifiStartTrackingStateChange()
1219 try:
1220 connect_result = None
1221 for i in range(num_of_tries):
1222 try:
Bindu Mahadev4e710362016-11-17 16:17:11 -08001223 connect_result = ad.ed.pop_event(wifi_constants.WIFI_CONNECTED,
Roshan Pius58916a32016-06-16 16:26:44 -07001224 30)
1225 break
1226 except Empty:
1227 pass
Omar El Ayach8c017902020-10-18 10:26:57 -07001228 asserts.assert_true(
1229 connect_result, "Failed to connect to Wi-Fi network %s on %s" %
1230 (network, ad.serial))
Betty Zhou3caa0982017-02-22 19:26:20 -08001231 logging.debug("Connection result on %s: %s.", ad.serial,
1232 connect_result)
Roshan Pius58916a32016-06-16 16:26:44 -07001233 actual_ssid = connect_result['data'][WifiEnums.SSID_KEY]
Omar El Ayach8c017902020-10-18 10:26:57 -07001234 asserts.assert_equal(
1235 actual_ssid, expected_ssid, "Connected to the wrong network on %s."
1236 "Expected %s, but got %s." %
1237 (ad.serial, expected_ssid, actual_ssid))
Betty Zhou3caa0982017-02-22 19:26:20 -08001238 logging.info("Connected to Wi-Fi network %s on %s", actual_ssid,
1239 ad.serial)
Roshan Pius58916a32016-06-16 16:26:44 -07001240 finally:
1241 ad.droid.wifiStopTrackingStateChange()
1242
1243
Omar El Ayach8c017902020-10-18 10:26:57 -07001244def wait_for_connect(ad,
1245 expected_ssid=None,
1246 expected_id=None,
1247 tries=2,
Oscar Shucb9af9b2019-05-02 20:01:49 +00001248 assert_on_fail=True):
Roshan Piusd1204442018-11-12 12:20:39 -08001249 """Wait for a connect event.
1250
1251 This will directly fail a test if anything goes wrong.
1252
1253 Args:
1254 ad: An Android device object.
1255 expected_ssid: SSID of the network to connect to.
1256 expected_id: Network Id of the network to connect to.
1257 tries: An integer that is the number of times to try before failing.
1258 assert_on_fail: If True, error checks in this function will raise test
1259 failure signals.
1260
1261 Returns:
1262 Returns a value only if assert_on_fail is false.
1263 Returns True if the connection was successful, False otherwise.
1264 """
Omar El Ayach8c017902020-10-18 10:26:57 -07001265 return _assert_on_fail_handler(_wait_for_connect, assert_on_fail, ad,
1266 expected_ssid, expected_id, tries)
Roshan Piusd1204442018-11-12 12:20:39 -08001267
1268
Oscar Shucb9af9b2019-05-02 20:01:49 +00001269def _wait_for_connect(ad, expected_ssid=None, expected_id=None, tries=2):
Roshan Piusd1204442018-11-12 12:20:39 -08001270 """Wait for a connect event.
1271
1272 Args:
1273 ad: An Android device object.
1274 expected_ssid: SSID of the network to connect to.
1275 expected_id: Network Id of the network to connect to.
1276 tries: An integer that is the number of times to try before failing.
1277 """
1278 ad.droid.wifiStartTrackingStateChange()
1279 try:
Omar El Ayach8c017902020-10-18 10:26:57 -07001280 connect_result = _wait_for_connect_event(ad,
1281 ssid=expected_ssid,
1282 id=expected_id,
1283 tries=tries)
1284 asserts.assert_true(
1285 connect_result,
1286 "Failed to connect to Wi-Fi network %s" % expected_ssid)
Roshan Piusd1204442018-11-12 12:20:39 -08001287 ad.log.debug("Wi-Fi connection result: %s.", connect_result)
1288 actual_ssid = connect_result['data'][WifiEnums.SSID_KEY]
1289 if expected_ssid:
1290 asserts.assert_equal(actual_ssid, expected_ssid,
1291 "Connected to the wrong network")
1292 actual_id = connect_result['data'][WifiEnums.NETID_KEY]
1293 if expected_id:
1294 asserts.assert_equal(actual_id, expected_id,
1295 "Connected to the wrong network")
1296 ad.log.info("Connected to Wi-Fi network %s.", actual_ssid)
1297 except Empty:
1298 asserts.fail("Failed to start connection process to %s" %
1299 expected_ssid)
1300 except Exception as error:
1301 ad.log.error("Failed to connect to %s with error %s", expected_ssid,
1302 error)
1303 raise signals.TestFailure("Failed to connect to %s network" %
1304 expected_ssid)
1305 finally:
1306 ad.droid.wifiStopTrackingStateChange()
1307
1308
Oscar Shucb9af9b2019-05-02 20:01:49 +00001309def _wait_for_connect_event(ad, ssid=None, id=None, tries=1):
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001310 """Wait for a connect event on queue and pop when available.
1311
1312 Args:
1313 ad: An Android device object.
Bindu Mahadevaf983c92017-03-27 12:00:37 -07001314 ssid: SSID of the network to connect to.
1315 id: Network Id of the network to connect to.
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001316 tries: An integer that is the number of times to try before failing.
1317
1318 Returns:
1319 A dict with details of the connection data, which looks like this:
1320 {
1321 'time': 1485460337798,
1322 'name': 'WifiNetworkConnected',
1323 'data': {
1324 'rssi': -27,
1325 'is_24ghz': True,
1326 'mac_address': '02:00:00:00:00:00',
1327 'network_id': 1,
1328 'BSSID': '30:b5:c2:33:d3:fc',
1329 'ip_address': 117483712,
1330 'link_speed': 54,
1331 'supplicant_state': 'completed',
1332 'hidden_ssid': False,
1333 'SSID': 'wh_ap1_2g',
1334 'is_5ghz': False}
1335 }
1336
1337 """
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001338 conn_result = None
Bindu Mahadevaf983c92017-03-27 12:00:37 -07001339
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001340 # If ssid and network id is None, just wait for any connect event.
Bindu Mahadevaf983c92017-03-27 12:00:37 -07001341 if id is None and ssid is None:
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001342 for i in range(tries):
1343 try:
Omar El Ayach8c017902020-10-18 10:26:57 -07001344 conn_result = ad.ed.pop_event(wifi_constants.WIFI_CONNECTED,
1345 30)
Bindu Mahadevaf983c92017-03-27 12:00:37 -07001346 break
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001347 except Empty:
1348 pass
1349 else:
Omar El Ayach8c017902020-10-18 10:26:57 -07001350 # If ssid or network id is specified, wait for specific connect event.
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001351 for i in range(tries):
1352 try:
Omar El Ayach8c017902020-10-18 10:26:57 -07001353 conn_result = ad.ed.pop_event(wifi_constants.WIFI_CONNECTED,
1354 30)
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001355 if id and conn_result['data'][WifiEnums.NETID_KEY] == id:
1356 break
1357 elif ssid and conn_result['data'][WifiEnums.SSID_KEY] == ssid:
1358 break
1359 except Empty:
1360 pass
Bindu Mahadevaf983c92017-03-27 12:00:37 -07001361
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001362 return conn_result
1363
Bindu Mahadevff295782019-02-08 16:17:48 -08001364
Roshan Piusffc29912019-01-18 13:39:49 -08001365def wait_for_disconnect(ad, timeout=10):
1366 """Wait for a disconnect event within the specified timeout.
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001367
1368 Args:
1369 ad: Android device object.
Roshan Piusffc29912019-01-18 13:39:49 -08001370 timeout: Timeout in seconds.
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001371
1372 """
1373 try:
1374 ad.droid.wifiStartTrackingStateChange()
Roshan Piusffc29912019-01-18 13:39:49 -08001375 event = ad.ed.pop_event("WifiNetworkDisconnected", timeout)
Roshan Piusbf7e3982018-02-15 12:37:41 -08001376 except Empty:
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001377 raise signals.TestFailure("Device did not disconnect from the network")
Roshan Piusffc29912019-01-18 13:39:49 -08001378 finally:
1379 ad.droid.wifiStopTrackingStateChange()
1380
1381
1382def ensure_no_disconnect(ad, duration=10):
1383 """Ensure that there is no disconnect for the specified duration.
1384
1385 Args:
1386 ad: Android device object.
1387 duration: Duration in seconds.
1388
1389 """
1390 try:
1391 ad.droid.wifiStartTrackingStateChange()
1392 event = ad.ed.pop_event("WifiNetworkDisconnected", duration)
1393 raise signals.TestFailure("Device disconnected from the network")
1394 except Empty:
1395 pass
1396 finally:
1397 ad.droid.wifiStopTrackingStateChange()
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001398
1399
Omar El Ayach8c017902020-10-18 10:26:57 -07001400def connect_to_wifi_network(ad,
1401 network,
1402 assert_on_fail=True,
1403 check_connectivity=True,
1404 hidden=False):
Bindu Mahadev3876ae52017-12-19 14:22:19 -08001405 """Connection logic for open and psk wifi networks.
1406
1407 Args:
Jong Wook Kim92356922018-02-06 18:32:49 -08001408 ad: AndroidDevice to use for connection
1409 network: network info of the network to connect to
1410 assert_on_fail: If true, errors from wifi_connect will raise
1411 test failure signals.
Joe Brennan48c3f692019-04-11 08:30:16 -07001412 hidden: Is the Wifi network hidden.
Bindu Mahadev3876ae52017-12-19 14:22:19 -08001413 """
Joe Brennan48c3f692019-04-11 08:30:16 -07001414 if hidden:
1415 start_wifi_connection_scan_and_ensure_network_not_found(
1416 ad, network[WifiEnums.SSID_KEY])
1417 else:
1418 start_wifi_connection_scan_and_ensure_network_found(
1419 ad, network[WifiEnums.SSID_KEY])
Jong Wook Kim92356922018-02-06 18:32:49 -08001420 wifi_connect(ad,
1421 network,
1422 num_of_tries=3,
Bindu Mahadev27c2d292018-03-19 16:13:08 -07001423 assert_on_fail=assert_on_fail,
1424 check_connectivity=check_connectivity)
Bindu Mahadev3876ae52017-12-19 14:22:19 -08001425
1426
1427def connect_to_wifi_network_with_id(ad, network_id, network_ssid):
1428 """Connect to the given network using network id and verify SSID.
1429
1430 Args:
1431 network_id: int Network Id of the network.
1432 network_ssid: string SSID of the network.
1433
1434 Returns: True if connect using network id was successful;
1435 False otherwise.
1436
1437 """
Jong Wook Kim92356922018-02-06 18:32:49 -08001438 start_wifi_connection_scan_and_ensure_network_found(ad, network_ssid)
Bindu Mahadev3876ae52017-12-19 14:22:19 -08001439 wifi_connect_by_id(ad, network_id)
1440 connect_data = ad.droid.wifiGetConnectionInfo()
1441 connect_ssid = connect_data[WifiEnums.SSID_KEY]
1442 ad.log.debug("Expected SSID = %s Connected SSID = %s" %
Omar El Ayach8c017902020-10-18 10:26:57 -07001443 (network_ssid, connect_ssid))
Bindu Mahadev3876ae52017-12-19 14:22:19 -08001444 if connect_ssid != network_ssid:
1445 return False
1446 return True
1447
1448
Omar El Ayach8c017902020-10-18 10:26:57 -07001449def wifi_connect(ad,
1450 network,
1451 num_of_tries=1,
1452 assert_on_fail=True,
1453 check_connectivity=True):
Ang Li99d8c6d2015-12-09 15:56:13 -08001454 """Connect an Android device to a wifi network.
Ang Li73697b32015-12-03 00:41:53 +00001455
1456 Initiate connection to a wifi network, wait for the "connected" event, then
Ang Li99d8c6d2015-12-09 15:56:13 -08001457 confirm the connected ssid is the one requested.
Ang Li73697b32015-12-03 00:41:53 +00001458
Ang Li82522812016-06-02 13:57:21 -07001459 This will directly fail a test if anything goes wrong.
1460
Ang Li73697b32015-12-03 00:41:53 +00001461 Args:
1462 ad: android_device object to initiate connection on.
Ang Li99d8c6d2015-12-09 15:56:13 -08001463 network: A dictionary representing the network to connect to. The
Ang Li82522812016-06-02 13:57:21 -07001464 dictionary must have the key "SSID".
1465 num_of_tries: An integer that is the number of times to try before
1466 delaring failure. Default is 1.
1467 assert_on_fail: If True, error checks in this function will raise test
1468 failure signals.
1469
1470 Returns:
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001471 Returns a value only if assert_on_fail is false.
1472 Returns True if the connection was successful, False otherwise.
Ang Li73697b32015-12-03 00:41:53 +00001473 """
Omar El Ayach8c017902020-10-18 10:26:57 -07001474 return _assert_on_fail_handler(_wifi_connect,
1475 assert_on_fail,
1476 ad,
1477 network,
1478 num_of_tries=num_of_tries,
1479 check_connectivity=check_connectivity)
Ang Li82522812016-06-02 13:57:21 -07001480
1481
Oscar Shucb9af9b2019-05-02 20:01:49 +00001482def _wifi_connect(ad, network, num_of_tries=1, check_connectivity=True):
Ang Li82522812016-06-02 13:57:21 -07001483 """Connect an Android device to a wifi network.
1484
1485 Initiate connection to a wifi network, wait for the "connected" event, then
1486 confirm the connected ssid is the one requested.
1487
1488 This will directly fail a test if anything goes wrong.
1489
1490 Args:
1491 ad: android_device object to initiate connection on.
1492 network: A dictionary representing the network to connect to. The
1493 dictionary must have the key "SSID".
1494 num_of_tries: An integer that is the number of times to try before
1495 delaring failure. Default is 1.
1496 """
Omar El Ayach8c017902020-10-18 10:26:57 -07001497 asserts.assert_true(
1498 WifiEnums.SSID_KEY in network,
1499 "Key '%s' must be present in network definition." % WifiEnums.SSID_KEY)
Ang Li99d8c6d2015-12-09 15:56:13 -08001500 ad.droid.wifiStartTrackingStateChange()
Betty Zhoud35dab82016-12-06 15:24:23 -08001501 expected_ssid = network[WifiEnums.SSID_KEY]
Bindu Mahadev50374df2017-01-04 11:03:32 -08001502 ad.droid.wifiConnectByConfig(network)
1503 ad.log.info("Starting connection process to %s", expected_ssid)
Ang Li73697b32015-12-03 00:41:53 +00001504 try:
Bindu Mahadev50374df2017-01-04 11:03:32 -08001505 event = ad.ed.pop_event(wifi_constants.CONNECT_BY_CONFIG_SUCCESS, 30)
Omar El Ayach8c017902020-10-18 10:26:57 -07001506 connect_result = _wait_for_connect_event(ad,
1507 ssid=expected_ssid,
1508 tries=num_of_tries)
1509 asserts.assert_true(
1510 connect_result, "Failed to connect to Wi-Fi network %s on %s" %
1511 (network, ad.serial))
Ang Li31b00782016-06-21 13:04:23 -07001512 ad.log.debug("Wi-Fi connection result: %s.", connect_result)
Ang Li99d8c6d2015-12-09 15:56:13 -08001513 actual_ssid = connect_result['data'][WifiEnums.SSID_KEY]
Omar El Ayach8c017902020-10-18 10:26:57 -07001514 asserts.assert_equal(
1515 actual_ssid, expected_ssid,
1516 "Connected to the wrong network on %s." % ad.serial)
Ang Li31b00782016-06-21 13:04:23 -07001517 ad.log.info("Connected to Wi-Fi network %s.", actual_ssid)
Bindu Mahadev50374df2017-01-04 11:03:32 -08001518
Bindu Mahadev27c2d292018-03-19 16:13:08 -07001519 if check_connectivity:
Hsiu-Chang Chend7b3c572020-06-12 12:19:30 +08001520 internet = validate_connection(ad, DEFAULT_PING_ADDR)
Bindu Mahadev27c2d292018-03-19 16:13:08 -07001521 if not internet:
Omar El Ayach8c017902020-10-18 10:26:57 -07001522 raise signals.TestFailure(
1523 "Failed to connect to internet on %s" % expected_ssid)
Bindu Mahadev50374df2017-01-04 11:03:32 -08001524 except Empty:
1525 asserts.fail("Failed to start connection process to %s on %s" %
1526 (network, ad.serial))
Bindu Mahadev4e710362016-11-17 16:17:11 -08001527 except Exception as error:
Bindu Mahadev50374df2017-01-04 11:03:32 -08001528 ad.log.error("Failed to connect to %s with error %s", expected_ssid,
1529 error)
1530 raise signals.TestFailure("Failed to connect to %s network" % network)
1531
Ang Li73697b32015-12-03 00:41:53 +00001532 finally:
Ang Li99d8c6d2015-12-09 15:56:13 -08001533 ad.droid.wifiStopTrackingStateChange()
Ang Li73697b32015-12-03 00:41:53 +00001534
Bindu Mahadev50374df2017-01-04 11:03:32 -08001535
Oscar Shucb9af9b2019-05-02 20:01:49 +00001536def wifi_connect_by_id(ad, network_id, num_of_tries=3, assert_on_fail=True):
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001537 """Connect an Android device to a wifi network using network Id.
1538
1539 Start connection to the wifi network, with the given network Id, wait for
1540 the "connected" event, then verify the connected network is the one requested.
1541
1542 This will directly fail a test if anything goes wrong.
1543
1544 Args:
1545 ad: android_device object to initiate connection on.
1546 network_id: Integer specifying the network id of the network.
1547 num_of_tries: An integer that is the number of times to try before
1548 delaring failure. Default is 1.
1549 assert_on_fail: If True, error checks in this function will raise test
1550 failure signals.
1551
1552 Returns:
1553 Returns a value only if assert_on_fail is false.
1554 Returns True if the connection was successful, False otherwise.
1555 """
1556 _assert_on_fail_handler(_wifi_connect_by_id, assert_on_fail, ad,
Oscar Shucb9af9b2019-05-02 20:01:49 +00001557 network_id, num_of_tries)
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001558
1559
Oscar Shucb9af9b2019-05-02 20:01:49 +00001560def _wifi_connect_by_id(ad, network_id, num_of_tries=1):
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001561 """Connect an Android device to a wifi network using it's network id.
1562
1563 Start connection to the wifi network, with the given network id, wait for
1564 the "connected" event, then verify the connected network is the one requested.
1565
1566 Args:
1567 ad: android_device object to initiate connection on.
1568 network_id: Integer specifying the network id of the network.
1569 num_of_tries: An integer that is the number of times to try before
1570 delaring failure. Default is 1.
1571 """
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001572 ad.droid.wifiStartTrackingStateChange()
Bindu Mahadevaf983c92017-03-27 12:00:37 -07001573 # Clear all previous events.
1574 ad.ed.clear_all_events()
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001575 ad.droid.wifiConnectByNetworkId(network_id)
1576 ad.log.info("Starting connection to network with id %d", network_id)
1577 try:
1578 event = ad.ed.pop_event(wifi_constants.CONNECT_BY_NETID_SUCCESS, 60)
Omar El Ayach8c017902020-10-18 10:26:57 -07001579 connect_result = _wait_for_connect_event(ad,
1580 id=network_id,
1581 tries=num_of_tries)
1582 asserts.assert_true(
1583 connect_result,
1584 "Failed to connect to Wi-Fi network using network id")
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001585 ad.log.debug("Wi-Fi connection result: %s", connect_result)
1586 actual_id = connect_result['data'][WifiEnums.NETID_KEY]
Omar El Ayach8c017902020-10-18 10:26:57 -07001587 asserts.assert_equal(
1588 actual_id, network_id, "Connected to the wrong network on %s."
1589 "Expected network id = %d, but got %d." %
1590 (ad.serial, network_id, actual_id))
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001591 expected_ssid = connect_result['data'][WifiEnums.SSID_KEY]
1592 ad.log.info("Connected to Wi-Fi network %s with %d network id.",
Omar El Ayach8c017902020-10-18 10:26:57 -07001593 expected_ssid, network_id)
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001594
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001595 internet = validate_connection(ad, DEFAULT_PING_ADDR)
1596 if not internet:
1597 raise signals.TestFailure("Failed to connect to internet on %s" %
1598 expected_ssid)
1599 except Empty:
1600 asserts.fail("Failed to connect to network with id %d on %s" %
Omar El Ayach8c017902020-10-18 10:26:57 -07001601 (network_id, ad.serial))
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001602 except Exception as error:
1603 ad.log.error("Failed to connect to network with id %d with error %s",
Omar El Ayach8c017902020-10-18 10:26:57 -07001604 network_id, error)
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001605 raise signals.TestFailure("Failed to connect to network with network"
1606 " id %d" % network_id)
1607 finally:
1608 ad.droid.wifiStopTrackingStateChange()
1609
Oscar Shu0b5ff4d2019-08-07 18:11:56 +00001610
Omar El Ayach8c017902020-10-18 10:26:57 -07001611def wifi_connect_using_network_request(ad,
1612 network,
1613 network_specifier,
Roshan Pius5561d232021-01-22 16:34:39 -08001614 num_of_tries=3):
Roshan Piusc999e5e2018-11-09 10:59:52 -08001615 """Connect an Android device to a wifi network using network request.
1616
1617 Trigger a network request with the provided network specifier,
1618 wait for the "onMatch" event, ensure that the scan results in "onMatch"
1619 event contain the specified network, then simulate the user granting the
1620 request with the specified network selected. Then wait for the "onAvailable"
1621 network callback indicating successful connection to network.
1622
1623 Args:
1624 ad: android_device object to initiate connection on.
1625 network_specifier: A dictionary representing the network specifier to
1626 use.
1627 network: A dictionary representing the network to connect to. The
1628 dictionary must have the key "SSID".
1629 num_of_tries: An integer that is the number of times to try before
1630 delaring failure.
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001631 Returns:
1632 key: Key corresponding to network request.
Roshan Piusc999e5e2018-11-09 10:59:52 -08001633 """
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001634 key = ad.droid.connectivityRequestWifiNetwork(network_specifier, 0)
1635 ad.log.info("Sent network request %s with %s " % (key, network_specifier))
Roshan Piusc999e5e2018-11-09 10:59:52 -08001636 # Need a delay here because UI interaction should only start once wifi
1637 # starts processing the request.
1638 time.sleep(wifi_constants.NETWORK_REQUEST_CB_REGISTER_DELAY_SEC)
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001639 _wait_for_wifi_connect_after_network_request(ad, network, key, num_of_tries)
1640 return key
Roshan Piusc999e5e2018-11-09 10:59:52 -08001641
1642
Omar El Ayach8c017902020-10-18 10:26:57 -07001643def wait_for_wifi_connect_after_network_request(ad,
1644 network,
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001645 key,
Omar El Ayach8c017902020-10-18 10:26:57 -07001646 num_of_tries=3,
Roshan Piusc999e5e2018-11-09 10:59:52 -08001647 assert_on_fail=True):
1648 """
1649 Simulate and verify the connection flow after initiating the network
1650 request.
1651
1652 Wait for the "onMatch" event, ensure that the scan results in "onMatch"
1653 event contain the specified network, then simulate the user granting the
1654 request with the specified network selected. Then wait for the "onAvailable"
1655 network callback indicating successful connection to network.
1656
1657 Args:
1658 ad: android_device object to initiate connection on.
1659 network: A dictionary representing the network to connect to. The
1660 dictionary must have the key "SSID".
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001661 key: Key corresponding to network request.
Roshan Piusc999e5e2018-11-09 10:59:52 -08001662 num_of_tries: An integer that is the number of times to try before
1663 delaring failure.
1664 assert_on_fail: If True, error checks in this function will raise test
1665 failure signals.
1666
1667 Returns:
1668 Returns a value only if assert_on_fail is false.
1669 Returns True if the connection was successful, False otherwise.
1670 """
1671 _assert_on_fail_handler(_wait_for_wifi_connect_after_network_request,
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001672 assert_on_fail, ad, network, key, num_of_tries)
Roshan Piusc999e5e2018-11-09 10:59:52 -08001673
1674
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001675def _wait_for_wifi_connect_after_network_request(ad, network, key, num_of_tries=3):
Roshan Piusc999e5e2018-11-09 10:59:52 -08001676 """
1677 Simulate and verify the connection flow after initiating the network
1678 request.
1679
1680 Wait for the "onMatch" event, ensure that the scan results in "onMatch"
1681 event contain the specified network, then simulate the user granting the
1682 request with the specified network selected. Then wait for the "onAvailable"
1683 network callback indicating successful connection to network.
1684
1685 Args:
1686 ad: android_device object to initiate connection on.
1687 network: A dictionary representing the network to connect to. The
1688 dictionary must have the key "SSID".
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001689 key: Key corresponding to network request.
Roshan Piusc999e5e2018-11-09 10:59:52 -08001690 num_of_tries: An integer that is the number of times to try before
1691 delaring failure.
1692 """
Omar El Ayach8c017902020-10-18 10:26:57 -07001693 asserts.assert_true(
1694 WifiEnums.SSID_KEY in network,
1695 "Key '%s' must be present in network definition." % WifiEnums.SSID_KEY)
Roshan Piusc999e5e2018-11-09 10:59:52 -08001696 ad.droid.wifiStartTrackingStateChange()
1697 expected_ssid = network[WifiEnums.SSID_KEY]
1698 ad.droid.wifiRegisterNetworkRequestMatchCallback()
1699 # Wait for the platform to scan and return a list of networks
1700 # matching the request
1701 try:
1702 matched_network = None
Omar El Ayach8c017902020-10-18 10:26:57 -07001703 for _ in [0, num_of_tries]:
Roshan Piusc999e5e2018-11-09 10:59:52 -08001704 on_match_event = ad.ed.pop_event(
1705 wifi_constants.WIFI_NETWORK_REQUEST_MATCH_CB_ON_MATCH, 60)
1706 asserts.assert_true(on_match_event,
1707 "Network request on match not received.")
1708 matched_scan_results = on_match_event["data"]
1709 ad.log.debug("Network request on match results %s",
1710 matched_scan_results)
1711 matched_network = match_networks(
1712 {WifiEnums.SSID_KEY: network[WifiEnums.SSID_KEY]},
1713 matched_scan_results)
Roshan Pius6cd4aaf2021-02-09 15:54:30 -08001714 ad.log.debug("Network request on match %s", matched_network)
Roshan Piusc999e5e2018-11-09 10:59:52 -08001715 if matched_network:
Omar El Ayach8c017902020-10-18 10:26:57 -07001716 break
Roshan Piusc999e5e2018-11-09 10:59:52 -08001717
Omar El Ayach8c017902020-10-18 10:26:57 -07001718 asserts.assert_true(matched_network,
1719 "Target network %s not found" % network)
Roshan Piusc999e5e2018-11-09 10:59:52 -08001720
1721 ad.droid.wifiSendUserSelectionForNetworkRequestMatch(network)
1722 ad.log.info("Sent user selection for network request %s",
1723 expected_ssid)
1724
1725 # Wait for the platform to connect to the network.
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001726 autils.wait_for_event_with_keys(
1727 ad, cconsts.EVENT_NETWORK_CALLBACK,
1728 60,
1729 (cconsts.NETWORK_CB_KEY_ID, key),
1730 (cconsts.NETWORK_CB_KEY_EVENT, cconsts.NETWORK_CB_AVAILABLE))
1731 on_capabilities_changed = autils.wait_for_event_with_keys(
1732 ad, cconsts.EVENT_NETWORK_CALLBACK,
1733 10,
1734 (cconsts.NETWORK_CB_KEY_ID, key),
1735 (cconsts.NETWORK_CB_KEY_EVENT,
1736 cconsts.NETWORK_CB_CAPABILITIES_CHANGED))
1737 connected_network =\
1738 on_capabilities_changed["data"][cconsts.NETWORK_CB_KEY_TRANSPORT_INFO]
Roshan Piusc999e5e2018-11-09 10:59:52 -08001739 ad.log.info("Connected to network %s", connected_network)
Omar El Ayach8c017902020-10-18 10:26:57 -07001740 asserts.assert_equal(
1741 connected_network[WifiEnums.SSID_KEY], expected_ssid,
1742 "Connected to the wrong network."
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001743 "Expected %s, but got %s."
1744 % (network, connected_network))
Roshan Piusc999e5e2018-11-09 10:59:52 -08001745 except Empty:
1746 asserts.fail("Failed to connect to %s" % expected_ssid)
1747 except Exception as error:
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001748 ad.log.error("Failed to connect to %s with error %s" %
Roshan Piusc999e5e2018-11-09 10:59:52 -08001749 (expected_ssid, error))
1750 raise signals.TestFailure("Failed to connect to %s network" % network)
1751 finally:
1752 ad.droid.wifiStopTrackingStateChange()
1753
1754
Omar El Ayach8c017902020-10-18 10:26:57 -07001755def wifi_passpoint_connect(ad,
1756 passpoint_network,
1757 num_of_tries=1,
Oscar Shucb9af9b2019-05-02 20:01:49 +00001758 assert_on_fail=True):
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001759 """Connect an Android device to a wifi network.
1760
1761 Initiate connection to a wifi network, wait for the "connected" event, then
1762 confirm the connected ssid is the one requested.
1763
1764 This will directly fail a test if anything goes wrong.
1765
1766 Args:
1767 ad: android_device object to initiate connection on.
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001768 passpoint_network: SSID of the Passpoint network to connect to.
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001769 num_of_tries: An integer that is the number of times to try before
1770 delaring failure. Default is 1.
1771 assert_on_fail: If True, error checks in this function will raise test
1772 failure signals.
1773
1774 Returns:
1775 If assert_on_fail is False, function returns network id, if the connect was
1776 successful, False otherwise. If assert_on_fail is True, no return value.
1777 """
Omar El Ayach8c017902020-10-18 10:26:57 -07001778 _assert_on_fail_handler(_wifi_passpoint_connect,
1779 assert_on_fail,
1780 ad,
1781 passpoint_network,
1782 num_of_tries=num_of_tries)
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001783
1784
Oscar Shucb9af9b2019-05-02 20:01:49 +00001785def _wifi_passpoint_connect(ad, passpoint_network, num_of_tries=1):
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001786 """Connect an Android device to a wifi network.
1787
1788 Initiate connection to a wifi network, wait for the "connected" event, then
1789 confirm the connected ssid is the one requested.
1790
1791 This will directly fail a test if anything goes wrong.
1792
1793 Args:
1794 ad: android_device object to initiate connection on.
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001795 passpoint_network: SSID of the Passpoint network to connect to.
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001796 num_of_tries: An integer that is the number of times to try before
1797 delaring failure. Default is 1.
1798 """
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001799 ad.droid.wifiStartTrackingStateChange()
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001800 expected_ssid = passpoint_network
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001801 ad.log.info("Starting connection process to passpoint %s", expected_ssid)
1802
1803 try:
Omar El Ayach8c017902020-10-18 10:26:57 -07001804 connect_result = _wait_for_connect_event(ad, expected_ssid,
1805 num_of_tries)
1806 asserts.assert_true(
1807 connect_result, "Failed to connect to WiFi passpoint network %s on"
1808 " %s" % (expected_ssid, ad.serial))
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001809 ad.log.info("Wi-Fi connection result: %s.", connect_result)
1810 actual_ssid = connect_result['data'][WifiEnums.SSID_KEY]
Omar El Ayach8c017902020-10-18 10:26:57 -07001811 asserts.assert_equal(
1812 actual_ssid, expected_ssid,
1813 "Connected to the wrong network on %s." % ad.serial)
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001814 ad.log.info("Connected to Wi-Fi passpoint network %s.", actual_ssid)
1815
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001816 internet = validate_connection(ad, DEFAULT_PING_ADDR)
1817 if not internet:
1818 raise signals.TestFailure("Failed to connect to internet on %s" %
1819 expected_ssid)
1820 except Exception as error:
1821 ad.log.error("Failed to connect to passpoint network %s with error %s",
Omar El Ayach8c017902020-10-18 10:26:57 -07001822 expected_ssid, error)
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001823 raise signals.TestFailure("Failed to connect to %s passpoint network" %
Omar El Ayach8c017902020-10-18 10:26:57 -07001824 expected_ssid)
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001825
1826 finally:
1827 ad.droid.wifiStopTrackingStateChange()
1828
1829
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001830def delete_passpoint(ad, fqdn):
1831 """Delete a required Passpoint configuration."""
1832 try:
1833 ad.droid.removePasspointConfig(fqdn)
1834 return True
1835 except Exception as error:
Omar El Ayach8c017902020-10-18 10:26:57 -07001836 ad.log.error(
1837 "Failed to remove passpoint configuration with FQDN=%s "
1838 "and error=%s", fqdn, error)
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001839 return False
1840
1841
Ang Li73697b32015-12-03 00:41:53 +00001842def start_wifi_single_scan(ad, scan_setting):
1843 """Starts wifi single shot scan.
1844
1845 Args:
1846 ad: android_device object to initiate connection on.
1847 scan_setting: A dict representing the settings of the scan.
1848
1849 Returns:
1850 If scan was started successfully, event data of success event is returned.
1851 """
Ang Li82522812016-06-02 13:57:21 -07001852 idx = ad.droid.wifiScannerStartScan(scan_setting)
1853 event = ad.ed.pop_event("WifiScannerScan%sonSuccess" % idx, SHORT_TIMEOUT)
Ang Li31b00782016-06-21 13:04:23 -07001854 ad.log.debug("Got event %s", event)
Ang Li73697b32015-12-03 00:41:53 +00001855 return event['data']
1856
Ang Li82522812016-06-02 13:57:21 -07001857
Ang Li73697b32015-12-03 00:41:53 +00001858def track_connection(ad, network_ssid, check_connection_count):
1859 """Track wifi connection to network changes for given number of counts
1860
1861 Args:
1862 ad: android_device object for forget network.
1863 network_ssid: network ssid to which connection would be tracked
1864 check_connection_count: Integer for maximum number network connection
Ang Li82522812016-06-02 13:57:21 -07001865 check.
Ang Li73697b32015-12-03 00:41:53 +00001866 Returns:
Ang Li73697b32015-12-03 00:41:53 +00001867 True if connection to given network happen, else return False.
1868 """
Girish Moturu40d7dc22016-11-02 12:14:56 -07001869 ad.droid.wifiStartTrackingStateChange()
Ang Li73697b32015-12-03 00:41:53 +00001870 while check_connection_count > 0:
Girish Moturu40d7dc22016-11-02 12:14:56 -07001871 connect_network = ad.ed.pop_event("WifiNetworkConnected", 120)
Ang Li31b00782016-06-21 13:04:23 -07001872 ad.log.info("Connected to network %s", connect_network)
Ang Li82522812016-06-02 13:57:21 -07001873 if (WifiEnums.SSID_KEY in connect_network['data'] and
1874 connect_network['data'][WifiEnums.SSID_KEY] == network_ssid):
1875 return True
Ang Li8e767182015-12-09 17:29:24 -08001876 check_connection_count -= 1
Girish Moturu40d7dc22016-11-02 12:14:56 -07001877 ad.droid.wifiStopTrackingStateChange()
Ang Li73697b32015-12-03 00:41:53 +00001878 return False
1879
Ang Li82522812016-06-02 13:57:21 -07001880
Ang Li73697b32015-12-03 00:41:53 +00001881def get_scan_time_and_channels(wifi_chs, scan_setting, stime_channel):
1882 """Calculate the scan time required based on the band or channels in scan
1883 setting
1884
1885 Args:
1886 wifi_chs: Object of channels supported
1887 scan_setting: scan setting used for start scan
1888 stime_channel: scan time per channel
1889
1890 Returns:
1891 scan_time: time required for completing a scan
1892 scan_channels: channel used for scanning
1893 """
1894 scan_time = 0
1895 scan_channels = []
1896 if "band" in scan_setting and "channels" not in scan_setting:
Ang Li8e767182015-12-09 17:29:24 -08001897 scan_channels = wifi_chs.band_to_freq(scan_setting["band"])
Ang Li73697b32015-12-03 00:41:53 +00001898 elif "channels" in scan_setting and "band" not in scan_setting:
Ang Li8e767182015-12-09 17:29:24 -08001899 scan_channels = scan_setting["channels"]
Ang Li73697b32015-12-03 00:41:53 +00001900 scan_time = len(scan_channels) * stime_channel
1901 for channel in scan_channels:
Ang Li8e767182015-12-09 17:29:24 -08001902 if channel in WifiEnums.DFS_5G_FREQUENCIES:
Ang Li82522812016-06-02 13:57:21 -07001903 scan_time += 132 #passive scan time on DFS
Ang Li73697b32015-12-03 00:41:53 +00001904 return scan_time, scan_channels
1905
Ang Li82522812016-06-02 13:57:21 -07001906
Ang Li73697b32015-12-03 00:41:53 +00001907def start_wifi_track_bssid(ad, track_setting):
1908 """Start tracking Bssid for the given settings.
1909
1910 Args:
1911 ad: android_device object.
1912 track_setting: Setting for which the bssid tracking should be started
1913
1914 Returns:
1915 If tracking started successfully, event data of success event is returned.
1916 """
Girish Moturu40d7dc22016-11-02 12:14:56 -07001917 idx = ad.droid.wifiScannerStartTrackingBssids(
Ang Li82522812016-06-02 13:57:21 -07001918 track_setting["bssidInfos"], track_setting["apLostThreshold"])
Girish Moturu40d7dc22016-11-02 12:14:56 -07001919 event = ad.ed.pop_event("WifiScannerBssid{}onSuccess".format(idx),
Betty Zhou3caa0982017-02-22 19:26:20 -08001920 SHORT_TIMEOUT)
Ang Li73697b32015-12-03 00:41:53 +00001921 return event['data']
1922
Ang Li82522812016-06-02 13:57:21 -07001923
Ang Li73697b32015-12-03 00:41:53 +00001924def convert_pem_key_to_pkcs8(in_file, out_file):
1925 """Converts the key file generated by us to the format required by
1926 Android using openssl.
1927
1928 The input file must have the extension "pem". The output file must
1929 have the extension "der".
1930
1931 Args:
1932 in_file: The original key file.
1933 out_file: The full path to the converted key file, including
1934 filename.
1935 """
Ang Li82522812016-06-02 13:57:21 -07001936 asserts.assert_true(in_file.endswith(".pem"), "Input file has to be .pem.")
Omar El Ayach8c017902020-10-18 10:26:57 -07001937 asserts.assert_true(out_file.endswith(".der"),
1938 "Output file has to be .der.")
Ang Li73697b32015-12-03 00:41:53 +00001939 cmd = ("openssl pkcs8 -inform PEM -in {} -outform DER -out {} -nocrypt"
1940 " -topk8").format(in_file, out_file)
Ang Lifee28402016-07-13 13:43:29 -07001941 utils.exe_cmd(cmd)
Ang Li73697b32015-12-03 00:41:53 +00001942
Ang Li82522812016-06-02 13:57:21 -07001943
Omar El Ayach8c017902020-10-18 10:26:57 -07001944def validate_connection(ad,
1945 ping_addr=DEFAULT_PING_ADDR,
1946 wait_time=15,
Girish Moturu804a3492020-02-17 14:32:02 -08001947 ping_gateway=True):
Ang Li73697b32015-12-03 00:41:53 +00001948 """Validate internet connection by pinging the address provided.
1949
1950 Args:
1951 ad: android_device object.
1952 ping_addr: address on internet for pinging.
Girish Moturua2a5bf22019-08-16 09:52:29 -07001953 wait_time: wait for some time before validating connection
Ang Li73697b32015-12-03 00:41:53 +00001954
1955 Returns:
Bindu Mahadev50374df2017-01-04 11:03:32 -08001956 ping output if successful, NULL otherwise.
Ang Li73697b32015-12-03 00:41:53 +00001957 """
Girish Moturua2a5bf22019-08-16 09:52:29 -07001958 # wait_time to allow for DHCP to complete.
Hsiu-Chang Chend7b3c572020-06-12 12:19:30 +08001959 for i in range(wait_time):
Girish Moturuacf35002020-11-09 23:37:35 -08001960 if ad.droid.connectivityNetworkIsConnected(
Omar El Ayach8c017902020-10-18 10:26:57 -07001961 ) and ad.droid.connectivityGetIPv4DefaultGateway():
Hsiu-Chang Chend7b3c572020-06-12 12:19:30 +08001962 break
1963 time.sleep(1)
Girish Moturu804a3492020-02-17 14:32:02 -08001964 ping = False
1965 try:
1966 ping = ad.droid.httpPing(ping_addr)
1967 ad.log.info("Http ping result: %s.", ping)
1968 except:
1969 pass
1970 if not ping and ping_gateway:
1971 ad.log.info("Http ping failed. Pinging default gateway")
1972 gw = ad.droid.connectivityGetIPv4DefaultGateway()
1973 result = ad.adb.shell("ping -c 6 {}".format(gw))
1974 ad.log.info("Default gateway ping result: %s" % result)
1975 ping = False if "100% packet loss" in result else True
Ang Li73697b32015-12-03 00:41:53 +00001976 return ping
1977
Ang Li82522812016-06-02 13:57:21 -07001978
Ang Li73697b32015-12-03 00:41:53 +00001979#TODO(angli): This can only verify if an actual value is exactly the same.
1980# Would be nice to be able to verify an actual value is one of serveral.
1981def verify_wifi_connection_info(ad, expected_con):
1982 """Verifies that the information of the currently connected wifi network is
1983 as expected.
1984
1985 Args:
1986 expected_con: A dict representing expected key-value pairs for wifi
1987 connection. e.g. {"SSID": "test_wifi"}
1988 """
1989 current_con = ad.droid.wifiGetConnectionInfo()
Ang Li374d7602016-02-08 17:27:27 -08001990 case_insensitive = ["BSSID", "supplicant_state"]
Ang Li31b00782016-06-21 13:04:23 -07001991 ad.log.debug("Current connection: %s", current_con)
Ang Li73697b32015-12-03 00:41:53 +00001992 for k, expected_v in expected_con.items():
Ang Li9a66de72016-02-08 15:26:38 -08001993 # Do not verify authentication related fields.
1994 if k == "password":
1995 continue
Ang Li82522812016-06-02 13:57:21 -07001996 msg = "Field %s does not exist in wifi connection info %s." % (
1997 k, current_con)
Ang Li374d7602016-02-08 17:27:27 -08001998 if k not in current_con:
1999 raise signals.TestFailure(msg)
2000 actual_v = current_con[k]
2001 if k in case_insensitive:
2002 actual_v = actual_v.lower()
2003 expected_v = expected_v.lower()
Ang Li73697b32015-12-03 00:41:53 +00002004 msg = "Expected %s to be %s, actual %s is %s." % (k, expected_v, k,
Ang Li82522812016-06-02 13:57:21 -07002005 actual_v)
Ang Li374d7602016-02-08 17:27:27 -08002006 if actual_v != expected_v:
2007 raise signals.TestFailure(msg)
Ang Li73697b32015-12-03 00:41:53 +00002008
Ang Li82522812016-06-02 13:57:21 -07002009
Omar El Ayach8c017902020-10-18 10:26:57 -07002010def check_autoconnect_to_open_network(
2011 ad, conn_timeout=WIFI_CONNECTION_TIMEOUT_DEFAULT):
Preetesh Barrettoe8c428b2019-02-14 09:15:44 -08002012 """Connects to any open WiFI AP
2013 Args:
2014 timeout value in sec to wait for UE to connect to a WiFi AP
2015 Returns:
2016 True if UE connects to WiFi AP (supplicant_state = completed)
2017 False if UE fails to complete connection within WIFI_CONNECTION_TIMEOUT time.
2018 """
2019 if ad.droid.wifiCheckState():
2020 return True
2021 ad.droid.wifiToggleState()
2022 wifi_connection_state = None
2023 timeout = time.time() + conn_timeout
2024 while wifi_connection_state != "completed":
Omar El Ayach8c017902020-10-18 10:26:57 -07002025 wifi_connection_state = ad.droid.wifiGetConnectionInfo(
2026 )['supplicant_state']
Preetesh Barrettoe8c428b2019-02-14 09:15:44 -08002027 if time.time() > timeout:
2028 ad.log.warning("Failed to connect to WiFi AP")
2029 return False
2030 return True
2031
2032
Ang Li73697b32015-12-03 00:41:53 +00002033def expand_enterprise_config_by_phase2(config):
2034 """Take an enterprise config and generate a list of configs, each with
2035 a different phase2 auth type.
2036
2037 Args:
2038 config: A dict representing enterprise config.
2039
2040 Returns
2041 A list of enterprise configs.
2042 """
2043 results = []
Ang Li0e7e58f2016-02-22 12:15:02 -08002044 phase2_types = WifiEnums.EapPhase2
2045 if config[WifiEnums.Enterprise.EAP] == WifiEnums.Eap.PEAP:
2046 # Skip unsupported phase2 types for PEAP.
2047 phase2_types = [WifiEnums.EapPhase2.GTC, WifiEnums.EapPhase2.MSCHAPV2]
2048 for phase2_type in phase2_types:
Ang Li73697b32015-12-03 00:41:53 +00002049 # Skip a special case for passpoint TTLS.
Omar El Ayach8c017902020-10-18 10:26:57 -07002050 if (WifiEnums.Enterprise.FQDN in config
2051 and phase2_type == WifiEnums.EapPhase2.GTC):
Ang Li73697b32015-12-03 00:41:53 +00002052 continue
2053 c = dict(config)
Girish Moturu150d32f2017-02-14 12:27:07 -08002054 c[WifiEnums.Enterprise.PHASE2] = phase2_type.value
Ang Li73697b32015-12-03 00:41:53 +00002055 results.append(c)
2056 return results
Ang Li2d3fe982016-06-08 10:00:43 -07002057
2058
Girish Moturub48a13c2017-02-27 11:36:42 -08002059def generate_eap_test_name(config, ad=None):
Girish Moturu150d32f2017-02-14 12:27:07 -08002060 """ Generates a test case name based on an EAP configuration.
2061
2062 Args:
2063 config: A dict representing an EAP credential.
Girish Moturub48a13c2017-02-27 11:36:42 -08002064 ad object: Redundant but required as the same param is passed
2065 to test_func in run_generated_tests
Girish Moturu150d32f2017-02-14 12:27:07 -08002066
2067 Returns:
2068 A string representing the name of a generated EAP test case.
2069 """
2070 eap = WifiEnums.Eap
2071 eap_phase2 = WifiEnums.EapPhase2
Girish Moturub48a13c2017-02-27 11:36:42 -08002072 Ent = WifiEnums.Enterprise
Girish Moturu150d32f2017-02-14 12:27:07 -08002073 name = "test_connect-"
2074 eap_name = ""
2075 for e in eap:
2076 if e.value == config[Ent.EAP]:
2077 eap_name = e.name
2078 break
2079 if "peap0" in config[WifiEnums.SSID_KEY].lower():
2080 eap_name = "PEAP0"
2081 if "peap1" in config[WifiEnums.SSID_KEY].lower():
2082 eap_name = "PEAP1"
2083 name += eap_name
2084 if Ent.PHASE2 in config:
2085 for e in eap_phase2:
2086 if e.value == config[Ent.PHASE2]:
2087 name += "-{}".format(e.name)
2088 break
2089 return name
2090
2091
Ang Li2d3fe982016-06-08 10:00:43 -07002092def group_attenuators(attenuators):
2093 """Groups a list of attenuators into attenuator groups for backward
2094 compatibility reasons.
2095
2096 Most legacy Wi-Fi setups have two attenuators each connected to a separate
2097 AP. The new Wi-Fi setup has four attenuators, each connected to one channel
2098 on an AP, so two of them are connected to one AP.
2099
2100 To make the existing scripts work in the new setup, when the script needs
2101 to attenuate one AP, it needs to set attenuation on both attenuators
2102 connected to the same AP.
2103
2104 This function groups attenuators properly so the scripts work in both
2105 legacy and new Wi-Fi setups.
2106
2107 Args:
2108 attenuators: A list of attenuator objects, either two or four in length.
2109
2110 Raises:
2111 signals.TestFailure is raised if the attenuator list does not have two
2112 or four objects.
2113 """
2114 attn0 = attenuator.AttenuatorGroup("AP0")
2115 attn1 = attenuator.AttenuatorGroup("AP1")
2116 # Legacy testbed setup has two attenuation channels.
2117 num_of_attns = len(attenuators)
2118 if num_of_attns == 2:
2119 attn0.add(attenuators[0])
2120 attn1.add(attenuators[1])
2121 elif num_of_attns == 4:
2122 attn0.add(attenuators[0])
2123 attn0.add(attenuators[1])
2124 attn1.add(attenuators[2])
2125 attn1.add(attenuators[3])
2126 else:
2127 asserts.fail(("Either two or four attenuators are required for this "
2128 "test, but found %s") % num_of_attns)
2129 return [attn0, attn1]
Jong Wook Kim92356922018-02-06 18:32:49 -08002130
Bindu Mahadevff295782019-02-08 16:17:48 -08002131
Girish Moturu36348a32019-12-10 08:41:54 -08002132def set_attns(attenuator, attn_val_name, roaming_attn=ROAMING_ATTN):
Bindu Mahadev7060a9f2018-05-04 13:48:12 -07002133 """Sets attenuation values on attenuators used in this test.
2134
2135 Args:
2136 attenuator: The attenuator object.
2137 attn_val_name: Name of the attenuation value pair to use.
Girish Moturu36348a32019-12-10 08:41:54 -08002138 roaming_attn: Dictionary specifying the attenuation params.
Bindu Mahadev7060a9f2018-05-04 13:48:12 -07002139 """
2140 logging.info("Set attenuation values to %s", roaming_attn[attn_val_name])
2141 try:
2142 attenuator[0].set_atten(roaming_attn[attn_val_name][0])
2143 attenuator[1].set_atten(roaming_attn[attn_val_name][1])
2144 attenuator[2].set_atten(roaming_attn[attn_val_name][2])
2145 attenuator[3].set_atten(roaming_attn[attn_val_name][3])
2146 except:
2147 logging.exception("Failed to set attenuation values %s.",
Omar El Ayach8c017902020-10-18 10:26:57 -07002148 attn_val_name)
Bindu Mahadev7060a9f2018-05-04 13:48:12 -07002149 raise
2150
Omar El Ayach8c017902020-10-18 10:26:57 -07002151
Girish Moturu36348a32019-12-10 08:41:54 -08002152def set_attns_steps(attenuators,
2153 atten_val_name,
2154 roaming_attn=ROAMING_ATTN,
2155 steps=10,
2156 wait_time=12):
Hsiu-Chang Chen73ea3342019-05-22 11:20:08 +08002157 """Set attenuation values on attenuators used in this test. It will change
2158 the attenuation values linearly from current value to target value step by
2159 step.
2160
2161 Args:
2162 attenuators: The list of attenuator objects that you want to change
2163 their attenuation value.
2164 atten_val_name: Name of the attenuation value pair to use.
Girish Moturu36348a32019-12-10 08:41:54 -08002165 roaming_attn: Dictionary specifying the attenuation params.
Hsiu-Chang Chen73ea3342019-05-22 11:20:08 +08002166 steps: Number of attenuator changes to reach the target value.
2167 wait_time: Sleep time for each change of attenuator.
2168 """
2169 logging.info("Set attenuation values to %s in %d step(s)",
Omar El Ayach8c017902020-10-18 10:26:57 -07002170 roaming_attn[atten_val_name], steps)
Hsiu-Chang Chen73ea3342019-05-22 11:20:08 +08002171 start_atten = [attenuator.get_atten() for attenuator in attenuators]
2172 target_atten = roaming_attn[atten_val_name]
2173 for current_step in range(steps):
2174 progress = (current_step + 1) / steps
2175 for i, attenuator in enumerate(attenuators):
2176 amount_since_start = (target_atten[i] - start_atten[i]) * progress
2177 attenuator.set_atten(round(start_atten[i] + amount_since_start))
2178 time.sleep(wait_time)
2179
Bindu Mahadev7060a9f2018-05-04 13:48:12 -07002180
Girish Moturu36348a32019-12-10 08:41:54 -08002181def trigger_roaming_and_validate(dut,
2182 attenuator,
2183 attn_val_name,
2184 expected_con,
2185 roaming_attn=ROAMING_ATTN):
Bindu Mahadev7060a9f2018-05-04 13:48:12 -07002186 """Sets attenuators to trigger roaming and validate the DUT connected
2187 to the BSSID expected.
2188
2189 Args:
2190 attenuator: The attenuator object.
2191 attn_val_name: Name of the attenuation value pair to use.
2192 expected_con: The network information of the expected network.
Girish Moturu36348a32019-12-10 08:41:54 -08002193 roaming_attn: Dictionary specifying the attenaution params.
Bindu Mahadev7060a9f2018-05-04 13:48:12 -07002194 """
2195 expected_con = {
2196 WifiEnums.SSID_KEY: expected_con[WifiEnums.SSID_KEY],
2197 WifiEnums.BSSID_KEY: expected_con["bssid"],
2198 }
Girish Moturu36348a32019-12-10 08:41:54 -08002199 set_attns_steps(attenuator, attn_val_name, roaming_attn)
Bindu Mahadev7060a9f2018-05-04 13:48:12 -07002200
Hsiu-Chang Chenef856402018-09-18 12:32:49 +08002201 verify_wifi_connection_info(dut, expected_con)
2202 expected_bssid = expected_con[WifiEnums.BSSID_KEY]
2203 logging.info("Roamed to %s successfully", expected_bssid)
2204 if not validate_connection(dut):
2205 raise signals.TestFailure("Fail to connect to internet on %s" %
Omar El Ayach8c017902020-10-18 10:26:57 -07002206 expected_bssid)
2207
Jong Wook Kim92356922018-02-06 18:32:49 -08002208
2209def create_softap_config():
2210 """Create a softap config with random ssid and password."""
2211 ap_ssid = "softap_" + utils.rand_ascii_str(8)
2212 ap_password = utils.rand_ascii_str(8)
2213 logging.info("softap setup: %s %s", ap_ssid, ap_password)
2214 config = {
2215 WifiEnums.SSID_KEY: ap_ssid,
2216 WifiEnums.PWD_KEY: ap_password,
2217 }
2218 return config
Girish Moturucf4dccd2018-08-27 12:22:00 -07002219
Omar El Ayach8c017902020-10-18 10:26:57 -07002220
Bindu Mahadevff295782019-02-08 16:17:48 -08002221def start_softap_and_verify(ad, band):
2222 """Bring-up softap and verify AP mode and in scan results.
2223
2224 Args:
2225 band: The band to use for softAP.
2226
2227 Returns: dict, the softAP config.
2228
2229 """
lesl2f0fb232019-11-05 16:35:28 +08002230 # Register before start the test.
2231 callbackId = ad.dut.droid.registerSoftApCallback()
2232 # Check softap info value is default
2233 frequency, bandwdith = get_current_softap_info(ad.dut, callbackId, True)
2234 asserts.assert_true(frequency == 0, "Softap frequency is not reset")
2235 asserts.assert_true(bandwdith == 0, "Softap bandwdith is not reset")
2236
Bindu Mahadevff295782019-02-08 16:17:48 -08002237 config = create_softap_config()
2238 start_wifi_tethering(ad.dut,
2239 config[WifiEnums.SSID_KEY],
Omar El Ayach8c017902020-10-18 10:26:57 -07002240 config[WifiEnums.PWD_KEY],
2241 band=band)
Bindu Mahadevff295782019-02-08 16:17:48 -08002242 asserts.assert_true(ad.dut.droid.wifiIsApEnabled(),
Omar El Ayach8c017902020-10-18 10:26:57 -07002243 "SoftAp is not reported as running")
2244 start_wifi_connection_scan_and_ensure_network_found(
2245 ad.dut_client, config[WifiEnums.SSID_KEY])
lesl2f0fb232019-11-05 16:35:28 +08002246
2247 # Check softap info can get from callback succeed and assert value should be
2248 # valid.
2249 frequency, bandwdith = get_current_softap_info(ad.dut, callbackId, True)
2250 asserts.assert_true(frequency > 0, "Softap frequency is not valid")
2251 asserts.assert_true(bandwdith > 0, "Softap bandwdith is not valid")
2252 # Unregister callback
2253 ad.dut.droid.unregisterSoftApCallback(callbackId)
2254
Bindu Mahadevff295782019-02-08 16:17:48 -08002255 return config
2256
Omar El Ayach8c017902020-10-18 10:26:57 -07002257
lesle8e3c0a2019-02-22 17:06:04 +08002258def wait_for_expected_number_of_softap_clients(ad, callbackId,
Omar El Ayach8c017902020-10-18 10:26:57 -07002259 expected_num_of_softap_clients):
lesle8e3c0a2019-02-22 17:06:04 +08002260 """Wait for the number of softap clients to be updated as expected.
2261 Args:
2262 callbackId: Id of the callback associated with registering.
2263 expected_num_of_softap_clients: expected number of softap clients.
2264 """
2265 eventStr = wifi_constants.SOFTAP_CALLBACK_EVENT + str(
Omar El Ayach8c017902020-10-18 10:26:57 -07002266 callbackId) + wifi_constants.SOFTAP_NUMBER_CLIENTS_CHANGED
James Mattis5a5dd492020-05-14 13:09:43 -07002267 clientData = ad.ed.pop_event(eventStr, SHORT_TIMEOUT)['data']
2268 clientCount = clientData[wifi_constants.SOFTAP_NUMBER_CLIENTS_CALLBACK_KEY]
Omar El Ayach8c017902020-10-18 10:26:57 -07002269 clientMacAddresses = clientData[
2270 wifi_constants.SOFTAP_CLIENTS_MACS_CALLBACK_KEY]
2271 asserts.assert_equal(
2272 clientCount, expected_num_of_softap_clients,
2273 "The number of softap clients doesn't match the expected number")
2274 asserts.assert_equal(
2275 len(clientMacAddresses), expected_num_of_softap_clients,
2276 "The number of mac addresses doesn't match the expected number")
James Mattis5a5dd492020-05-14 13:09:43 -07002277 for macAddress in clientMacAddresses:
Omar El Ayach8c017902020-10-18 10:26:57 -07002278 asserts.assert_true(checkMacAddress(macAddress),
2279 "An invalid mac address was returned")
2280
James Mattis5a5dd492020-05-14 13:09:43 -07002281
2282def checkMacAddress(input):
2283 """Validate whether a string is a valid mac address or not.
2284
2285 Args:
2286 input: The string to validate.
2287
2288 Returns: True/False, returns true for a valid mac address and false otherwise.
2289 """
2290 macValidationRegex = "[0-9a-f]{2}([-:]?)[0-9a-f]{2}(\\1[0-9a-f]{2}){4}$"
2291 if re.match(macValidationRegex, input.lower()):
2292 return True
2293 return False
lesle8e3c0a2019-02-22 17:06:04 +08002294
Omar El Ayach8c017902020-10-18 10:26:57 -07002295
lesle8e3c0a2019-02-22 17:06:04 +08002296def wait_for_expected_softap_state(ad, callbackId, expected_softap_state):
2297 """Wait for the expected softap state change.
2298 Args:
2299 callbackId: Id of the callback associated with registering.
2300 expected_softap_state: The expected softap state.
2301 """
2302 eventStr = wifi_constants.SOFTAP_CALLBACK_EVENT + str(
Omar El Ayach8c017902020-10-18 10:26:57 -07002303 callbackId) + wifi_constants.SOFTAP_STATE_CHANGED
2304 asserts.assert_equal(
2305 ad.ed.pop_event(eventStr, SHORT_TIMEOUT)['data'][
2306 wifi_constants.SOFTAP_STATE_CHANGE_CALLBACK_KEY],
2307 expected_softap_state,
2308 "Softap state doesn't match with expected state")
2309
lesle8e3c0a2019-02-22 17:06:04 +08002310
2311def get_current_number_of_softap_clients(ad, callbackId):
2312 """pop up all of softap client updated event from queue.
2313 Args:
2314 callbackId: Id of the callback associated with registering.
2315
2316 Returns:
2317 If exist aleast callback, returns last updated number_of_softap_clients.
2318 Returns None when no any match callback event in queue.
2319 """
2320 eventStr = wifi_constants.SOFTAP_CALLBACK_EVENT + str(
Omar El Ayach8c017902020-10-18 10:26:57 -07002321 callbackId) + wifi_constants.SOFTAP_NUMBER_CLIENTS_CHANGED
lesle8e3c0a2019-02-22 17:06:04 +08002322 events = ad.ed.pop_all(eventStr)
2323 for event in events:
Omar El Ayach8c017902020-10-18 10:26:57 -07002324 num_of_clients = event['data'][
2325 wifi_constants.SOFTAP_NUMBER_CLIENTS_CALLBACK_KEY]
lesle8e3c0a2019-02-22 17:06:04 +08002326 if len(events) == 0:
2327 return None
2328 return num_of_clients
Bindu Mahadevff295782019-02-08 16:17:48 -08002329
Omar El Ayach8c017902020-10-18 10:26:57 -07002330
lesl2f0fb232019-11-05 16:35:28 +08002331def get_current_softap_info(ad, callbackId, least_one):
2332 """pop up all of softap info changed event from queue.
2333 Args:
2334 callbackId: Id of the callback associated with registering.
2335 least_one: Wait for the info callback event before pop all.
2336 Returns:
2337 Returns last updated information of softap.
2338 """
2339 eventStr = wifi_constants.SOFTAP_CALLBACK_EVENT + str(
Omar El Ayach8c017902020-10-18 10:26:57 -07002340 callbackId) + wifi_constants.SOFTAP_INFO_CHANGED
2341 ad.log.info("softap info dump from eventStr %s", eventStr)
lesl2f0fb232019-11-05 16:35:28 +08002342 frequency = 0
2343 bandwidth = 0
2344 if (least_one):
2345 event = ad.ed.pop_event(eventStr, SHORT_TIMEOUT)
Omar El Ayach8c017902020-10-18 10:26:57 -07002346 frequency = event['data'][
2347 wifi_constants.SOFTAP_INFO_FREQUENCY_CALLBACK_KEY]
2348 bandwidth = event['data'][
2349 wifi_constants.SOFTAP_INFO_BANDWIDTH_CALLBACK_KEY]
lesl2f0fb232019-11-05 16:35:28 +08002350 ad.log.info("softap info updated, frequency is %s, bandwidth is %s",
Omar El Ayach8c017902020-10-18 10:26:57 -07002351 frequency, bandwidth)
lesl2f0fb232019-11-05 16:35:28 +08002352
2353 events = ad.ed.pop_all(eventStr)
2354 for event in events:
Omar El Ayach8c017902020-10-18 10:26:57 -07002355 frequency = event['data'][
2356 wifi_constants.SOFTAP_INFO_FREQUENCY_CALLBACK_KEY]
2357 bandwidth = event['data'][
2358 wifi_constants.SOFTAP_INFO_BANDWIDTH_CALLBACK_KEY]
2359 ad.log.info("softap info, frequency is %s, bandwidth is %s", frequency,
2360 bandwidth)
lesl2f0fb232019-11-05 16:35:28 +08002361 return frequency, bandwidth
2362
2363
Hsiu-Chang Chenebb239d2020-09-16 15:12:34 +08002364def get_ssrdumps(ad):
Hsiu-Chang Chen6aac0d32019-05-15 14:21:08 +08002365 """Pulls dumps in the ssrdump dir
2366 Args:
2367 ad: android device object.
Hsiu-Chang Chen6aac0d32019-05-15 14:21:08 +08002368 """
2369 logs = ad.get_file_names("/data/vendor/ssrdump/")
2370 if logs:
2371 ad.log.info("Pulling ssrdumps %s", logs)
Hsiu-Chang Chenebb239d2020-09-16 15:12:34 +08002372 log_path = os.path.join(ad.device_log_path, "SSRDUMPS_%s" % ad.serial)
Mark De Ruyter72f8df92020-02-12 13:44:49 -08002373 os.makedirs(log_path, exist_ok=True)
Hsiu-Chang Chen6aac0d32019-05-15 14:21:08 +08002374 ad.pull_files(logs, log_path)
Hsiu-Chang Chen769bef12020-10-10 06:07:52 +00002375 ad.adb.shell("find /data/vendor/ssrdump/ -type f -delete",
Omar El Ayach8c017902020-10-18 10:26:57 -07002376 ignore_status=True)
2377
Hsiu-Chang Chen6aac0d32019-05-15 14:21:08 +08002378
Xianyuan Jia0e39e552019-01-24 17:17:47 -08002379def start_pcap(pcap, wifi_band, test_name):
Girish Moturucf4dccd2018-08-27 12:22:00 -07002380 """Start packet capture in monitor mode.
2381
2382 Args:
2383 pcap: packet capture object
2384 wifi_band: '2g' or '5g' or 'dual'
Bindu Mahadev76551c12018-12-13 19:42:14 +00002385 test_name: test name to be used for pcap file name
2386
2387 Returns:
xianyuanjia0431ba32018-12-14 09:56:42 -08002388 Dictionary with wifi band as key and the tuple
2389 (pcap Process object, log directory) as the value
Girish Moturucf4dccd2018-08-27 12:22:00 -07002390 """
Xianyuan Jia0e39e552019-01-24 17:17:47 -08002391 log_dir = os.path.join(
Xianyuan Jia5cd06bb2019-06-10 16:29:57 -07002392 context.get_current_context().get_full_output_path(), 'PacketCapture')
Mark De Ruyter72f8df92020-02-12 13:44:49 -08002393 os.makedirs(log_dir, exist_ok=True)
Girish Moturucf4dccd2018-08-27 12:22:00 -07002394 if wifi_band == 'dual':
2395 bands = [BAND_2G, BAND_5G]
2396 else:
2397 bands = [wifi_band]
xianyuanjia0431ba32018-12-14 09:56:42 -08002398 procs = {}
Girish Moturucf4dccd2018-08-27 12:22:00 -07002399 for band in bands:
xianyuanjia0431ba32018-12-14 09:56:42 -08002400 proc = pcap.start_packet_capture(band, log_dir, test_name)
2401 procs[band] = (proc, os.path.join(log_dir, test_name))
2402 return procs
Girish Moturucf4dccd2018-08-27 12:22:00 -07002403
Bindu Mahadevff295782019-02-08 16:17:48 -08002404
xianyuanjia0431ba32018-12-14 09:56:42 -08002405def stop_pcap(pcap, procs, test_status=None):
Bindu Mahadev76551c12018-12-13 19:42:14 +00002406 """Stop packet capture in monitor mode.
2407
2408 Since, the pcap logs in monitor mode can be very large, we will
2409 delete them if they are not required. 'test_status' if True, will delete
2410 the pcap files. If False, we will keep them.
Girish Moturucf4dccd2018-08-27 12:22:00 -07002411
2412 Args:
2413 pcap: packet capture object
xianyuanjia0431ba32018-12-14 09:56:42 -08002414 procs: dictionary returned by start_pcap
Bindu Mahadev76551c12018-12-13 19:42:14 +00002415 test_status: status of the test case
Girish Moturucf4dccd2018-08-27 12:22:00 -07002416 """
xianyuanjia0431ba32018-12-14 09:56:42 -08002417 for proc, fname in procs.values():
2418 pcap.stop_packet_capture(proc)
Bindu Mahadev76551c12018-12-13 19:42:14 +00002419
2420 if test_status:
xianyuanjia0431ba32018-12-14 09:56:42 -08002421 shutil.rmtree(os.path.dirname(fname))
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002422
Omar El Ayach8c017902020-10-18 10:26:57 -07002423
Jaineel95887fd2019-10-16 16:19:01 -07002424def verify_mac_not_found_in_pcap(ad, mac, packets):
xshuf7267682019-06-03 14:41:56 -07002425 """Verify that a mac address is not found in the captured packets.
2426
2427 Args:
Jaineel95887fd2019-10-16 16:19:01 -07002428 ad: android device object
xshuf7267682019-06-03 14:41:56 -07002429 mac: string representation of the mac address
2430 packets: packets obtained by rdpcap(pcap_fname)
2431 """
2432 for pkt in packets:
2433 logging.debug("Packet Summary = %s", pkt.summary())
2434 if mac in pkt.summary():
Jaineel95887fd2019-10-16 16:19:01 -07002435 asserts.fail("Device %s caught Factory MAC: %s in packet sniffer."
2436 "Packet = %s" % (ad.serial, mac, pkt.show()))
Bindu Mahadevff295782019-02-08 16:17:48 -08002437
Omar El Ayach8c017902020-10-18 10:26:57 -07002438
Jaineel95887fd2019-10-16 16:19:01 -07002439def verify_mac_is_found_in_pcap(ad, mac, packets):
Nate Jiangc2c09c62019-06-05 17:26:08 -07002440 """Verify that a mac address is found in the captured packets.
2441
2442 Args:
Jaineel95887fd2019-10-16 16:19:01 -07002443 ad: android device object
Nate Jiangc2c09c62019-06-05 17:26:08 -07002444 mac: string representation of the mac address
2445 packets: packets obtained by rdpcap(pcap_fname)
2446 """
2447 for pkt in packets:
2448 if mac in pkt.summary():
2449 return
Jaineel95887fd2019-10-16 16:19:01 -07002450 asserts.fail("Did not find MAC = %s in packet sniffer."
2451 "for device %s" % (mac, ad.serial))
Nate Jiangc2c09c62019-06-05 17:26:08 -07002452
Omar El Ayach8c017902020-10-18 10:26:57 -07002453
Girish Moturuddc0d382020-08-24 12:08:41 -07002454def start_cnss_diags(ads, cnss_diag_file, pixel_models):
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002455 for ad in ads:
Girish Moturuddc0d382020-08-24 12:08:41 -07002456 start_cnss_diag(ad, cnss_diag_file, pixel_models)
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002457
Bindu Mahadevff295782019-02-08 16:17:48 -08002458
Girish Moturuddc0d382020-08-24 12:08:41 -07002459def start_cnss_diag(ad, cnss_diag_file, pixel_models):
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002460 """Start cnss_diag to record extra wifi logs
2461
2462 Args:
2463 ad: android device object.
Girish Moturuddc0d382020-08-24 12:08:41 -07002464 cnss_diag_file: cnss diag config file to push to device.
2465 pixel_models: pixel devices.
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002466 """
Girish Moturuddc0d382020-08-24 12:08:41 -07002467 if ad.model not in pixel_models:
2468 ad.log.info("Device not supported to collect pixel logger")
2469 return
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002470 if ad.model in wifi_constants.DEVICES_USING_LEGACY_PROP:
2471 prop = wifi_constants.LEGACY_CNSS_DIAG_PROP
2472 else:
2473 prop = wifi_constants.CNSS_DIAG_PROP
2474 if ad.adb.getprop(prop) != 'true':
Omar El Ayach8c017902020-10-18 10:26:57 -07002475 if not int(
2476 ad.adb.shell("ls -l %s%s | wc -l" %
2477 (CNSS_DIAG_CONFIG_PATH, CNSS_DIAG_CONFIG_FILE))):
Girish Moturuddc0d382020-08-24 12:08:41 -07002478 ad.adb.push("%s %s" % (cnss_diag_file, CNSS_DIAG_CONFIG_PATH))
Omar El Ayach8c017902020-10-18 10:26:57 -07002479 ad.adb.shell(
2480 "find /data/vendor/wifi/cnss_diag/wlan_logs/ -type f -delete",
2481 ignore_status=True)
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002482 ad.adb.shell("setprop %s true" % prop, ignore_status=True)
2483
Bindu Mahadevff295782019-02-08 16:17:48 -08002484
Girish Moturuddc0d382020-08-24 12:08:41 -07002485def stop_cnss_diags(ads, pixel_models):
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002486 for ad in ads:
Girish Moturuddc0d382020-08-24 12:08:41 -07002487 stop_cnss_diag(ad, pixel_models)
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002488
Bindu Mahadevff295782019-02-08 16:17:48 -08002489
Girish Moturuddc0d382020-08-24 12:08:41 -07002490def stop_cnss_diag(ad, pixel_models):
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002491 """Stops cnss_diag
2492
2493 Args:
2494 ad: android device object.
Girish Moturuddc0d382020-08-24 12:08:41 -07002495 pixel_models: pixel devices.
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002496 """
Girish Moturuddc0d382020-08-24 12:08:41 -07002497 if ad.model not in pixel_models:
2498 ad.log.info("Device not supported to collect pixel logger")
2499 return
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002500 if ad.model in wifi_constants.DEVICES_USING_LEGACY_PROP:
2501 prop = wifi_constants.LEGACY_CNSS_DIAG_PROP
2502 else:
2503 prop = wifi_constants.CNSS_DIAG_PROP
2504 ad.adb.shell("setprop %s false" % prop, ignore_status=True)
2505
Bindu Mahadevff295782019-02-08 16:17:48 -08002506
Hsiu-Chang Chenebb239d2020-09-16 15:12:34 +08002507def get_cnss_diag_log(ad):
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002508 """Pulls the cnss_diag logs in the wlan_logs dir
2509 Args:
2510 ad: android device object.
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002511 """
2512 logs = ad.get_file_names("/data/vendor/wifi/cnss_diag/wlan_logs/")
2513 if logs:
2514 ad.log.info("Pulling cnss_diag logs %s", logs)
Xianyuan Jia0e39e552019-01-24 17:17:47 -08002515 log_path = os.path.join(ad.device_log_path, "CNSS_DIAG_%s" % ad.serial)
Mark De Ruyter72f8df92020-02-12 13:44:49 -08002516 os.makedirs(log_path, exist_ok=True)
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002517 ad.pull_files(logs, log_path)
Bindu Mahadev7e5dc682019-02-01 16:53:34 -08002518
Bindu Mahadevff295782019-02-08 16:17:48 -08002519
Omar El Ayach8c017902020-10-18 10:26:57 -07002520LinkProbeResult = namedtuple(
2521 'LinkProbeResult',
2522 ('is_success', 'stdout', 'elapsed_time', 'failure_reason'))
David Sue4cd9c22019-03-26 18:07:26 -07002523
2524
2525def send_link_probe(ad):
2526 """Sends a link probe to the currently connected AP, and returns whether the
2527 probe succeeded or not.
2528
2529 Args:
2530 ad: android device object
2531 Returns:
2532 LinkProbeResult namedtuple
2533 """
2534 stdout = ad.adb.shell('cmd wifi send-link-probe')
2535 asserts.assert_false('Error' in stdout or 'Exception' in stdout,
2536 'Exception while sending link probe: ' + stdout)
2537
2538 is_success = False
2539 elapsed_time = None
2540 failure_reason = None
2541 if 'succeeded' in stdout:
2542 is_success = True
2543 elapsed_time = next(
2544 (int(token) for token in stdout.split() if token.isdigit()), None)
2545 elif 'failed with reason' in stdout:
2546 failure_reason = next(
2547 (int(token) for token in stdout.split() if token.isdigit()), None)
2548 else:
2549 asserts.fail('Unexpected link probe result: ' + stdout)
2550
Omar El Ayach8c017902020-10-18 10:26:57 -07002551 return LinkProbeResult(is_success=is_success,
2552 stdout=stdout,
2553 elapsed_time=elapsed_time,
2554 failure_reason=failure_reason)
David Sue4cd9c22019-03-26 18:07:26 -07002555
2556
2557def send_link_probes(ad, num_probes, delay_sec):
2558 """Sends a sequence of link probes to the currently connected AP, and
2559 returns whether the probes succeeded or not.
2560
2561 Args:
2562 ad: android device object
2563 num_probes: number of probes to perform
2564 delay_sec: delay time between probes, in seconds
2565 Returns:
2566 List[LinkProbeResult] one LinkProbeResults for each probe
2567 """
2568 logging.info('Sending link probes')
2569 results = []
2570 for _ in range(num_probes):
2571 # send_link_probe() will also fail the test if it sees an exception
2572 # in the stdout of the adb shell command
2573 result = send_link_probe(ad)
2574 logging.info('link probe results: ' + str(result))
2575 results.append(result)
2576 time.sleep(delay_sec)
2577
2578 return results
2579
2580
Bindu Mahadev7e5dc682019-02-01 16:53:34 -08002581def ap_setup(test, index, ap, network, bandwidth=80, channel=6):
Omar El Ayach8c017902020-10-18 10:26:57 -07002582 """Set up the AP with provided network info.
Bindu Mahadev7e5dc682019-02-01 16:53:34 -08002583
2584 Args:
2585 test: the calling test class object.
2586 index: int, index of the AP.
2587 ap: access_point object of the AP.
2588 network: dict with information of the network, including ssid,
2589 password and bssid.
2590 bandwidth: the operation bandwidth for the AP, default 80MHz.
2591 channel: the channel number for the AP.
2592 Returns:
2593 brconfigs: the bridge interface configs
2594 """
Omar El Ayach8c017902020-10-18 10:26:57 -07002595 bss_settings = []
2596 ssid = network[WifiEnums.SSID_KEY]
2597 test.access_points[index].close()
2598 time.sleep(5)
Bindu Mahadev7e5dc682019-02-01 16:53:34 -08002599
Omar El Ayach8c017902020-10-18 10:26:57 -07002600 # Configure AP as required.
2601 if "password" in network.keys():
2602 password = network["password"]
2603 security = hostapd_security.Security(security_mode="wpa",
2604 password=password)
2605 else:
2606 security = hostapd_security.Security(security_mode=None, password=None)
2607 config = hostapd_ap_preset.create_ap_preset(channel=channel,
2608 ssid=ssid,
2609 security=security,
2610 bss_settings=bss_settings,
2611 vht_bandwidth=bandwidth,
2612 profile_name='whirlwind',
2613 iface_wlan_2g=ap.wlan_2g,
2614 iface_wlan_5g=ap.wlan_5g)
2615 ap.start_ap(config)
2616 logging.info("AP started on channel {} with SSID {}".format(channel, ssid))
Bindu Mahadevff295782019-02-08 16:17:48 -08002617
2618
2619def turn_ap_off(test, AP):
2620 """Bring down hostapd on the Access Point.
2621 Args:
2622 test: The test class object.
2623 AP: int, indicating which AP to turn OFF.
2624 """
Omar El Ayach8c017902020-10-18 10:26:57 -07002625 hostapd_2g = test.access_points[AP - 1]._aps['wlan0'].hostapd
Bindu Mahadevff295782019-02-08 16:17:48 -08002626 if hostapd_2g.is_alive():
2627 hostapd_2g.stop()
2628 logging.debug('Turned WLAN0 AP%d off' % AP)
Omar El Ayach8c017902020-10-18 10:26:57 -07002629 hostapd_5g = test.access_points[AP - 1]._aps['wlan1'].hostapd
Bindu Mahadevff295782019-02-08 16:17:48 -08002630 if hostapd_5g.is_alive():
2631 hostapd_5g.stop()
2632 logging.debug('Turned WLAN1 AP%d off' % AP)
2633
2634
2635def turn_ap_on(test, AP):
2636 """Bring up hostapd on the Access Point.
2637 Args:
2638 test: The test class object.
2639 AP: int, indicating which AP to turn ON.
2640 """
Omar El Ayach8c017902020-10-18 10:26:57 -07002641 hostapd_2g = test.access_points[AP - 1]._aps['wlan0'].hostapd
Bindu Mahadevff295782019-02-08 16:17:48 -08002642 if not hostapd_2g.is_alive():
2643 hostapd_2g.start(hostapd_2g.config)
2644 logging.debug('Turned WLAN0 AP%d on' % AP)
Omar El Ayach8c017902020-10-18 10:26:57 -07002645 hostapd_5g = test.access_points[AP - 1]._aps['wlan1'].hostapd
Bindu Mahadevff295782019-02-08 16:17:48 -08002646 if not hostapd_5g.is_alive():
2647 hostapd_5g.start(hostapd_5g.config)
2648 logging.debug('Turned WLAN1 AP%d on' % AP)
Joe Brennan48c3f692019-04-11 08:30:16 -07002649
2650
2651def turn_location_off_and_scan_toggle_off(ad):
2652 """Turns off wifi location scans."""
2653 utils.set_location_service(ad, False)
2654 ad.droid.wifiScannerToggleAlwaysAvailable(False)
2655 msg = "Failed to turn off location service's scan."
2656 asserts.assert_true(not ad.droid.wifiScannerIsAlwaysAvailable(), msg)
Alfie Chen675be872020-06-04 10:48:14 +08002657
2658
2659def set_softap_channel(dut, ap_iface='wlan1', cs_count=10, channel=2462):
2660 """ Set SoftAP mode channel
2661
2662 Args:
2663 dut: android device object
2664 ap_iface: interface of SoftAP mode.
2665 cs_count: how many beacon frames before switch channel, default = 10
2666 channel: a wifi channel.
2667 """
2668 chan_switch_cmd = 'hostapd_cli -i {} chan_switch {} {}'
Omar El Ayach8c017902020-10-18 10:26:57 -07002669 chan_switch_cmd_show = chan_switch_cmd.format(ap_iface, cs_count, channel)
Alfie Chen675be872020-06-04 10:48:14 +08002670 dut.log.info('adb shell {}'.format(chan_switch_cmd_show))
Omar El Ayach8c017902020-10-18 10:26:57 -07002671 chan_switch_result = dut.adb.shell(
2672 chan_switch_cmd.format(ap_iface, cs_count, channel))
Alfie Chen675be872020-06-04 10:48:14 +08002673 if chan_switch_result == 'OK':
2674 dut.log.info('switch hotspot channel to {}'.format(channel))
2675 return chan_switch_result
2676
2677 asserts.fail("Failed to switch hotspot channel")