blob: ef334eb098c5534573919bfd69b39178ea049f58 [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
“Alfie90ee7cb2021-04-20 23:16:12 +080023from retry import retry
24
David Sue4cd9c22019-03-26 18:07:26 -070025from collections import namedtuple
Ang Li73697b32015-12-03 00:41:53 +000026from enum import IntEnum
27from queue import Empty
28
Ang Li82522812016-06-02 13:57:21 -070029from acts import asserts
Xianyuan Jia0e39e552019-01-24 17:17:47 -080030from acts import context
Ang Li374d7602016-02-08 17:27:27 -080031from acts import signals
Ang Lifee28402016-07-13 13:43:29 -070032from acts import utils
Ang Li2d3fe982016-06-08 10:00:43 -070033from acts.controllers import attenuator
Bindu Mahadev7e5dc682019-02-01 16:53:34 -080034from acts.controllers.ap_lib import hostapd_security
35from acts.controllers.ap_lib import hostapd_ap_preset
Girish Moturucf4dccd2018-08-27 12:22:00 -070036from acts.controllers.ap_lib.hostapd_constants import BAND_2G
37from acts.controllers.ap_lib.hostapd_constants import BAND_5G
Roshan Pius5fd42eb2021-01-21 12:26:31 -080038from acts_contrib.test_utils.net import connectivity_const as cconsts
Xianyuan Jia63751fb2020-11-17 00:07:40 +000039from acts_contrib.test_utils.tel import tel_defines
Roshan Pius5fd42eb2021-01-21 12:26:31 -080040from acts_contrib.test_utils.wifi import wifi_constants
41from acts_contrib.test_utils.wifi.aware import aware_test_utils as autils
Ang Li73697b32015-12-03 00:41:53 +000042
Bindu Mahadev1d3991e2017-03-20 18:06:54 -070043# Default timeout used for reboot, toggle WiFi and Airplane mode,
44# for the system to settle down after the operation.
45DEFAULT_TIMEOUT = 10
Ang Li73697b32015-12-03 00:41:53 +000046# Number of seconds to wait for events that are supposed to happen quickly.
47# Like onSuccess for start background scan and confirmation on wifi state
48# change.
49SHORT_TIMEOUT = 30
Bindu Mahadev7060a9f2018-05-04 13:48:12 -070050ROAMING_TIMEOUT = 30
Preetesh Barrettoe8c428b2019-02-14 09:15:44 -080051WIFI_CONNECTION_TIMEOUT_DEFAULT = 30
Ang Li73697b32015-12-03 00:41:53 +000052# Speed of light in m/s.
53SPEED_OF_LIGHT = 299792458
54
Qi Jiang8b443672018-03-16 14:46:50 -070055DEFAULT_PING_ADDR = "https://www.google.com/robots.txt"
Ang Li73697b32015-12-03 00:41:53 +000056
Girish Moturuddc0d382020-08-24 12:08:41 -070057CNSS_DIAG_CONFIG_PATH = "/data/vendor/wifi/cnss_diag/"
58CNSS_DIAG_CONFIG_FILE = "cnss_diag.conf"
59
Girish Moturu36348a32019-12-10 08:41:54 -080060ROAMING_ATTN = {
Omar El Ayach8c017902020-10-18 10:26:57 -070061 "AP1_on_AP2_off": [0, 0, 95, 95],
62 "AP1_off_AP2_on": [95, 95, 0, 0],
63 "default": [0, 0, 0, 0]
64}
Ang Li82522812016-06-02 13:57:21 -070065
Xianyuan Jia0e39e552019-01-24 17:17:47 -080066
Ang Li73697b32015-12-03 00:41:53 +000067class WifiEnums():
68
Omar El Ayach8c017902020-10-18 10:26:57 -070069 SSID_KEY = "SSID" # Used for Wifi & SoftAp
Roshan Piusc999e5e2018-11-09 10:59:52 -080070 SSID_PATTERN_KEY = "ssidPattern"
Bindu Mahadev4c94b532019-01-09 12:20:10 -080071 NETID_KEY = "network_id"
Omar El Ayach8c017902020-10-18 10:26:57 -070072 BSSID_KEY = "BSSID" # Used for Wifi & SoftAp
Roshan Piusc999e5e2018-11-09 10:59:52 -080073 BSSID_PATTERN_KEY = "bssidPattern"
Omar El Ayach8c017902020-10-18 10:26:57 -070074 PWD_KEY = "password" # Used for Wifi & SoftAp
Ang Li73697b32015-12-03 00:41:53 +000075 frequency_key = "frequency"
Omar El Ayach8c017902020-10-18 10:26:57 -070076 HIDDEN_KEY = "hiddenSSID" # Used for Wifi & SoftAp
Roshan Piusd1204442018-11-12 12:20:39 -080077 IS_APP_INTERACTION_REQUIRED = "isAppInteractionRequired"
78 IS_USER_INTERACTION_REQUIRED = "isUserInteractionRequired"
Roshan Pius55fb7c42020-04-03 14:47:18 -070079 IS_SUGGESTION_METERED = "isMetered"
Roshan Piusd1204442018-11-12 12:20:39 -080080 PRIORITY = "priority"
Omar El Ayach8c017902020-10-18 10:26:57 -070081 SECURITY = "security" # Used for Wifi & SoftAp
Ang Li73697b32015-12-03 00:41:53 +000082
leslce9cf6d2020-02-19 16:37:07 +080083 # Used for SoftAp
lesl6d30a172020-03-05 15:05:22 +080084 AP_BAND_KEY = "apBand"
85 AP_CHANNEL_KEY = "apChannel"
lesl67124362021-05-04 19:33:14 +080086 AP_BANDS_KEY = "apBands"
87 AP_CHANNEL_FREQUENCYS_KEY = "apChannelFrequencies"
88 AP_MAC_RANDOMIZATION_SETTING_KEY = "MacRandomizationSetting"
89 AP_BRIDGED_OPPORTUNISTIC_SHUTDOWN_ENABLE_KEY = "BridgedModeOpportunisticShutdownEnabled"
90 AP_IEEE80211AX_ENABLED_KEY = "Ieee80211axEnabled"
lesl6d30a172020-03-05 15:05:22 +080091 AP_MAXCLIENTS_KEY = "MaxNumberOfClients"
92 AP_SHUTDOWNTIMEOUT_KEY = "ShutdownTimeoutMillis"
93 AP_SHUTDOWNTIMEOUTENABLE_KEY = "AutoShutdownEnabled"
94 AP_CLIENTCONTROL_KEY = "ClientControlByUserEnabled"
95 AP_ALLOWEDLIST_KEY = "AllowedClientList"
96 AP_BLOCKEDLIST_KEY = "BlockedClientList"
97
leslce9cf6d2020-02-19 16:37:07 +080098 WIFI_CONFIG_SOFTAP_BAND_2G = 1
99 WIFI_CONFIG_SOFTAP_BAND_5G = 2
100 WIFI_CONFIG_SOFTAP_BAND_2G_5G = 3
101 WIFI_CONFIG_SOFTAP_BAND_6G = 4
102 WIFI_CONFIG_SOFTAP_BAND_2G_6G = 5
103 WIFI_CONFIG_SOFTAP_BAND_5G_6G = 6
104 WIFI_CONFIG_SOFTAP_BAND_ANY = 7
105
106 # DO NOT USE IT for new test case! Replaced by WIFI_CONFIG_SOFTAP_BAND_
107 WIFI_CONFIG_APBAND_2G = WIFI_CONFIG_SOFTAP_BAND_2G
108 WIFI_CONFIG_APBAND_5G = WIFI_CONFIG_SOFTAP_BAND_5G
109 WIFI_CONFIG_APBAND_AUTO = WIFI_CONFIG_SOFTAP_BAND_2G_5G
110
111 WIFI_CONFIG_APBAND_2G_OLD = 0
112 WIFI_CONFIG_APBAND_5G_OLD = 1
113 WIFI_CONFIG_APBAND_AUTO_OLD = -1
Ang Li73697b32015-12-03 00:41:53 +0000114
Ang Li82522812016-06-02 13:57:21 -0700115 WIFI_WPS_INFO_PBC = 0
116 WIFI_WPS_INFO_DISPLAY = 1
117 WIFI_WPS_INFO_KEYPAD = 2
118 WIFI_WPS_INFO_LABEL = 3
119 WIFI_WPS_INFO_INVALID = 4
Ang Li73697b32015-12-03 00:41:53 +0000120
lesl6d30a172020-03-05 15:05:22 +0800121 class SoftApSecurityType():
122 OPEN = "NONE"
123 WPA2 = "WPA2_PSK"
124 WPA3_SAE_TRANSITION = "WPA3_SAE_TRANSITION"
125 WPA3_SAE = "WPA3_SAE"
126
Ang Li73697b32015-12-03 00:41:53 +0000127 class CountryCode():
Girish Moturue648b6a2021-03-04 13:52:15 -0800128 AUSTRALIA = "AU"
Ang Li73697b32015-12-03 00:41:53 +0000129 CHINA = "CN"
Girish Moturua5ef35d2020-10-19 14:58:01 -0700130 GERMANY = "DE"
Ang Li73697b32015-12-03 00:41:53 +0000131 JAPAN = "JP"
132 UK = "GB"
133 US = "US"
134 UNKNOWN = "UNKNOWN"
135
136 # Start of Macros for EAP
137 # EAP types
138 class Eap(IntEnum):
139 NONE = -1
140 PEAP = 0
Ang Li82522812016-06-02 13:57:21 -0700141 TLS = 1
Ang Li73697b32015-12-03 00:41:53 +0000142 TTLS = 2
Ang Li82522812016-06-02 13:57:21 -0700143 PWD = 3
144 SIM = 4
145 AKA = 5
146 AKA_PRIME = 6
147 UNAUTH_TLS = 7
Ang Li73697b32015-12-03 00:41:53 +0000148
149 # EAP Phase2 types
150 class EapPhase2(IntEnum):
Ang Li82522812016-06-02 13:57:21 -0700151 NONE = 0
152 PAP = 1
153 MSCHAP = 2
154 MSCHAPV2 = 3
155 GTC = 4
Ang Li73697b32015-12-03 00:41:53 +0000156
157 class Enterprise:
Ang Li82522812016-06-02 13:57:21 -0700158 # Enterprise Config Macros
159 EMPTY_VALUE = "NULL"
160 EAP = "eap"
161 PHASE2 = "phase2"
162 IDENTITY = "identity"
163 ANON_IDENTITY = "anonymous_identity"
164 PASSWORD = "password"
165 SUBJECT_MATCH = "subject_match"
Ang Li73697b32015-12-03 00:41:53 +0000166 ALTSUBJECT_MATCH = "altsubject_match"
167 DOM_SUFFIX_MATCH = "domain_suffix_match"
Ang Li82522812016-06-02 13:57:21 -0700168 CLIENT_CERT = "client_cert"
169 CA_CERT = "ca_cert"
170 ENGINE = "engine"
171 ENGINE_ID = "engine_id"
172 PRIVATE_KEY_ID = "key_id"
173 REALM = "realm"
174 PLMN = "plmn"
175 FQDN = "FQDN"
176 FRIENDLY_NAME = "providerFriendlyName"
177 ROAMING_IDS = "roamingConsortiumIds"
Jimmy Chen7baec622020-06-23 19:00:33 +0800178 OCSP = "ocsp"
Omar El Ayach8c017902020-10-18 10:26:57 -0700179
Ang Li73697b32015-12-03 00:41:53 +0000180 # End of Macros for EAP
181
182 # Macros for wifi p2p.
183 WIFI_P2P_SERVICE_TYPE_ALL = 0
184 WIFI_P2P_SERVICE_TYPE_BONJOUR = 1
185 WIFI_P2P_SERVICE_TYPE_UPNP = 2
186 WIFI_P2P_SERVICE_TYPE_VENDOR_SPECIFIC = 255
187
188 class ScanResult:
189 CHANNEL_WIDTH_20MHZ = 0
190 CHANNEL_WIDTH_40MHZ = 1
191 CHANNEL_WIDTH_80MHZ = 2
192 CHANNEL_WIDTH_160MHZ = 3
193 CHANNEL_WIDTH_80MHZ_PLUS_MHZ = 4
194
195 # Macros for wifi rtt.
196 class RttType(IntEnum):
Ang Li82522812016-06-02 13:57:21 -0700197 TYPE_ONE_SIDED = 1
198 TYPE_TWO_SIDED = 2
Ang Li73697b32015-12-03 00:41:53 +0000199
200 class RttPeerType(IntEnum):
Ang Li82522812016-06-02 13:57:21 -0700201 PEER_TYPE_AP = 1
202 PEER_TYPE_STA = 2 # Requires NAN.
203 PEER_P2P_GO = 3
204 PEER_P2P_CLIENT = 4
205 PEER_NAN = 5
Ang Li73697b32015-12-03 00:41:53 +0000206
207 class RttPreamble(IntEnum):
Ang Li82522812016-06-02 13:57:21 -0700208 PREAMBLE_LEGACY = 0x01
209 PREAMBLE_HT = 0x02
210 PREAMBLE_VHT = 0x04
Ang Li73697b32015-12-03 00:41:53 +0000211
212 class RttBW(IntEnum):
Ang Li82522812016-06-02 13:57:21 -0700213 BW_5_SUPPORT = 0x01
214 BW_10_SUPPORT = 0x02
215 BW_20_SUPPORT = 0x04
216 BW_40_SUPPORT = 0x08
217 BW_80_SUPPORT = 0x10
Ang Li73697b32015-12-03 00:41:53 +0000218 BW_160_SUPPORT = 0x20
219
220 class Rtt(IntEnum):
Ang Li82522812016-06-02 13:57:21 -0700221 STATUS_SUCCESS = 0
222 STATUS_FAILURE = 1
223 STATUS_FAIL_NO_RSP = 2
224 STATUS_FAIL_REJECTED = 3
225 STATUS_FAIL_NOT_SCHEDULED_YET = 4
226 STATUS_FAIL_TM_TIMEOUT = 5
227 STATUS_FAIL_AP_ON_DIFF_CHANNEL = 6
228 STATUS_FAIL_NO_CAPABILITY = 7
229 STATUS_ABORTED = 8
230 STATUS_FAIL_INVALID_TS = 9
231 STATUS_FAIL_PROTOCOL = 10
232 STATUS_FAIL_SCHEDULE = 11
233 STATUS_FAIL_BUSY_TRY_LATER = 12
234 STATUS_INVALID_REQ = 13
235 STATUS_NO_WIFI = 14
236 STATUS_FAIL_FTM_PARAM_OVERRIDE = 15
Ang Li73697b32015-12-03 00:41:53 +0000237
Ang Li82522812016-06-02 13:57:21 -0700238 REASON_UNSPECIFIED = -1
239 REASON_NOT_AVAILABLE = -2
240 REASON_INVALID_LISTENER = -3
241 REASON_INVALID_REQUEST = -4
Ang Li73697b32015-12-03 00:41:53 +0000242
243 class RttParam:
244 device_type = "deviceType"
245 request_type = "requestType"
246 BSSID = "bssid"
247 channel_width = "channelWidth"
248 frequency = "frequency"
249 center_freq0 = "centerFreq0"
250 center_freq1 = "centerFreq1"
251 number_burst = "numberBurst"
252 interval = "interval"
253 num_samples_per_burst = "numSamplesPerBurst"
254 num_retries_per_measurement_frame = "numRetriesPerMeasurementFrame"
255 num_retries_per_FTMR = "numRetriesPerFTMR"
256 lci_request = "LCIRequest"
257 lcr_request = "LCRRequest"
258 burst_timeout = "burstTimeout"
259 preamble = "preamble"
260 bandwidth = "bandwidth"
261 margin = "margin"
262
263 RTT_MARGIN_OF_ERROR = {
264 RttBW.BW_80_SUPPORT: 2,
265 RttBW.BW_40_SUPPORT: 5,
266 RttBW.BW_20_SUPPORT: 5
267 }
268
269 # Macros as specified in the WifiScanner code.
Ang Li82522812016-06-02 13:57:21 -0700270 WIFI_BAND_UNSPECIFIED = 0 # not specified
271 WIFI_BAND_24_GHZ = 1 # 2.4 GHz band
272 WIFI_BAND_5_GHZ = 2 # 5 GHz band without DFS channels
273 WIFI_BAND_5_GHZ_DFS_ONLY = 4 # 5 GHz band with DFS channels
274 WIFI_BAND_5_GHZ_WITH_DFS = 6 # 5 GHz band with DFS channels
275 WIFI_BAND_BOTH = 3 # both bands without DFS channels
276 WIFI_BAND_BOTH_WITH_DFS = 7 # both bands with DFS channels
Ang Li73697b32015-12-03 00:41:53 +0000277
278 REPORT_EVENT_AFTER_BUFFER_FULL = 0
279 REPORT_EVENT_AFTER_EACH_SCAN = 1
280 REPORT_EVENT_FULL_SCAN_RESULT = 2
281
xshuaabcfeb2018-02-14 11:43:24 -0800282 SCAN_TYPE_LOW_LATENCY = 0
283 SCAN_TYPE_LOW_POWER = 1
284 SCAN_TYPE_HIGH_ACCURACY = 2
285
Ang Li73697b32015-12-03 00:41:53 +0000286 # US Wifi frequencies
Omar El Ayach8c017902020-10-18 10:26:57 -0700287 ALL_2G_FREQUENCIES = [
288 2412, 2417, 2422, 2427, 2432, 2437, 2442, 2447, 2452, 2457, 2462
289 ]
290 DFS_5G_FREQUENCIES = [
291 5260, 5280, 5300, 5320, 5500, 5520, 5540, 5560, 5580, 5600, 5620, 5640,
292 5660, 5680, 5700, 5720
293 ]
294 NONE_DFS_5G_FREQUENCIES = [
295 5180, 5200, 5220, 5240, 5745, 5765, 5785, 5805, 5825
296 ]
Ang Li73697b32015-12-03 00:41:53 +0000297 ALL_5G_FREQUENCIES = DFS_5G_FREQUENCIES + NONE_DFS_5G_FREQUENCIES
298
299 band_to_frequencies = {
Ang Li82522812016-06-02 13:57:21 -0700300 WIFI_BAND_24_GHZ: ALL_2G_FREQUENCIES,
301 WIFI_BAND_5_GHZ: NONE_DFS_5G_FREQUENCIES,
302 WIFI_BAND_5_GHZ_DFS_ONLY: DFS_5G_FREQUENCIES,
303 WIFI_BAND_5_GHZ_WITH_DFS: ALL_5G_FREQUENCIES,
304 WIFI_BAND_BOTH: ALL_2G_FREQUENCIES + NONE_DFS_5G_FREQUENCIES,
305 WIFI_BAND_BOTH_WITH_DFS: ALL_5G_FREQUENCIES + ALL_2G_FREQUENCIES
Ang Li73697b32015-12-03 00:41:53 +0000306 }
307
308 # All Wifi frequencies to channels lookup.
309 freq_to_channel = {
310 2412: 1,
311 2417: 2,
312 2422: 3,
313 2427: 4,
314 2432: 5,
315 2437: 6,
316 2442: 7,
317 2447: 8,
318 2452: 9,
319 2457: 10,
320 2462: 11,
321 2467: 12,
322 2472: 13,
323 2484: 14,
324 4915: 183,
325 4920: 184,
326 4925: 185,
327 4935: 187,
328 4940: 188,
329 4945: 189,
330 4960: 192,
331 4980: 196,
332 5035: 7,
333 5040: 8,
334 5045: 9,
335 5055: 11,
336 5060: 12,
337 5080: 16,
338 5170: 34,
339 5180: 36,
340 5190: 38,
341 5200: 40,
342 5210: 42,
343 5220: 44,
344 5230: 46,
345 5240: 48,
346 5260: 52,
347 5280: 56,
348 5300: 60,
349 5320: 64,
350 5500: 100,
351 5520: 104,
352 5540: 108,
353 5560: 112,
354 5580: 116,
355 5600: 120,
356 5620: 124,
357 5640: 128,
358 5660: 132,
359 5680: 136,
360 5700: 140,
361 5745: 149,
362 5765: 153,
363 5785: 157,
Omar El Ayachdb8463b2020-05-15 18:08:23 -0700364 5795: 159,
Ang Li73697b32015-12-03 00:41:53 +0000365 5805: 161,
366 5825: 165,
367 }
368
369 # All Wifi channels to frequencies lookup.
370 channel_2G_to_freq = {
371 1: 2412,
372 2: 2417,
373 3: 2422,
374 4: 2427,
375 5: 2432,
376 6: 2437,
377 7: 2442,
378 8: 2447,
379 9: 2452,
380 10: 2457,
381 11: 2462,
382 12: 2467,
383 13: 2472,
384 14: 2484
385 }
386
387 channel_5G_to_freq = {
388 183: 4915,
389 184: 4920,
390 185: 4925,
391 187: 4935,
392 188: 4940,
393 189: 4945,
394 192: 4960,
395 196: 4980,
396 7: 5035,
397 8: 5040,
398 9: 5045,
399 11: 5055,
400 12: 5060,
401 16: 5080,
402 34: 5170,
403 36: 5180,
404 38: 5190,
405 40: 5200,
406 42: 5210,
407 44: 5220,
408 46: 5230,
409 48: 5240,
Omar El Ayach8c017902020-10-18 10:26:57 -0700410 50: 5250,
Ang Li73697b32015-12-03 00:41:53 +0000411 52: 5260,
412 56: 5280,
413 60: 5300,
414 64: 5320,
415 100: 5500,
416 104: 5520,
417 108: 5540,
418 112: 5560,
419 116: 5580,
420 120: 5600,
421 124: 5620,
422 128: 5640,
423 132: 5660,
424 136: 5680,
425 140: 5700,
426 149: 5745,
Omar El Ayachdb8463b2020-05-15 18:08:23 -0700427 151: 5755,
Ang Li73697b32015-12-03 00:41:53 +0000428 153: 5765,
Omar El Ayachdb8463b2020-05-15 18:08:23 -0700429 155: 5775,
Ang Li73697b32015-12-03 00:41:53 +0000430 157: 5785,
Omar El Ayachdb8463b2020-05-15 18:08:23 -0700431 159: 5795,
Ang Li73697b32015-12-03 00:41:53 +0000432 161: 5805,
433 165: 5825
434 }
435
Ang Li82522812016-06-02 13:57:21 -0700436
Ang Li73697b32015-12-03 00:41:53 +0000437class WifiChannelBase:
438 ALL_2G_FREQUENCIES = []
439 DFS_5G_FREQUENCIES = []
440 NONE_DFS_5G_FREQUENCIES = []
441 ALL_5G_FREQUENCIES = DFS_5G_FREQUENCIES + NONE_DFS_5G_FREQUENCIES
442 MIX_CHANNEL_SCAN = []
443
444 def band_to_freq(self, band):
445 _band_to_frequencies = {
Omar El Ayach8c017902020-10-18 10:26:57 -0700446 WifiEnums.WIFI_BAND_24_GHZ:
447 self.ALL_2G_FREQUENCIES,
448 WifiEnums.WIFI_BAND_5_GHZ:
449 self.NONE_DFS_5G_FREQUENCIES,
450 WifiEnums.WIFI_BAND_5_GHZ_DFS_ONLY:
451 self.DFS_5G_FREQUENCIES,
452 WifiEnums.WIFI_BAND_5_GHZ_WITH_DFS:
453 self.ALL_5G_FREQUENCIES,
Ang Li82522812016-06-02 13:57:21 -0700454 WifiEnums.WIFI_BAND_BOTH:
455 self.ALL_2G_FREQUENCIES + self.NONE_DFS_5G_FREQUENCIES,
456 WifiEnums.WIFI_BAND_BOTH_WITH_DFS:
457 self.ALL_5G_FREQUENCIES + self.ALL_2G_FREQUENCIES
Ang Li73697b32015-12-03 00:41:53 +0000458 }
459 return _band_to_frequencies[band]
460
Ang Li82522812016-06-02 13:57:21 -0700461
Ang Li73697b32015-12-03 00:41:53 +0000462class WifiChannelUS(WifiChannelBase):
463 # US Wifi frequencies
Omar El Ayach8c017902020-10-18 10:26:57 -0700464 ALL_2G_FREQUENCIES = [
465 2412, 2417, 2422, 2427, 2432, 2437, 2442, 2447, 2452, 2457, 2462
466 ]
467 NONE_DFS_5G_FREQUENCIES = [
468 5180, 5200, 5220, 5240, 5745, 5765, 5785, 5805, 5825
469 ]
470 MIX_CHANNEL_SCAN = [
471 2412, 2437, 2462, 5180, 5200, 5280, 5260, 5300, 5500, 5320, 5520, 5560,
472 5700, 5745, 5805
473 ]
Ang Li73697b32015-12-03 00:41:53 +0000474
475 def __init__(self, model=None):
Omar El Ayach8c017902020-10-18 10:26:57 -0700476 self.DFS_5G_FREQUENCIES = [
477 5260, 5280, 5300, 5320, 5500, 5520, 5540, 5560, 5580, 5600, 5620,
478 5640, 5660, 5680, 5700, 5720
479 ]
Girish Moturu0c567b02017-08-11 16:20:01 -0700480 self.ALL_5G_FREQUENCIES = self.DFS_5G_FREQUENCIES + self.NONE_DFS_5G_FREQUENCIES
Ang Li73697b32015-12-03 00:41:53 +0000481
Bindu Mahadevff295782019-02-08 16:17:48 -0800482
Girish Moturuf02fa1d2017-05-21 09:51:23 +0530483class WifiReferenceNetworks:
484 """ Class to parse and return networks of different band and
485 auth type from reference_networks
486 """
487 def __init__(self, obj):
488 self.reference_networks = obj
489 self.WIFI_2G = "2g"
490 self.WIFI_5G = "5g"
491
492 self.secure_networks_2g = []
493 self.secure_networks_5g = []
494 self.open_networks_2g = []
495 self.open_networks_5g = []
496 self._parse_networks()
497
498 def _parse_networks(self):
499 for network in self.reference_networks:
500 for key in network:
501 if key == self.WIFI_2G:
502 if "password" in network[key]:
503 self.secure_networks_2g.append(network[key])
504 else:
505 self.open_networks_2g.append(network[key])
506 else:
507 if "password" in network[key]:
508 self.secure_networks_5g.append(network[key])
509 else:
510 self.open_networks_5g.append(network[key])
511
512 def return_2g_secure_networks(self):
513 return self.secure_networks_2g
514
515 def return_5g_secure_networks(self):
516 return self.secure_networks_5g
517
518 def return_2g_open_networks(self):
519 return self.open_networks_2g
520
521 def return_5g_open_networks(self):
522 return self.open_networks_5g
523
524 def return_secure_networks(self):
525 return self.secure_networks_2g + self.secure_networks_5g
526
527 def return_open_networks(self):
528 return self.open_networks_2g + self.open_networks_5g
529
Ang Li82522812016-06-02 13:57:21 -0700530
531def _assert_on_fail_handler(func, assert_on_fail, *args, **kwargs):
532 """Wrapper function that handles the bahevior of assert_on_fail.
533
534 When assert_on_fail is True, let all test signals through, which can
535 terminate test cases directly. When assert_on_fail is False, the wrapper
536 raises no test signals and reports operation status by returning True or
537 False.
538
539 Args:
540 func: The function to wrap. This function reports operation status by
541 raising test signals.
542 assert_on_fail: A boolean that specifies if the output of the wrapper
543 is test signal based or return value based.
544 args: Positional args for func.
545 kwargs: Name args for func.
546
547 Returns:
548 If assert_on_fail is True, returns True/False to signal operation
549 status, otherwise return nothing.
550 """
551 try:
552 func(*args, **kwargs)
553 if not assert_on_fail:
554 return True
555 except signals.TestSignal:
556 if assert_on_fail:
557 raise
558 return False
559
560
561def assert_network_in_list(target, network_list):
562 """Makes sure a specified target Wi-Fi network exists in a list of Wi-Fi
563 networks.
564
565 Args:
566 target: A dict representing a Wi-Fi network.
567 E.g. {WifiEnums.SSID_KEY: "SomeNetwork"}
568 network_list: A list of dicts, each representing a Wi-Fi network.
569 """
570 match_results = match_networks(target, network_list)
571 asserts.assert_true(
572 match_results, "Target network %s, does not exist in network list %s" %
573 (target, network_list))
574
575
Ang Li73697b32015-12-03 00:41:53 +0000576def match_networks(target_params, networks):
577 """Finds the WiFi networks that match a given set of parameters in a list
578 of WiFi networks.
579
Girish Moturubc48d9f2016-11-01 13:24:14 -0700580 To be considered a match, the network should contain every key-value pair
581 of target_params
Ang Li73697b32015-12-03 00:41:53 +0000582
583 Args:
Girish Moturubc48d9f2016-11-01 13:24:14 -0700584 target_params: A dict with 1 or more key-value pairs representing a Wi-Fi network.
585 E.g { 'SSID': 'wh_ap1_5g', 'BSSID': '30:b5:c2:33:e4:47' }
Ang Li73697b32015-12-03 00:41:53 +0000586 networks: A list of dict objects representing WiFi networks.
587
588 Returns:
589 The networks that match the target parameters.
590 """
591 results = []
Betty Zhou3caa0982017-02-22 19:26:20 -0800592 asserts.assert_true(target_params,
593 "Expected networks object 'target_params' is empty")
Ang Li73697b32015-12-03 00:41:53 +0000594 for n in networks:
Girish Moturubc48d9f2016-11-01 13:24:14 -0700595 add_network = 1
Ang Li9a66de72016-02-08 15:26:38 -0800596 for k, v in target_params.items():
597 if k not in n:
Girish Moturubc48d9f2016-11-01 13:24:14 -0700598 add_network = 0
599 break
Ang Li9a66de72016-02-08 15:26:38 -0800600 if n[k] != v:
Girish Moturubc48d9f2016-11-01 13:24:14 -0700601 add_network = 0
602 break
603 if add_network:
Ang Li73697b32015-12-03 00:41:53 +0000604 results.append(n)
605 return results
606
Bindu Mahadevff295782019-02-08 16:17:48 -0800607
Roshan Pius93b519c2018-05-09 12:07:11 -0700608def wait_for_wifi_state(ad, state, assert_on_fail=True):
609 """Waits for the device to transition to the specified wifi state
610
611 Args:
612 ad: An AndroidDevice object.
613 state: Wifi state to wait for.
614 assert_on_fail: If True, error checks in this function will raise test
615 failure signals.
616
617 Returns:
618 If assert_on_fail is False, function returns True if the device transitions
619 to the specified state, False otherwise. If assert_on_fail is True, no return value.
620 """
Omar El Ayach8c017902020-10-18 10:26:57 -0700621 return _assert_on_fail_handler(_wait_for_wifi_state,
622 assert_on_fail,
623 ad,
624 state=state)
Roshan Pius93b519c2018-05-09 12:07:11 -0700625
626
627def _wait_for_wifi_state(ad, state):
628 """Toggles the state of wifi.
629
630 TestFailure signals are raised when something goes wrong.
631
632 Args:
633 ad: An AndroidDevice object.
634 state: Wifi state to wait for.
635 """
636 if state == ad.droid.wifiCheckState():
637 # Check if the state is already achieved, so we don't wait for the
638 # state change event by mistake.
639 return
640 ad.droid.wifiStartTrackingStateChange()
Omar El Ayach8c017902020-10-18 10:26:57 -0700641 fail_msg = "Device did not transition to Wi-Fi state to %s on %s." % (
642 state, ad.serial)
Roshan Pius93b519c2018-05-09 12:07:11 -0700643 try:
644 ad.ed.wait_for_event(wifi_constants.WIFI_STATE_CHANGED,
645 lambda x: x["data"]["enabled"] == state,
646 SHORT_TIMEOUT)
647 except Empty:
648 asserts.assert_equal(state, ad.droid.wifiCheckState(), fail_msg)
649 finally:
650 ad.droid.wifiStopTrackingStateChange()
Ang Li82522812016-06-02 13:57:21 -0700651
Bindu Mahadevff295782019-02-08 16:17:48 -0800652
Ang Li82522812016-06-02 13:57:21 -0700653def wifi_toggle_state(ad, new_state=None, assert_on_fail=True):
Ang Li6b557182015-11-11 17:19:17 -0800654 """Toggles the state of wifi.
Ang Li73697b32015-12-03 00:41:53 +0000655
Ang Li6b557182015-11-11 17:19:17 -0800656 Args:
657 ad: An AndroidDevice object.
658 new_state: Wifi state to set to. If None, opposite of the current state.
Ang Li82522812016-06-02 13:57:21 -0700659 assert_on_fail: If True, error checks in this function will raise test
660 failure signals.
Ang Li73697b32015-12-03 00:41:53 +0000661
Ang Li6b557182015-11-11 17:19:17 -0800662 Returns:
Ang Li82522812016-06-02 13:57:21 -0700663 If assert_on_fail is False, function returns True if the toggle was
664 successful, False otherwise. If assert_on_fail is True, no return value.
665 """
Omar El Ayach8c017902020-10-18 10:26:57 -0700666 return _assert_on_fail_handler(_wifi_toggle_state,
667 assert_on_fail,
668 ad,
669 new_state=new_state)
Ang Li82522812016-06-02 13:57:21 -0700670
671
672def _wifi_toggle_state(ad, new_state=None):
673 """Toggles the state of wifi.
674
675 TestFailure signals are raised when something goes wrong.
676
677 Args:
678 ad: An AndroidDevice object.
679 new_state: The state to set Wi-Fi to. If None, opposite of the current
680 state will be set.
Ang Li6b557182015-11-11 17:19:17 -0800681 """
Ang Li31b00782016-06-21 13:04:23 -0700682 if new_state is None:
683 new_state = not ad.droid.wifiCheckState()
Ang Lie5c85c92016-07-27 15:38:09 -0700684 elif new_state == ad.droid.wifiCheckState():
685 # Check if the new_state is already achieved, so we don't wait for the
686 # state change event by mistake.
687 return
688 ad.droid.wifiStartTrackingStateChange()
Ang Li31b00782016-06-21 13:04:23 -0700689 ad.log.info("Setting Wi-Fi state to %s.", new_state)
Roshan Pius5a027fa2018-05-04 13:59:38 -0700690 ad.ed.clear_all_events()
Ang Li31b00782016-06-21 13:04:23 -0700691 # Setting wifi state.
Ang Li6b557182015-11-11 17:19:17 -0800692 ad.droid.wifiToggleState(new_state)
Jaineel3bd9bea2019-12-13 12:44:17 -0800693 time.sleep(2)
Ang Lie2e93a22016-06-22 16:43:28 -0700694 fail_msg = "Failed to set Wi-Fi state to %s on %s." % (new_state,
695 ad.serial)
Ang Li73697b32015-12-03 00:41:53 +0000696 try:
Roshan Pius5a027fa2018-05-04 13:59:38 -0700697 ad.ed.wait_for_event(wifi_constants.WIFI_STATE_CHANGED,
698 lambda x: x["data"]["enabled"] == new_state,
699 SHORT_TIMEOUT)
Ang Li73697b32015-12-03 00:41:53 +0000700 except Empty:
Ang Li82522812016-06-02 13:57:21 -0700701 asserts.assert_equal(new_state, ad.droid.wifiCheckState(), fail_msg)
Ang Li6b557182015-11-11 17:19:17 -0800702 finally:
703 ad.droid.wifiStopTrackingStateChange()
704
Ang Li82522812016-06-02 13:57:21 -0700705
Ang Li6b557182015-11-11 17:19:17 -0800706def reset_wifi(ad):
Ang Li1179fa72016-06-16 09:44:06 -0700707 """Clears all saved Wi-Fi networks on a device.
708
709 This will turn Wi-Fi on.
Ang Li6b557182015-11-11 17:19:17 -0800710
711 Args:
712 ad: An AndroidDevice object.
713
Ang Li6b557182015-11-11 17:19:17 -0800714 """
Ang Li6b557182015-11-11 17:19:17 -0800715 networks = ad.droid.wifiGetConfiguredNetworks()
716 if not networks:
717 return
718 for n in networks:
719 ad.droid.wifiForgetNetwork(n['networkId'])
720 try:
Bindu Mahadev4e710362016-11-17 16:17:11 -0800721 event = ad.ed.pop_event(wifi_constants.WIFI_FORGET_NW_SUCCESS,
Ang Li82522812016-06-02 13:57:21 -0700722 SHORT_TIMEOUT)
Ang Li6b557182015-11-11 17:19:17 -0800723 except Empty:
Ang Li1179fa72016-06-16 09:44:06 -0700724 logging.warning("Could not confirm the removal of network %s.", n)
725 # Check again to see if there's any network left.
Betty Zhou3caa0982017-02-22 19:26:20 -0800726 asserts.assert_true(
727 not ad.droid.wifiGetConfiguredNetworks(),
728 "Failed to remove these configured Wi-Fi networks: %s" % networks)
Ang Li82522812016-06-02 13:57:21 -0700729
Ang Li73697b32015-12-03 00:41:53 +0000730
Bindu Mahadev1d3991e2017-03-20 18:06:54 -0700731def toggle_airplane_mode_on_and_off(ad):
732 """Turn ON and OFF Airplane mode.
Bindu Mahadev3c54c492017-02-15 16:00:08 -0800733
Bindu Mahadev1d3991e2017-03-20 18:06:54 -0700734 ad: An AndroidDevice object.
735 Returns: Assert if turning on/off Airplane mode fails.
Bindu Mahadev3c54c492017-02-15 16:00:08 -0800736
Bindu Mahadev1d3991e2017-03-20 18:06:54 -0700737 """
738 ad.log.debug("Toggling Airplane mode ON.")
Omar El Ayach8c017902020-10-18 10:26:57 -0700739 asserts.assert_true(utils.force_airplane_mode(ad, True),
740 "Can not turn on airplane mode on: %s" % ad.serial)
Bindu Mahadev1d3991e2017-03-20 18:06:54 -0700741 time.sleep(DEFAULT_TIMEOUT)
742 ad.log.debug("Toggling Airplane mode OFF.")
Omar El Ayach8c017902020-10-18 10:26:57 -0700743 asserts.assert_true(utils.force_airplane_mode(ad, False),
744 "Can not turn on airplane mode on: %s" % ad.serial)
Bindu Mahadev1d3991e2017-03-20 18:06:54 -0700745 time.sleep(DEFAULT_TIMEOUT)
Bindu Mahadev3c54c492017-02-15 16:00:08 -0800746
747
Bindu Mahadev1d3991e2017-03-20 18:06:54 -0700748def toggle_wifi_off_and_on(ad):
749 """Turn OFF and ON WiFi.
Bindu Mahadev3c54c492017-02-15 16:00:08 -0800750
Bindu Mahadev1d3991e2017-03-20 18:06:54 -0700751 ad: An AndroidDevice object.
752 Returns: Assert if turning off/on WiFi fails.
Bindu Mahadev3c54c492017-02-15 16:00:08 -0800753
Bindu Mahadev1d3991e2017-03-20 18:06:54 -0700754 """
755 ad.log.debug("Toggling wifi OFF.")
756 wifi_toggle_state(ad, False)
757 time.sleep(DEFAULT_TIMEOUT)
758 ad.log.debug("Toggling wifi ON.")
759 wifi_toggle_state(ad, True)
760 time.sleep(DEFAULT_TIMEOUT)
Bindu Mahadev3c54c492017-02-15 16:00:08 -0800761
762
Ang Li73697b32015-12-03 00:41:53 +0000763def wifi_forget_network(ad, net_ssid):
Ang Li8e767182015-12-09 17:29:24 -0800764 """Remove configured Wifi network on an android device.
Ang Li73697b32015-12-03 00:41:53 +0000765
Ang Li8e767182015-12-09 17:29:24 -0800766 Args:
767 ad: android_device object for forget network.
768 net_ssid: ssid of network to be forget
Ang Li73697b32015-12-03 00:41:53 +0000769
Ang Li8e767182015-12-09 17:29:24 -0800770 """
Girish Moturu40d7dc22016-11-02 12:14:56 -0700771 networks = ad.droid.wifiGetConfiguredNetworks()
Ang Li8e767182015-12-09 17:29:24 -0800772 if not networks:
773 return
774 for n in networks:
775 if net_ssid in n[WifiEnums.SSID_KEY]:
Girish Moturu40d7dc22016-11-02 12:14:56 -0700776 ad.droid.wifiForgetNetwork(n['networkId'])
Ang Li8e767182015-12-09 17:29:24 -0800777 try:
Bindu Mahadev4e710362016-11-17 16:17:11 -0800778 event = ad.ed.pop_event(wifi_constants.WIFI_FORGET_NW_SUCCESS,
Betty Zhou3caa0982017-02-22 19:26:20 -0800779 SHORT_TIMEOUT)
Ang Li8e767182015-12-09 17:29:24 -0800780 except Empty:
Girish Moturu1bf82302016-11-01 13:27:00 -0700781 asserts.fail("Failed to remove network %s." % n)
Jimmy Chen8e40e152021-05-06 14:37:18 +0800782 break
Ang Li73697b32015-12-03 00:41:53 +0000783
Ang Li82522812016-06-02 13:57:21 -0700784
Ang Li73697b32015-12-03 00:41:53 +0000785def wifi_test_device_init(ad):
786 """Initializes an android device for wifi testing.
787
788 0. Make sure SL4A connection is established on the android device.
789 1. Disable location service's WiFi scan.
790 2. Turn WiFi on.
791 3. Clear all saved networks.
792 4. Set country code to US.
793 5. Enable WiFi verbose logging.
794 6. Sync device time with computer time.
795 7. Turn off cellular data.
Ang Lifee28402016-07-13 13:43:29 -0700796 8. Turn off ambient display.
Ang Li73697b32015-12-03 00:41:53 +0000797 """
Ang Lifee28402016-07-13 13:43:29 -0700798 utils.require_sl4a((ad, ))
Ang Li73697b32015-12-03 00:41:53 +0000799 ad.droid.wifiScannerToggleAlwaysAvailable(False)
800 msg = "Failed to turn off location service's scan."
Ang Li82522812016-06-02 13:57:21 -0700801 asserts.assert_true(not ad.droid.wifiScannerIsAlwaysAvailable(), msg)
802 wifi_toggle_state(ad, True)
Ang Li6b557182015-11-11 17:19:17 -0800803 reset_wifi(ad)
Ang Li73697b32015-12-03 00:41:53 +0000804 ad.droid.wifiEnableVerboseLogging(1)
Ang Li8e767182015-12-09 17:29:24 -0800805 msg = "Failed to enable WiFi verbose logging."
Ang Li82522812016-06-02 13:57:21 -0700806 asserts.assert_equal(ad.droid.wifiGetVerboseLoggingLevel(), 1, msg)
Ang Li73697b32015-12-03 00:41:53 +0000807 # We don't verify the following settings since they are not critical.
Ang Lie2e93a22016-06-22 16:43:28 -0700808 # Set wpa_supplicant log level to EXCESSIVE.
Omar El Ayach8c017902020-10-18 10:26:57 -0700809 output = ad.adb.shell(
810 "wpa_cli -i wlan0 -p -g@android:wpa_wlan0 IFNAME="
811 "wlan0 log_level EXCESSIVE",
812 ignore_status=True)
Ang Lie2e93a22016-06-22 16:43:28 -0700813 ad.log.info("wpa_supplicant log change status: %s", output)
Ang Lifee28402016-07-13 13:43:29 -0700814 utils.sync_device_time(ad)
Ang Li0bf8e022016-01-04 17:34:48 -0800815 ad.droid.telephonyToggleDataConnection(False)
Roshan Pius48df08c2019-09-13 08:07:30 -0700816 set_wifi_country_code(ad, WifiEnums.CountryCode.US)
Ang Lifee28402016-07-13 13:43:29 -0700817 utils.set_ambient_display(ad, False)
Ang Li73697b32015-12-03 00:41:53 +0000818
Omar El Ayach8c017902020-10-18 10:26:57 -0700819
Roshan Pius48df08c2019-09-13 08:07:30 -0700820def set_wifi_country_code(ad, country_code):
821 """Sets the wifi country code on the device.
822
823 Args:
824 ad: An AndroidDevice object.
825 country_code: 2 letter ISO country code
codycaldwell35b87182020-01-16 14:08:01 -0800826
827 Raises:
828 An RpcException if unable to set the country code.
Roshan Pius48df08c2019-09-13 08:07:30 -0700829 """
Jaineelc5b56a62019-10-10 17:12:02 -0700830 try:
codycaldwell35b87182020-01-16 14:08:01 -0800831 ad.adb.shell("cmd wifi force-country-code enabled %s" % country_code)
Jaineel Mehtacbad5cc2020-11-19 21:38:18 +0000832 except Exception as e:
Jaineelc5b56a62019-10-10 17:12:02 -0700833 ad.droid.wifiSetCountryCode(WifiEnums.CountryCode.US)
Roshan Pius48df08c2019-09-13 08:07:30 -0700834
Ang Li82522812016-06-02 13:57:21 -0700835
Ang Li6b557182015-11-11 17:19:17 -0800836def start_wifi_connection_scan(ad):
Ang Li73697b32015-12-03 00:41:53 +0000837 """Starts a wifi connection scan and wait for results to become available.
838
839 Args:
Ang Li6b557182015-11-11 17:19:17 -0800840 ad: An AndroidDevice object.
Ang Li73697b32015-12-03 00:41:53 +0000841 """
Roshan Pius7f61f1c2018-01-24 18:36:49 -0800842 ad.ed.clear_all_events()
Ang Li6b557182015-11-11 17:19:17 -0800843 ad.droid.wifiStartScan()
Ang Li82522812016-06-02 13:57:21 -0700844 try:
845 ad.ed.pop_event("WifiManagerScanResultsAvailable", 60)
846 except Empty:
847 asserts.fail("Wi-Fi results did not become available within 60s.")
848
Ang Li73697b32015-12-03 00:41:53 +0000849
Roshan Piuscb9bc482018-02-01 14:27:09 -0800850def start_wifi_connection_scan_and_return_status(ad):
851 """
852 Starts a wifi connection scan and wait for results to become available
853 or a scan failure to be reported.
854
855 Args:
856 ad: An AndroidDevice object.
857 Returns:
858 True: if scan succeeded & results are available
859 False: if scan failed
860 """
861 ad.ed.clear_all_events()
862 ad.droid.wifiStartScan()
863 try:
Omar El Ayach8c017902020-10-18 10:26:57 -0700864 events = ad.ed.pop_events("WifiManagerScan(ResultsAvailable|Failure)",
865 60)
Roshan Piuscb9bc482018-02-01 14:27:09 -0800866 except Empty:
867 asserts.fail(
868 "Wi-Fi scan results/failure did not become available within 60s.")
869 # If there are multiple matches, we check for atleast one success.
870 for event in events:
871 if event["name"] == "WifiManagerScanResultsAvailable":
872 return True
873 elif event["name"] == "WifiManagerScanFailure":
874 ad.log.debug("Scan failure received")
875 return False
876
877
Omar El Ayach8c017902020-10-18 10:26:57 -0700878def start_wifi_connection_scan_and_check_for_network(ad,
879 network_ssid,
Roshan Piuscb9bc482018-02-01 14:27:09 -0800880 max_tries=3):
Roshan Pius7f61f1c2018-01-24 18:36:49 -0800881 """
882 Start connectivity scans & checks if the |network_ssid| is seen in
883 scan results. The method performs a max of |max_tries| connectivity scans
884 to find the network.
885
886 Args:
887 ad: An AndroidDevice object.
888 network_ssid: SSID of the network we are looking for.
889 max_tries: Number of scans to try.
890 Returns:
891 True: if network_ssid is found in scan results.
892 False: if network_ssid is not found in scan results.
893 """
894 for num_tries in range(max_tries):
Roshan Piuscb9bc482018-02-01 14:27:09 -0800895 if start_wifi_connection_scan_and_return_status(ad):
896 scan_results = ad.droid.wifiGetScanResults()
Omar El Ayach8c017902020-10-18 10:26:57 -0700897 match_results = match_networks({WifiEnums.SSID_KEY: network_ssid},
898 scan_results)
Roshan Piuscb9bc482018-02-01 14:27:09 -0800899 if len(match_results) > 0:
900 return True
Roshan Pius7f61f1c2018-01-24 18:36:49 -0800901 return False
902
903
Omar El Ayach8c017902020-10-18 10:26:57 -0700904def start_wifi_connection_scan_and_ensure_network_found(
905 ad, network_ssid, max_tries=3):
Roshan Pius7f61f1c2018-01-24 18:36:49 -0800906 """
907 Start connectivity scans & ensure the |network_ssid| is seen in
908 scan results. The method performs a max of |max_tries| connectivity scans
909 to find the network.
910 This method asserts on failure!
911
912 Args:
913 ad: An AndroidDevice object.
914 network_ssid: SSID of the network we are looking for.
915 max_tries: Number of scans to try.
916 """
917 ad.log.info("Starting scans to ensure %s is present", network_ssid)
918 assert_msg = "Failed to find " + network_ssid + " in scan results" \
919 " after " + str(max_tries) + " tries"
Omar El Ayach8c017902020-10-18 10:26:57 -0700920 asserts.assert_true(
921 start_wifi_connection_scan_and_check_for_network(
922 ad, network_ssid, max_tries), assert_msg)
Roshan Pius7f61f1c2018-01-24 18:36:49 -0800923
924
Omar El Ayach8c017902020-10-18 10:26:57 -0700925def start_wifi_connection_scan_and_ensure_network_not_found(
926 ad, network_ssid, max_tries=3):
Roshan Pius7f61f1c2018-01-24 18:36:49 -0800927 """
928 Start connectivity scans & ensure the |network_ssid| is not seen in
929 scan results. The method performs a max of |max_tries| connectivity scans
930 to find the network.
931 This method asserts on failure!
932
933 Args:
934 ad: An AndroidDevice object.
935 network_ssid: SSID of the network we are looking for.
936 max_tries: Number of scans to try.
937 """
938 ad.log.info("Starting scans to ensure %s is not present", network_ssid)
939 assert_msg = "Found " + network_ssid + " in scan results" \
940 " after " + str(max_tries) + " tries"
Omar El Ayach8c017902020-10-18 10:26:57 -0700941 asserts.assert_false(
942 start_wifi_connection_scan_and_check_for_network(
943 ad, network_ssid, max_tries), assert_msg)
Roshan Pius7f61f1c2018-01-24 18:36:49 -0800944
945
Ang Li73697b32015-12-03 00:41:53 +0000946def start_wifi_background_scan(ad, scan_setting):
947 """Starts wifi background scan.
948
949 Args:
950 ad: android_device object to initiate connection on.
951 scan_setting: A dict representing the settings of the scan.
952
953 Returns:
954 If scan was started successfully, event data of success event is returned.
955 """
Girish Moturu40d7dc22016-11-02 12:14:56 -0700956 idx = ad.droid.wifiScannerStartBackgroundScan(scan_setting)
957 event = ad.ed.pop_event("WifiScannerScan{}onSuccess".format(idx),
Betty Zhou3caa0982017-02-22 19:26:20 -0800958 SHORT_TIMEOUT)
Ang Li73697b32015-12-03 00:41:53 +0000959 return event['data']
960
Ang Li82522812016-06-02 13:57:21 -0700961
Girish Moturu38b993c2021-03-25 13:03:50 -0700962def start_wifi_tethering(ad, ssid, password, band=None, hidden=None,
963 security=None):
Ang Li73697b32015-12-03 00:41:53 +0000964 """Starts wifi tethering on an android_device.
965
966 Args:
967 ad: android_device to start wifi tethering on.
968 ssid: The SSID the soft AP should broadcast.
969 password: The password the soft AP should use.
970 band: The band the soft AP should be set on. It should be either
971 WifiEnums.WIFI_CONFIG_APBAND_2G or WifiEnums.WIFI_CONFIG_APBAND_5G.
Roshan Piusce821342018-01-10 11:03:04 -0800972 hidden: boolean to indicate if the AP needs to be hidden or not.
Girish Moturu38b993c2021-03-25 13:03:50 -0700973 security: security type of softap.
Ang Li73697b32015-12-03 00:41:53 +0000974
975 Returns:
Girish Moturu3581d612016-11-02 15:08:51 -0700976 No return value. Error checks in this function will raise test failure signals
Ang Li73697b32015-12-03 00:41:53 +0000977 """
Ang Li82522812016-06-02 13:57:21 -0700978 config = {WifiEnums.SSID_KEY: ssid}
Ang Li73697b32015-12-03 00:41:53 +0000979 if password:
980 config[WifiEnums.PWD_KEY] = password
981 if band:
lesl6d30a172020-03-05 15:05:22 +0800982 config[WifiEnums.AP_BAND_KEY] = band
Roshan Piusce821342018-01-10 11:03:04 -0800983 if hidden:
Omar El Ayach8c017902020-10-18 10:26:57 -0700984 config[WifiEnums.HIDDEN_KEY] = hidden
Girish Moturu38b993c2021-03-25 13:03:50 -0700985 if security:
986 config[WifiEnums.SECURITY] = security
Omar El Ayach8c017902020-10-18 10:26:57 -0700987 asserts.assert_true(ad.droid.wifiSetWifiApConfiguration(config),
988 "Failed to update WifiAp Configuration")
Girish Moturu40d7dc22016-11-02 12:14:56 -0700989 ad.droid.wifiStartTrackingTetherStateChange()
990 ad.droid.connectivityStartTethering(tel_defines.TETHERING_WIFI, False)
Rebecca Silbersteina2889852016-08-11 00:48:53 -0700991 try:
Girish Moturu40d7dc22016-11-02 12:14:56 -0700992 ad.ed.pop_event("ConnectivityManagerOnTetheringStarted")
993 ad.ed.wait_for_event("TetherStateChanged",
Betty Zhou3caa0982017-02-22 19:26:20 -0800994 lambda x: x["data"]["ACTIVE_TETHER"], 30)
Ang Li76216d12016-09-20 14:51:57 -0700995 ad.log.debug("Tethering started successfully.")
Rebecca Silbersteina2889852016-08-11 00:48:53 -0700996 except Empty:
997 msg = "Failed to receive confirmation of wifi tethering starting"
998 asserts.fail(msg)
999 finally:
Girish Moturu40d7dc22016-11-02 12:14:56 -07001000 ad.droid.wifiStopTrackingTetherStateChange()
Ang Li73697b32015-12-03 00:41:53 +00001001
Bindu Mahadevff295782019-02-08 16:17:48 -08001002
Omar El Ayach8c017902020-10-18 10:26:57 -07001003def save_wifi_soft_ap_config(ad,
1004 wifi_config,
1005 band=None,
1006 hidden=None,
1007 security=None,
1008 password=None,
1009 channel=None,
1010 max_clients=None,
lesl6d30a172020-03-05 15:05:22 +08001011 shutdown_timeout_enable=None,
1012 shutdown_timeout_millis=None,
1013 client_control_enable=None,
Omar El Ayach8c017902020-10-18 10:26:57 -07001014 allowedList=None,
lesl67124362021-05-04 19:33:14 +08001015 blockedList=None,
1016 bands=None,
1017 channel_frequencys=None,
1018 mac_randomization_setting=None,
1019 bridged_opportunistic_shutdown_enabled=None,
1020 ieee80211ax_enabled=None):
lesl6d30a172020-03-05 15:05:22 +08001021 """ Save a soft ap configuration and verified
1022 Args:
1023 ad: android_device to set soft ap configuration.
1024 wifi_config: a soft ap configuration object, at least include SSID.
1025 band: specifies the band for the soft ap.
1026 hidden: specifies the soft ap need to broadcast its SSID or not.
1027 security: specifies the security type for the soft ap.
1028 password: specifies the password for the soft ap.
1029 channel: specifies the channel for the soft ap.
1030 max_clients: specifies the maximum connected client number.
1031 shutdown_timeout_enable: specifies the auto shut down enable or not.
1032 shutdown_timeout_millis: specifies the shut down timeout value.
1033 client_control_enable: specifies the client control enable or not.
1034 allowedList: specifies allowed clients list.
1035 blockedList: specifies blocked clients list.
lesl67124362021-05-04 19:33:14 +08001036 bands: specifies the band list for the soft ap.
1037 channel_frequencys: specifies the channel frequency list for soft ap.
1038 mac_randomization_setting: specifies the mac randomization setting.
1039 bridged_opportunistic_shutdown_enabled: specifies the opportunistic
1040 shutdown enable or not.
1041 ieee80211ax_enabled: specifies the ieee80211ax enable or not.
lesl6d30a172020-03-05 15:05:22 +08001042 """
1043 if security and password:
Omar El Ayach8c017902020-10-18 10:26:57 -07001044 wifi_config[WifiEnums.SECURITY] = security
1045 wifi_config[WifiEnums.PWD_KEY] = password
lesl67124362021-05-04 19:33:14 +08001046 if hidden is not None:
Girish Moturu528b5442018-06-07 10:48:14 -07001047 wifi_config[WifiEnums.HIDDEN_KEY] = hidden
lesl67124362021-05-04 19:33:14 +08001048 if max_clients is not None:
lesl6d30a172020-03-05 15:05:22 +08001049 wifi_config[WifiEnums.AP_MAXCLIENTS_KEY] = max_clients
lesl67124362021-05-04 19:33:14 +08001050 if shutdown_timeout_enable is not None:
lesl6d30a172020-03-05 15:05:22 +08001051 wifi_config[
1052 WifiEnums.AP_SHUTDOWNTIMEOUTENABLE_KEY] = shutdown_timeout_enable
lesl67124362021-05-04 19:33:14 +08001053 if shutdown_timeout_millis is not None:
Omar El Ayach8c017902020-10-18 10:26:57 -07001054 wifi_config[WifiEnums.AP_SHUTDOWNTIMEOUT_KEY] = shutdown_timeout_millis
lesl67124362021-05-04 19:33:14 +08001055 if client_control_enable is not None:
lesl6d30a172020-03-05 15:05:22 +08001056 wifi_config[WifiEnums.AP_CLIENTCONTROL_KEY] = client_control_enable
lesl67124362021-05-04 19:33:14 +08001057 if allowedList is not None:
lesl6d30a172020-03-05 15:05:22 +08001058 wifi_config[WifiEnums.AP_ALLOWEDLIST_KEY] = allowedList
lesl67124362021-05-04 19:33:14 +08001059 if blockedList is not None:
lesl6d30a172020-03-05 15:05:22 +08001060 wifi_config[WifiEnums.AP_BLOCKEDLIST_KEY] = blockedList
lesl67124362021-05-04 19:33:14 +08001061 if mac_randomization_setting is not None:
1062 wifi_config[WifiEnums.AP_MAC_RANDOMIZATION_SETTING_KEY
1063 ] = mac_randomization_setting
1064 if bridged_opportunistic_shutdown_enabled is not None:
1065 wifi_config[WifiEnums.AP_BRIDGED_OPPORTUNISTIC_SHUTDOWN_ENABLE_KEY
1066 ] = bridged_opportunistic_shutdown_enabled
1067 if ieee80211ax_enabled is not None:
1068 wifi_config[WifiEnums.AP_IEEE80211AX_ENABLED_KEY]= ieee80211ax_enabled
1069 if channel_frequencys is not None:
1070 wifi_config[WifiEnums.AP_CHANNEL_FREQUENCYS_KEY] = channel_frequencys
1071 elif bands is not None:
1072 wifi_config[WifiEnums.AP_BANDS_KEY] = bands
1073 elif band is not None:
1074 if channel is not None:
1075 wifi_config[WifiEnums.AP_BAND_KEY] = band
1076 wifi_config[WifiEnums.AP_CHANNEL_KEY] = channel
1077 else:
1078 wifi_config[WifiEnums.AP_BAND_KEY] = band
lesl6d30a172020-03-05 15:05:22 +08001079
1080 if WifiEnums.AP_CHANNEL_KEY in wifi_config and wifi_config[
Omar El Ayach8c017902020-10-18 10:26:57 -07001081 WifiEnums.AP_CHANNEL_KEY] == 0:
lesl6d30a172020-03-05 15:05:22 +08001082 del wifi_config[WifiEnums.AP_CHANNEL_KEY]
1083
1084 if WifiEnums.SECURITY in wifi_config and wifi_config[
Omar El Ayach8c017902020-10-18 10:26:57 -07001085 WifiEnums.SECURITY] == WifiEnums.SoftApSecurityType.OPEN:
lesl6d30a172020-03-05 15:05:22 +08001086 del wifi_config[WifiEnums.SECURITY]
1087 del wifi_config[WifiEnums.PWD_KEY]
1088
Girish Moturu528b5442018-06-07 10:48:14 -07001089 asserts.assert_true(ad.droid.wifiSetWifiApConfiguration(wifi_config),
1090 "Failed to set WifiAp Configuration")
1091
1092 wifi_ap = ad.droid.wifiGetApConfiguration()
1093 asserts.assert_true(
1094 wifi_ap[WifiEnums.SSID_KEY] == wifi_config[WifiEnums.SSID_KEY],
lesl6d30a172020-03-05 15:05:22 +08001095 "Hotspot SSID doesn't match")
1096 if WifiEnums.SECURITY in wifi_config:
1097 asserts.assert_true(
1098 wifi_ap[WifiEnums.SECURITY] == wifi_config[WifiEnums.SECURITY],
1099 "Hotspot Security doesn't match")
1100 if WifiEnums.PWD_KEY in wifi_config:
1101 asserts.assert_true(
1102 wifi_ap[WifiEnums.PWD_KEY] == wifi_config[WifiEnums.PWD_KEY],
1103 "Hotspot Password doesn't match")
Girish Moturu528b5442018-06-07 10:48:14 -07001104
lesl6d30a172020-03-05 15:05:22 +08001105 if WifiEnums.HIDDEN_KEY in wifi_config:
1106 asserts.assert_true(
1107 wifi_ap[WifiEnums.HIDDEN_KEY] == wifi_config[WifiEnums.HIDDEN_KEY],
1108 "Hotspot hidden setting doesn't match")
1109
lesl6d30a172020-03-05 15:05:22 +08001110 if WifiEnums.AP_CHANNEL_KEY in wifi_config:
1111 asserts.assert_true(
1112 wifi_ap[WifiEnums.AP_CHANNEL_KEY] == wifi_config[
Omar El Ayach8c017902020-10-18 10:26:57 -07001113 WifiEnums.AP_CHANNEL_KEY], "Hotspot Channel doesn't match")
lesl6d30a172020-03-05 15:05:22 +08001114 if WifiEnums.AP_MAXCLIENTS_KEY in wifi_config:
1115 asserts.assert_true(
1116 wifi_ap[WifiEnums.AP_MAXCLIENTS_KEY] == wifi_config[
Omar El Ayach8c017902020-10-18 10:26:57 -07001117 WifiEnums.AP_MAXCLIENTS_KEY],
1118 "Hotspot Max Clients doesn't match")
lesl6d30a172020-03-05 15:05:22 +08001119 if WifiEnums.AP_SHUTDOWNTIMEOUTENABLE_KEY in wifi_config:
1120 asserts.assert_true(
1121 wifi_ap[WifiEnums.AP_SHUTDOWNTIMEOUTENABLE_KEY] == wifi_config[
Omar El Ayach8c017902020-10-18 10:26:57 -07001122 WifiEnums.AP_SHUTDOWNTIMEOUTENABLE_KEY],
lesl6d30a172020-03-05 15:05:22 +08001123 "Hotspot ShutDown feature flag doesn't match")
1124 if WifiEnums.AP_SHUTDOWNTIMEOUT_KEY in wifi_config:
1125 asserts.assert_true(
1126 wifi_ap[WifiEnums.AP_SHUTDOWNTIMEOUT_KEY] == wifi_config[
Omar El Ayach8c017902020-10-18 10:26:57 -07001127 WifiEnums.AP_SHUTDOWNTIMEOUT_KEY],
lesl6d30a172020-03-05 15:05:22 +08001128 "Hotspot ShutDown timeout setting doesn't match")
1129 if WifiEnums.AP_CLIENTCONTROL_KEY in wifi_config:
1130 asserts.assert_true(
1131 wifi_ap[WifiEnums.AP_CLIENTCONTROL_KEY] == wifi_config[
Omar El Ayach8c017902020-10-18 10:26:57 -07001132 WifiEnums.AP_CLIENTCONTROL_KEY],
lesl6d30a172020-03-05 15:05:22 +08001133 "Hotspot Client control flag doesn't match")
1134 if WifiEnums.AP_ALLOWEDLIST_KEY in wifi_config:
1135 asserts.assert_true(
1136 wifi_ap[WifiEnums.AP_ALLOWEDLIST_KEY] == wifi_config[
Omar El Ayach8c017902020-10-18 10:26:57 -07001137 WifiEnums.AP_ALLOWEDLIST_KEY],
lesl6d30a172020-03-05 15:05:22 +08001138 "Hotspot Allowed List doesn't match")
1139 if WifiEnums.AP_BLOCKEDLIST_KEY in wifi_config:
1140 asserts.assert_true(
1141 wifi_ap[WifiEnums.AP_BLOCKEDLIST_KEY] == wifi_config[
Omar El Ayach8c017902020-10-18 10:26:57 -07001142 WifiEnums.AP_BLOCKEDLIST_KEY],
lesl6d30a172020-03-05 15:05:22 +08001143 "Hotspot Blocked List doesn't match")
Bindu Mahadevff295782019-02-08 16:17:48 -08001144
lesl67124362021-05-04 19:33:14 +08001145 if WifiEnums.AP_MAC_RANDOMIZATION_SETTING_KEY in wifi_config:
1146 asserts.assert_true(
1147 wifi_ap[WifiEnums.AP_MAC_RANDOMIZATION_SETTING_KEY] == wifi_config[
1148 WifiEnums.AP_MAC_RANDOMIZATION_SETTING_KEY],
1149 "Hotspot Mac randomization setting doesn't match")
1150
1151 if WifiEnums.AP_BRIDGED_OPPORTUNISTIC_SHUTDOWN_ENABLE_KEY in wifi_config:
1152 asserts.assert_true(
1153 wifi_ap[WifiEnums.AP_BRIDGED_OPPORTUNISTIC_SHUTDOWN_ENABLE_KEY] == wifi_config[
1154 WifiEnums.AP_BRIDGED_OPPORTUNISTIC_SHUTDOWN_ENABLE_KEY],
1155 "Hotspot bridged shutdown enable setting doesn't match")
1156
1157 if WifiEnums.AP_IEEE80211AX_ENABLED_KEY in wifi_config:
1158 asserts.assert_true(
1159 wifi_ap[WifiEnums.AP_IEEE80211AX_ENABLED_KEY] == wifi_config[
1160 WifiEnums.AP_IEEE80211AX_ENABLED_KEY],
1161 "Hotspot 80211 AX enable setting doesn't match")
1162
1163 if WifiEnums.AP_CHANNEL_FREQUENCYS_KEY in wifi_config:
1164 asserts.assert_true(
1165 wifi_ap[WifiEnums.AP_CHANNEL_FREQUENCYS_KEY] == wifi_config[
1166 WifiEnums.AP_CHANNEL_FREQUENCYS_KEY],
1167 "Hotspot channels setting doesn't match")
Omar El Ayach8c017902020-10-18 10:26:57 -07001168
Girish Moturu528b5442018-06-07 10:48:14 -07001169def start_wifi_tethering_saved_config(ad):
1170 """ Turn on wifi hotspot with a config that is already saved """
1171 ad.droid.wifiStartTrackingTetherStateChange()
1172 ad.droid.connectivityStartTethering(tel_defines.TETHERING_WIFI, False)
1173 try:
1174 ad.ed.pop_event("ConnectivityManagerOnTetheringStarted")
1175 ad.ed.wait_for_event("TetherStateChanged",
1176 lambda x: x["data"]["ACTIVE_TETHER"], 30)
1177 except:
1178 asserts.fail("Didn't receive wifi tethering starting confirmation")
1179 finally:
1180 ad.droid.wifiStopTrackingTetherStateChange()
Betty Zhou3caa0982017-02-22 19:26:20 -08001181
Bindu Mahadevff295782019-02-08 16:17:48 -08001182
Ang Li73697b32015-12-03 00:41:53 +00001183def stop_wifi_tethering(ad):
1184 """Stops wifi tethering on an android_device.
Ang Li73697b32015-12-03 00:41:53 +00001185 Args:
1186 ad: android_device to stop wifi tethering on.
1187 """
Girish Moturu40d7dc22016-11-02 12:14:56 -07001188 ad.droid.wifiStartTrackingTetherStateChange()
1189 ad.droid.connectivityStopTethering(tel_defines.TETHERING_WIFI)
Rebecca Silbersteina2889852016-08-11 00:48:53 -07001190 try:
Girish Moturu40d7dc22016-11-02 12:14:56 -07001191 ad.ed.pop_event("WifiManagerApDisabled", 30)
1192 ad.ed.wait_for_event("TetherStateChanged",
Betty Zhou3caa0982017-02-22 19:26:20 -08001193 lambda x: not x["data"]["ACTIVE_TETHER"], 30)
Rebecca Silbersteina2889852016-08-11 00:48:53 -07001194 except Empty:
1195 msg = "Failed to receive confirmation of wifi tethering stopping"
1196 asserts.fail(msg)
1197 finally:
Girish Moturu40d7dc22016-11-02 12:14:56 -07001198 ad.droid.wifiStopTrackingTetherStateChange()
Ang Li82522812016-06-02 13:57:21 -07001199
Ang Li76216d12016-09-20 14:51:57 -07001200
Roshan Pius58916a32016-06-16 16:26:44 -07001201def toggle_wifi_and_wait_for_reconnection(ad,
1202 network,
1203 num_of_tries=1,
1204 assert_on_fail=True):
1205 """Toggle wifi state and then wait for Android device to reconnect to
1206 the provided wifi network.
1207
1208 This expects the device to be already connected to the provided network.
1209
1210 Logic steps are
1211 1. Ensure that we're connected to the network.
1212 2. Turn wifi off.
1213 3. Wait for 10 seconds.
1214 4. Turn wifi on.
1215 5. Wait for the "connected" event, then confirm the connected ssid is the
1216 one requested.
1217
1218 Args:
1219 ad: android_device object to initiate connection on.
1220 network: A dictionary representing the network to await connection. The
1221 dictionary must have the key "SSID".
1222 num_of_tries: An integer that is the number of times to try before
1223 delaring failure. Default is 1.
1224 assert_on_fail: If True, error checks in this function will raise test
1225 failure signals.
1226
1227 Returns:
1228 If assert_on_fail is False, function returns True if the toggle was
1229 successful, False otherwise. If assert_on_fail is True, no return value.
1230 """
Omar El Ayach8c017902020-10-18 10:26:57 -07001231 return _assert_on_fail_handler(_toggle_wifi_and_wait_for_reconnection,
1232 assert_on_fail,
1233 ad,
1234 network,
1235 num_of_tries=num_of_tries)
Roshan Pius58916a32016-06-16 16:26:44 -07001236
1237
Girish Moturu5d9f4202019-12-03 15:29:21 -08001238def _toggle_wifi_and_wait_for_reconnection(ad, network, num_of_tries=3):
Roshan Pius58916a32016-06-16 16:26:44 -07001239 """Toggle wifi state and then wait for Android device to reconnect to
1240 the provided wifi network.
1241
1242 This expects the device to be already connected to the provided network.
1243
1244 Logic steps are
1245 1. Ensure that we're connected to the network.
1246 2. Turn wifi off.
1247 3. Wait for 10 seconds.
1248 4. Turn wifi on.
1249 5. Wait for the "connected" event, then confirm the connected ssid is the
1250 one requested.
1251
1252 This will directly fail a test if anything goes wrong.
1253
1254 Args:
1255 ad: android_device object to initiate connection on.
1256 network: A dictionary representing the network to await connection. The
1257 dictionary must have the key "SSID".
1258 num_of_tries: An integer that is the number of times to try before
1259 delaring failure. Default is 1.
1260 """
Roshan Pius58916a32016-06-16 16:26:44 -07001261 expected_ssid = network[WifiEnums.SSID_KEY]
1262 # First ensure that we're already connected to the provided network.
1263 verify_con = {WifiEnums.SSID_KEY: expected_ssid}
1264 verify_wifi_connection_info(ad, verify_con)
1265 # Now toggle wifi state and wait for the connection event.
1266 wifi_toggle_state(ad, False)
1267 time.sleep(10)
1268 wifi_toggle_state(ad, True)
1269 ad.droid.wifiStartTrackingStateChange()
1270 try:
1271 connect_result = None
1272 for i in range(num_of_tries):
1273 try:
Bindu Mahadev4e710362016-11-17 16:17:11 -08001274 connect_result = ad.ed.pop_event(wifi_constants.WIFI_CONNECTED,
Roshan Pius58916a32016-06-16 16:26:44 -07001275 30)
1276 break
1277 except Empty:
1278 pass
Omar El Ayach8c017902020-10-18 10:26:57 -07001279 asserts.assert_true(
1280 connect_result, "Failed to connect to Wi-Fi network %s on %s" %
1281 (network, ad.serial))
Betty Zhou3caa0982017-02-22 19:26:20 -08001282 logging.debug("Connection result on %s: %s.", ad.serial,
1283 connect_result)
Roshan Pius58916a32016-06-16 16:26:44 -07001284 actual_ssid = connect_result['data'][WifiEnums.SSID_KEY]
Omar El Ayach8c017902020-10-18 10:26:57 -07001285 asserts.assert_equal(
1286 actual_ssid, expected_ssid, "Connected to the wrong network on %s."
1287 "Expected %s, but got %s." %
1288 (ad.serial, expected_ssid, actual_ssid))
Betty Zhou3caa0982017-02-22 19:26:20 -08001289 logging.info("Connected to Wi-Fi network %s on %s", actual_ssid,
1290 ad.serial)
Roshan Pius58916a32016-06-16 16:26:44 -07001291 finally:
1292 ad.droid.wifiStopTrackingStateChange()
1293
1294
Omar El Ayach8c017902020-10-18 10:26:57 -07001295def wait_for_connect(ad,
1296 expected_ssid=None,
1297 expected_id=None,
1298 tries=2,
Oscar Shucb9af9b2019-05-02 20:01:49 +00001299 assert_on_fail=True):
Roshan Piusd1204442018-11-12 12:20:39 -08001300 """Wait for a connect event.
1301
1302 This will directly fail a test if anything goes wrong.
1303
1304 Args:
1305 ad: An Android device object.
1306 expected_ssid: SSID of the network to connect to.
1307 expected_id: Network Id of the network to connect to.
1308 tries: An integer that is the number of times to try before failing.
1309 assert_on_fail: If True, error checks in this function will raise test
1310 failure signals.
1311
1312 Returns:
1313 Returns a value only if assert_on_fail is false.
1314 Returns True if the connection was successful, False otherwise.
1315 """
Omar El Ayach8c017902020-10-18 10:26:57 -07001316 return _assert_on_fail_handler(_wait_for_connect, assert_on_fail, ad,
1317 expected_ssid, expected_id, tries)
Roshan Piusd1204442018-11-12 12:20:39 -08001318
1319
Oscar Shucb9af9b2019-05-02 20:01:49 +00001320def _wait_for_connect(ad, expected_ssid=None, expected_id=None, tries=2):
Roshan Piusd1204442018-11-12 12:20:39 -08001321 """Wait for a connect event.
1322
1323 Args:
1324 ad: An Android device object.
1325 expected_ssid: SSID of the network to connect to.
1326 expected_id: Network Id of the network to connect to.
1327 tries: An integer that is the number of times to try before failing.
1328 """
1329 ad.droid.wifiStartTrackingStateChange()
1330 try:
Omar El Ayach8c017902020-10-18 10:26:57 -07001331 connect_result = _wait_for_connect_event(ad,
1332 ssid=expected_ssid,
1333 id=expected_id,
1334 tries=tries)
1335 asserts.assert_true(
1336 connect_result,
1337 "Failed to connect to Wi-Fi network %s" % expected_ssid)
Roshan Piusd1204442018-11-12 12:20:39 -08001338 ad.log.debug("Wi-Fi connection result: %s.", connect_result)
1339 actual_ssid = connect_result['data'][WifiEnums.SSID_KEY]
1340 if expected_ssid:
1341 asserts.assert_equal(actual_ssid, expected_ssid,
1342 "Connected to the wrong network")
1343 actual_id = connect_result['data'][WifiEnums.NETID_KEY]
1344 if expected_id:
1345 asserts.assert_equal(actual_id, expected_id,
1346 "Connected to the wrong network")
1347 ad.log.info("Connected to Wi-Fi network %s.", actual_ssid)
1348 except Empty:
1349 asserts.fail("Failed to start connection process to %s" %
1350 expected_ssid)
1351 except Exception as error:
1352 ad.log.error("Failed to connect to %s with error %s", expected_ssid,
1353 error)
1354 raise signals.TestFailure("Failed to connect to %s network" %
1355 expected_ssid)
1356 finally:
1357 ad.droid.wifiStopTrackingStateChange()
1358
1359
Oscar Shucb9af9b2019-05-02 20:01:49 +00001360def _wait_for_connect_event(ad, ssid=None, id=None, tries=1):
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001361 """Wait for a connect event on queue and pop when available.
1362
1363 Args:
1364 ad: An Android device object.
Bindu Mahadevaf983c92017-03-27 12:00:37 -07001365 ssid: SSID of the network to connect to.
1366 id: Network Id of the network to connect to.
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001367 tries: An integer that is the number of times to try before failing.
1368
1369 Returns:
1370 A dict with details of the connection data, which looks like this:
1371 {
1372 'time': 1485460337798,
1373 'name': 'WifiNetworkConnected',
1374 'data': {
1375 'rssi': -27,
1376 'is_24ghz': True,
1377 'mac_address': '02:00:00:00:00:00',
1378 'network_id': 1,
1379 'BSSID': '30:b5:c2:33:d3:fc',
1380 'ip_address': 117483712,
1381 'link_speed': 54,
1382 'supplicant_state': 'completed',
1383 'hidden_ssid': False,
1384 'SSID': 'wh_ap1_2g',
1385 'is_5ghz': False}
1386 }
1387
1388 """
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001389 conn_result = None
Bindu Mahadevaf983c92017-03-27 12:00:37 -07001390
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001391 # If ssid and network id is None, just wait for any connect event.
Bindu Mahadevaf983c92017-03-27 12:00:37 -07001392 if id is None and ssid is None:
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001393 for i in range(tries):
1394 try:
Omar El Ayach8c017902020-10-18 10:26:57 -07001395 conn_result = ad.ed.pop_event(wifi_constants.WIFI_CONNECTED,
1396 30)
Bindu Mahadevaf983c92017-03-27 12:00:37 -07001397 break
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001398 except Empty:
1399 pass
1400 else:
Omar El Ayach8c017902020-10-18 10:26:57 -07001401 # If ssid or network id is specified, wait for specific connect event.
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001402 for i in range(tries):
1403 try:
Omar El Ayach8c017902020-10-18 10:26:57 -07001404 conn_result = ad.ed.pop_event(wifi_constants.WIFI_CONNECTED,
1405 30)
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001406 if id and conn_result['data'][WifiEnums.NETID_KEY] == id:
1407 break
1408 elif ssid and conn_result['data'][WifiEnums.SSID_KEY] == ssid:
1409 break
1410 except Empty:
1411 pass
Bindu Mahadevaf983c92017-03-27 12:00:37 -07001412
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001413 return conn_result
1414
Bindu Mahadevff295782019-02-08 16:17:48 -08001415
Roshan Piusffc29912019-01-18 13:39:49 -08001416def wait_for_disconnect(ad, timeout=10):
1417 """Wait for a disconnect event within the specified timeout.
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001418
1419 Args:
1420 ad: Android device object.
Roshan Piusffc29912019-01-18 13:39:49 -08001421 timeout: Timeout in seconds.
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001422
1423 """
1424 try:
1425 ad.droid.wifiStartTrackingStateChange()
Roshan Piusffc29912019-01-18 13:39:49 -08001426 event = ad.ed.pop_event("WifiNetworkDisconnected", timeout)
Roshan Piusbf7e3982018-02-15 12:37:41 -08001427 except Empty:
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001428 raise signals.TestFailure("Device did not disconnect from the network")
Roshan Piusffc29912019-01-18 13:39:49 -08001429 finally:
1430 ad.droid.wifiStopTrackingStateChange()
1431
1432
1433def ensure_no_disconnect(ad, duration=10):
1434 """Ensure that there is no disconnect for the specified duration.
1435
1436 Args:
1437 ad: Android device object.
1438 duration: Duration in seconds.
1439
1440 """
1441 try:
1442 ad.droid.wifiStartTrackingStateChange()
1443 event = ad.ed.pop_event("WifiNetworkDisconnected", duration)
1444 raise signals.TestFailure("Device disconnected from the network")
1445 except Empty:
1446 pass
1447 finally:
1448 ad.droid.wifiStopTrackingStateChange()
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001449
1450
Omar El Ayach8c017902020-10-18 10:26:57 -07001451def connect_to_wifi_network(ad,
1452 network,
1453 assert_on_fail=True,
1454 check_connectivity=True,
1455 hidden=False):
Bindu Mahadev3876ae52017-12-19 14:22:19 -08001456 """Connection logic for open and psk wifi networks.
1457
1458 Args:
Jong Wook Kim92356922018-02-06 18:32:49 -08001459 ad: AndroidDevice to use for connection
1460 network: network info of the network to connect to
1461 assert_on_fail: If true, errors from wifi_connect will raise
1462 test failure signals.
Joe Brennan48c3f692019-04-11 08:30:16 -07001463 hidden: Is the Wifi network hidden.
Bindu Mahadev3876ae52017-12-19 14:22:19 -08001464 """
Joe Brennan48c3f692019-04-11 08:30:16 -07001465 if hidden:
1466 start_wifi_connection_scan_and_ensure_network_not_found(
1467 ad, network[WifiEnums.SSID_KEY])
1468 else:
1469 start_wifi_connection_scan_and_ensure_network_found(
1470 ad, network[WifiEnums.SSID_KEY])
Jong Wook Kim92356922018-02-06 18:32:49 -08001471 wifi_connect(ad,
1472 network,
1473 num_of_tries=3,
Bindu Mahadev27c2d292018-03-19 16:13:08 -07001474 assert_on_fail=assert_on_fail,
1475 check_connectivity=check_connectivity)
Bindu Mahadev3876ae52017-12-19 14:22:19 -08001476
1477
1478def connect_to_wifi_network_with_id(ad, network_id, network_ssid):
1479 """Connect to the given network using network id and verify SSID.
1480
1481 Args:
1482 network_id: int Network Id of the network.
1483 network_ssid: string SSID of the network.
1484
1485 Returns: True if connect using network id was successful;
1486 False otherwise.
1487
1488 """
Jong Wook Kim92356922018-02-06 18:32:49 -08001489 start_wifi_connection_scan_and_ensure_network_found(ad, network_ssid)
Bindu Mahadev3876ae52017-12-19 14:22:19 -08001490 wifi_connect_by_id(ad, network_id)
1491 connect_data = ad.droid.wifiGetConnectionInfo()
1492 connect_ssid = connect_data[WifiEnums.SSID_KEY]
1493 ad.log.debug("Expected SSID = %s Connected SSID = %s" %
Omar El Ayach8c017902020-10-18 10:26:57 -07001494 (network_ssid, connect_ssid))
Bindu Mahadev3876ae52017-12-19 14:22:19 -08001495 if connect_ssid != network_ssid:
1496 return False
1497 return True
1498
1499
Omar El Ayach8c017902020-10-18 10:26:57 -07001500def wifi_connect(ad,
1501 network,
1502 num_of_tries=1,
1503 assert_on_fail=True,
1504 check_connectivity=True):
Ang Li99d8c6d2015-12-09 15:56:13 -08001505 """Connect an Android device to a wifi network.
Ang Li73697b32015-12-03 00:41:53 +00001506
1507 Initiate connection to a wifi network, wait for the "connected" event, then
Ang Li99d8c6d2015-12-09 15:56:13 -08001508 confirm the connected ssid is the one requested.
Ang Li73697b32015-12-03 00:41:53 +00001509
Ang Li82522812016-06-02 13:57:21 -07001510 This will directly fail a test if anything goes wrong.
1511
Ang Li73697b32015-12-03 00:41:53 +00001512 Args:
1513 ad: android_device object to initiate connection on.
Ang Li99d8c6d2015-12-09 15:56:13 -08001514 network: A dictionary representing the network to connect to. The
Ang Li82522812016-06-02 13:57:21 -07001515 dictionary must have the key "SSID".
1516 num_of_tries: An integer that is the number of times to try before
1517 delaring failure. Default is 1.
1518 assert_on_fail: If True, error checks in this function will raise test
1519 failure signals.
1520
1521 Returns:
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001522 Returns a value only if assert_on_fail is false.
1523 Returns True if the connection was successful, False otherwise.
Ang Li73697b32015-12-03 00:41:53 +00001524 """
Omar El Ayach8c017902020-10-18 10:26:57 -07001525 return _assert_on_fail_handler(_wifi_connect,
1526 assert_on_fail,
1527 ad,
1528 network,
1529 num_of_tries=num_of_tries,
1530 check_connectivity=check_connectivity)
Ang Li82522812016-06-02 13:57:21 -07001531
1532
Oscar Shucb9af9b2019-05-02 20:01:49 +00001533def _wifi_connect(ad, network, num_of_tries=1, check_connectivity=True):
Ang Li82522812016-06-02 13:57:21 -07001534 """Connect an Android device to a wifi network.
1535
1536 Initiate connection to a wifi network, wait for the "connected" event, then
1537 confirm the connected ssid is the one requested.
1538
1539 This will directly fail a test if anything goes wrong.
1540
1541 Args:
1542 ad: android_device object to initiate connection on.
1543 network: A dictionary representing the network to connect to. The
1544 dictionary must have the key "SSID".
1545 num_of_tries: An integer that is the number of times to try before
1546 delaring failure. Default is 1.
1547 """
Omar El Ayach8c017902020-10-18 10:26:57 -07001548 asserts.assert_true(
1549 WifiEnums.SSID_KEY in network,
1550 "Key '%s' must be present in network definition." % WifiEnums.SSID_KEY)
Ang Li99d8c6d2015-12-09 15:56:13 -08001551 ad.droid.wifiStartTrackingStateChange()
Betty Zhoud35dab82016-12-06 15:24:23 -08001552 expected_ssid = network[WifiEnums.SSID_KEY]
Bindu Mahadev50374df2017-01-04 11:03:32 -08001553 ad.droid.wifiConnectByConfig(network)
1554 ad.log.info("Starting connection process to %s", expected_ssid)
Ang Li73697b32015-12-03 00:41:53 +00001555 try:
Bindu Mahadev50374df2017-01-04 11:03:32 -08001556 event = ad.ed.pop_event(wifi_constants.CONNECT_BY_CONFIG_SUCCESS, 30)
Omar El Ayach8c017902020-10-18 10:26:57 -07001557 connect_result = _wait_for_connect_event(ad,
1558 ssid=expected_ssid,
1559 tries=num_of_tries)
1560 asserts.assert_true(
1561 connect_result, "Failed to connect to Wi-Fi network %s on %s" %
1562 (network, ad.serial))
Ang Li31b00782016-06-21 13:04:23 -07001563 ad.log.debug("Wi-Fi connection result: %s.", connect_result)
Ang Li99d8c6d2015-12-09 15:56:13 -08001564 actual_ssid = connect_result['data'][WifiEnums.SSID_KEY]
Omar El Ayach8c017902020-10-18 10:26:57 -07001565 asserts.assert_equal(
1566 actual_ssid, expected_ssid,
1567 "Connected to the wrong network on %s." % ad.serial)
Ang Li31b00782016-06-21 13:04:23 -07001568 ad.log.info("Connected to Wi-Fi network %s.", actual_ssid)
Bindu Mahadev50374df2017-01-04 11:03:32 -08001569
Bindu Mahadev27c2d292018-03-19 16:13:08 -07001570 if check_connectivity:
Hsiu-Chang Chend7b3c572020-06-12 12:19:30 +08001571 internet = validate_connection(ad, DEFAULT_PING_ADDR)
Bindu Mahadev27c2d292018-03-19 16:13:08 -07001572 if not internet:
Omar El Ayach8c017902020-10-18 10:26:57 -07001573 raise signals.TestFailure(
1574 "Failed to connect to internet on %s" % expected_ssid)
Bindu Mahadev50374df2017-01-04 11:03:32 -08001575 except Empty:
1576 asserts.fail("Failed to start connection process to %s on %s" %
1577 (network, ad.serial))
Bindu Mahadev4e710362016-11-17 16:17:11 -08001578 except Exception as error:
Bindu Mahadev50374df2017-01-04 11:03:32 -08001579 ad.log.error("Failed to connect to %s with error %s", expected_ssid,
1580 error)
1581 raise signals.TestFailure("Failed to connect to %s network" % network)
1582
Ang Li73697b32015-12-03 00:41:53 +00001583 finally:
Ang Li99d8c6d2015-12-09 15:56:13 -08001584 ad.droid.wifiStopTrackingStateChange()
Ang Li73697b32015-12-03 00:41:53 +00001585
Bindu Mahadev50374df2017-01-04 11:03:32 -08001586
Oscar Shucb9af9b2019-05-02 20:01:49 +00001587def wifi_connect_by_id(ad, network_id, num_of_tries=3, assert_on_fail=True):
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001588 """Connect an Android device to a wifi network using network Id.
1589
1590 Start connection to the wifi network, with the given network Id, wait for
1591 the "connected" event, then verify the connected network is the one requested.
1592
1593 This will directly fail a test if anything goes wrong.
1594
1595 Args:
1596 ad: android_device object to initiate connection on.
1597 network_id: Integer specifying the network id of the network.
1598 num_of_tries: An integer that is the number of times to try before
1599 delaring failure. Default is 1.
1600 assert_on_fail: If True, error checks in this function will raise test
1601 failure signals.
1602
1603 Returns:
1604 Returns a value only if assert_on_fail is false.
1605 Returns True if the connection was successful, False otherwise.
1606 """
1607 _assert_on_fail_handler(_wifi_connect_by_id, assert_on_fail, ad,
Oscar Shucb9af9b2019-05-02 20:01:49 +00001608 network_id, num_of_tries)
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001609
1610
Oscar Shucb9af9b2019-05-02 20:01:49 +00001611def _wifi_connect_by_id(ad, network_id, num_of_tries=1):
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001612 """Connect an Android device to a wifi network using it's network id.
1613
1614 Start connection to the wifi network, with the given network id, wait for
1615 the "connected" event, then verify the connected network is the one requested.
1616
1617 Args:
1618 ad: android_device object to initiate connection on.
1619 network_id: Integer specifying the network id of the network.
1620 num_of_tries: An integer that is the number of times to try before
1621 delaring failure. Default is 1.
1622 """
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001623 ad.droid.wifiStartTrackingStateChange()
Bindu Mahadevaf983c92017-03-27 12:00:37 -07001624 # Clear all previous events.
1625 ad.ed.clear_all_events()
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001626 ad.droid.wifiConnectByNetworkId(network_id)
1627 ad.log.info("Starting connection to network with id %d", network_id)
1628 try:
1629 event = ad.ed.pop_event(wifi_constants.CONNECT_BY_NETID_SUCCESS, 60)
Omar El Ayach8c017902020-10-18 10:26:57 -07001630 connect_result = _wait_for_connect_event(ad,
1631 id=network_id,
1632 tries=num_of_tries)
1633 asserts.assert_true(
1634 connect_result,
1635 "Failed to connect to Wi-Fi network using network id")
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001636 ad.log.debug("Wi-Fi connection result: %s", connect_result)
1637 actual_id = connect_result['data'][WifiEnums.NETID_KEY]
Omar El Ayach8c017902020-10-18 10:26:57 -07001638 asserts.assert_equal(
1639 actual_id, network_id, "Connected to the wrong network on %s."
1640 "Expected network id = %d, but got %d." %
1641 (ad.serial, network_id, actual_id))
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001642 expected_ssid = connect_result['data'][WifiEnums.SSID_KEY]
1643 ad.log.info("Connected to Wi-Fi network %s with %d network id.",
Omar El Ayach8c017902020-10-18 10:26:57 -07001644 expected_ssid, network_id)
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001645
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001646 internet = validate_connection(ad, DEFAULT_PING_ADDR)
1647 if not internet:
1648 raise signals.TestFailure("Failed to connect to internet on %s" %
1649 expected_ssid)
1650 except Empty:
1651 asserts.fail("Failed to connect to network with id %d on %s" %
Omar El Ayach8c017902020-10-18 10:26:57 -07001652 (network_id, ad.serial))
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001653 except Exception as error:
1654 ad.log.error("Failed to connect to network with id %d with error %s",
Omar El Ayach8c017902020-10-18 10:26:57 -07001655 network_id, error)
Bindu Mahadev3c54c492017-02-15 16:00:08 -08001656 raise signals.TestFailure("Failed to connect to network with network"
1657 " id %d" % network_id)
1658 finally:
1659 ad.droid.wifiStopTrackingStateChange()
1660
Oscar Shu0b5ff4d2019-08-07 18:11:56 +00001661
Omar El Ayach8c017902020-10-18 10:26:57 -07001662def wifi_connect_using_network_request(ad,
1663 network,
1664 network_specifier,
Roshan Pius5561d232021-01-22 16:34:39 -08001665 num_of_tries=3):
Roshan Piusc999e5e2018-11-09 10:59:52 -08001666 """Connect an Android device to a wifi network using network request.
1667
1668 Trigger a network request with the provided network specifier,
1669 wait for the "onMatch" event, ensure that the scan results in "onMatch"
1670 event contain the specified network, then simulate the user granting the
1671 request with the specified network selected. Then wait for the "onAvailable"
1672 network callback indicating successful connection to network.
1673
1674 Args:
1675 ad: android_device object to initiate connection on.
1676 network_specifier: A dictionary representing the network specifier to
1677 use.
1678 network: A dictionary representing the network to connect to. The
1679 dictionary must have the key "SSID".
1680 num_of_tries: An integer that is the number of times to try before
1681 delaring failure.
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001682 Returns:
1683 key: Key corresponding to network request.
Roshan Piusc999e5e2018-11-09 10:59:52 -08001684 """
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001685 key = ad.droid.connectivityRequestWifiNetwork(network_specifier, 0)
1686 ad.log.info("Sent network request %s with %s " % (key, network_specifier))
Roshan Piusc999e5e2018-11-09 10:59:52 -08001687 # Need a delay here because UI interaction should only start once wifi
1688 # starts processing the request.
1689 time.sleep(wifi_constants.NETWORK_REQUEST_CB_REGISTER_DELAY_SEC)
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001690 _wait_for_wifi_connect_after_network_request(ad, network, key, num_of_tries)
1691 return key
Roshan Piusc999e5e2018-11-09 10:59:52 -08001692
1693
Omar El Ayach8c017902020-10-18 10:26:57 -07001694def wait_for_wifi_connect_after_network_request(ad,
1695 network,
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001696 key,
Omar El Ayach8c017902020-10-18 10:26:57 -07001697 num_of_tries=3,
Roshan Piusc999e5e2018-11-09 10:59:52 -08001698 assert_on_fail=True):
1699 """
1700 Simulate and verify the connection flow after initiating the network
1701 request.
1702
1703 Wait for the "onMatch" event, ensure that the scan results in "onMatch"
1704 event contain the specified network, then simulate the user granting the
1705 request with the specified network selected. Then wait for the "onAvailable"
1706 network callback indicating successful connection to network.
1707
1708 Args:
1709 ad: android_device object to initiate connection on.
1710 network: A dictionary representing the network to connect to. The
1711 dictionary must have the key "SSID".
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001712 key: Key corresponding to network request.
Roshan Piusc999e5e2018-11-09 10:59:52 -08001713 num_of_tries: An integer that is the number of times to try before
1714 delaring failure.
1715 assert_on_fail: If True, error checks in this function will raise test
1716 failure signals.
1717
1718 Returns:
1719 Returns a value only if assert_on_fail is false.
1720 Returns True if the connection was successful, False otherwise.
1721 """
1722 _assert_on_fail_handler(_wait_for_wifi_connect_after_network_request,
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001723 assert_on_fail, ad, network, key, num_of_tries)
Roshan Piusc999e5e2018-11-09 10:59:52 -08001724
1725
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001726def _wait_for_wifi_connect_after_network_request(ad, network, key, num_of_tries=3):
Roshan Piusc999e5e2018-11-09 10:59:52 -08001727 """
1728 Simulate and verify the connection flow after initiating the network
1729 request.
1730
1731 Wait for the "onMatch" event, ensure that the scan results in "onMatch"
1732 event contain the specified network, then simulate the user granting the
1733 request with the specified network selected. Then wait for the "onAvailable"
1734 network callback indicating successful connection to network.
1735
1736 Args:
1737 ad: android_device object to initiate connection on.
1738 network: A dictionary representing the network to connect to. The
1739 dictionary must have the key "SSID".
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001740 key: Key corresponding to network request.
Roshan Piusc999e5e2018-11-09 10:59:52 -08001741 num_of_tries: An integer that is the number of times to try before
1742 delaring failure.
1743 """
Omar El Ayach8c017902020-10-18 10:26:57 -07001744 asserts.assert_true(
1745 WifiEnums.SSID_KEY in network,
1746 "Key '%s' must be present in network definition." % WifiEnums.SSID_KEY)
Roshan Piusc999e5e2018-11-09 10:59:52 -08001747 ad.droid.wifiStartTrackingStateChange()
1748 expected_ssid = network[WifiEnums.SSID_KEY]
1749 ad.droid.wifiRegisterNetworkRequestMatchCallback()
1750 # Wait for the platform to scan and return a list of networks
1751 # matching the request
1752 try:
1753 matched_network = None
Omar El Ayach8c017902020-10-18 10:26:57 -07001754 for _ in [0, num_of_tries]:
Roshan Piusc999e5e2018-11-09 10:59:52 -08001755 on_match_event = ad.ed.pop_event(
1756 wifi_constants.WIFI_NETWORK_REQUEST_MATCH_CB_ON_MATCH, 60)
1757 asserts.assert_true(on_match_event,
1758 "Network request on match not received.")
1759 matched_scan_results = on_match_event["data"]
1760 ad.log.debug("Network request on match results %s",
1761 matched_scan_results)
1762 matched_network = match_networks(
1763 {WifiEnums.SSID_KEY: network[WifiEnums.SSID_KEY]},
1764 matched_scan_results)
Roshan Pius6cd4aaf2021-02-09 15:54:30 -08001765 ad.log.debug("Network request on match %s", matched_network)
Roshan Piusc999e5e2018-11-09 10:59:52 -08001766 if matched_network:
Omar El Ayach8c017902020-10-18 10:26:57 -07001767 break
Roshan Piusc999e5e2018-11-09 10:59:52 -08001768
Omar El Ayach8c017902020-10-18 10:26:57 -07001769 asserts.assert_true(matched_network,
1770 "Target network %s not found" % network)
Roshan Piusc999e5e2018-11-09 10:59:52 -08001771
1772 ad.droid.wifiSendUserSelectionForNetworkRequestMatch(network)
1773 ad.log.info("Sent user selection for network request %s",
1774 expected_ssid)
1775
1776 # Wait for the platform to connect to the network.
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001777 autils.wait_for_event_with_keys(
1778 ad, cconsts.EVENT_NETWORK_CALLBACK,
1779 60,
1780 (cconsts.NETWORK_CB_KEY_ID, key),
1781 (cconsts.NETWORK_CB_KEY_EVENT, cconsts.NETWORK_CB_AVAILABLE))
1782 on_capabilities_changed = autils.wait_for_event_with_keys(
1783 ad, cconsts.EVENT_NETWORK_CALLBACK,
1784 10,
1785 (cconsts.NETWORK_CB_KEY_ID, key),
1786 (cconsts.NETWORK_CB_KEY_EVENT,
1787 cconsts.NETWORK_CB_CAPABILITIES_CHANGED))
Roshan Pius008fe7f2021-03-25 14:18:17 -07001788 connected_network = None
1789 # WifiInfo is attached to TransportInfo only in S.
1790 if ad.droid.isSdkAtLeastS():
1791 connected_network = (
1792 on_capabilities_changed["data"][
1793 cconsts.NETWORK_CB_KEY_TRANSPORT_INFO]
1794 )
1795 else:
1796 connected_network = ad.droid.wifiGetConnectionInfo()
Roshan Piusc999e5e2018-11-09 10:59:52 -08001797 ad.log.info("Connected to network %s", connected_network)
Omar El Ayach8c017902020-10-18 10:26:57 -07001798 asserts.assert_equal(
1799 connected_network[WifiEnums.SSID_KEY], expected_ssid,
1800 "Connected to the wrong network."
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001801 "Expected %s, but got %s."
1802 % (network, connected_network))
Roshan Piusc999e5e2018-11-09 10:59:52 -08001803 except Empty:
1804 asserts.fail("Failed to connect to %s" % expected_ssid)
1805 except Exception as error:
Roshan Pius5fd42eb2021-01-21 12:26:31 -08001806 ad.log.error("Failed to connect to %s with error %s" %
Roshan Piusc999e5e2018-11-09 10:59:52 -08001807 (expected_ssid, error))
1808 raise signals.TestFailure("Failed to connect to %s network" % network)
1809 finally:
1810 ad.droid.wifiStopTrackingStateChange()
1811
1812
Omar El Ayach8c017902020-10-18 10:26:57 -07001813def wifi_passpoint_connect(ad,
1814 passpoint_network,
1815 num_of_tries=1,
Oscar Shucb9af9b2019-05-02 20:01:49 +00001816 assert_on_fail=True):
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001817 """Connect an Android device to a wifi network.
1818
1819 Initiate connection to a wifi network, wait for the "connected" event, then
1820 confirm the connected ssid is the one requested.
1821
1822 This will directly fail a test if anything goes wrong.
1823
1824 Args:
1825 ad: android_device object to initiate connection on.
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001826 passpoint_network: SSID of the Passpoint network to connect to.
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001827 num_of_tries: An integer that is the number of times to try before
1828 delaring failure. Default is 1.
1829 assert_on_fail: If True, error checks in this function will raise test
1830 failure signals.
1831
1832 Returns:
1833 If assert_on_fail is False, function returns network id, if the connect was
1834 successful, False otherwise. If assert_on_fail is True, no return value.
1835 """
Omar El Ayach8c017902020-10-18 10:26:57 -07001836 _assert_on_fail_handler(_wifi_passpoint_connect,
1837 assert_on_fail,
1838 ad,
1839 passpoint_network,
1840 num_of_tries=num_of_tries)
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001841
1842
Oscar Shucb9af9b2019-05-02 20:01:49 +00001843def _wifi_passpoint_connect(ad, passpoint_network, num_of_tries=1):
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001844 """Connect an Android device to a wifi network.
1845
1846 Initiate connection to a wifi network, wait for the "connected" event, then
1847 confirm the connected ssid is the one requested.
1848
1849 This will directly fail a test if anything goes wrong.
1850
1851 Args:
1852 ad: android_device object to initiate connection on.
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001853 passpoint_network: SSID of the Passpoint network to connect to.
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001854 num_of_tries: An integer that is the number of times to try before
1855 delaring failure. Default is 1.
1856 """
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001857 ad.droid.wifiStartTrackingStateChange()
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001858 expected_ssid = passpoint_network
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001859 ad.log.info("Starting connection process to passpoint %s", expected_ssid)
1860
1861 try:
Omar El Ayach8c017902020-10-18 10:26:57 -07001862 connect_result = _wait_for_connect_event(ad, expected_ssid,
1863 num_of_tries)
1864 asserts.assert_true(
1865 connect_result, "Failed to connect to WiFi passpoint network %s on"
1866 " %s" % (expected_ssid, ad.serial))
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001867 ad.log.info("Wi-Fi connection result: %s.", connect_result)
1868 actual_ssid = connect_result['data'][WifiEnums.SSID_KEY]
Omar El Ayach8c017902020-10-18 10:26:57 -07001869 asserts.assert_equal(
1870 actual_ssid, expected_ssid,
1871 "Connected to the wrong network on %s." % ad.serial)
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001872 ad.log.info("Connected to Wi-Fi passpoint network %s.", actual_ssid)
1873
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001874 internet = validate_connection(ad, DEFAULT_PING_ADDR)
1875 if not internet:
1876 raise signals.TestFailure("Failed to connect to internet on %s" %
1877 expected_ssid)
1878 except Exception as error:
1879 ad.log.error("Failed to connect to passpoint network %s with error %s",
Omar El Ayach8c017902020-10-18 10:26:57 -07001880 expected_ssid, error)
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001881 raise signals.TestFailure("Failed to connect to %s passpoint network" %
Omar El Ayach8c017902020-10-18 10:26:57 -07001882 expected_ssid)
Bindu Mahadev9dd48172017-03-06 17:04:34 -08001883
1884 finally:
1885 ad.droid.wifiStopTrackingStateChange()
1886
1887
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001888def delete_passpoint(ad, fqdn):
1889 """Delete a required Passpoint configuration."""
1890 try:
1891 ad.droid.removePasspointConfig(fqdn)
1892 return True
1893 except Exception as error:
Omar El Ayach8c017902020-10-18 10:26:57 -07001894 ad.log.error(
1895 "Failed to remove passpoint configuration with FQDN=%s "
1896 "and error=%s", fqdn, error)
Bindu Mahadevd4542a82017-04-05 09:50:17 -07001897 return False
1898
1899
Ang Li73697b32015-12-03 00:41:53 +00001900def start_wifi_single_scan(ad, scan_setting):
1901 """Starts wifi single shot scan.
1902
1903 Args:
1904 ad: android_device object to initiate connection on.
1905 scan_setting: A dict representing the settings of the scan.
1906
1907 Returns:
1908 If scan was started successfully, event data of success event is returned.
1909 """
Ang Li82522812016-06-02 13:57:21 -07001910 idx = ad.droid.wifiScannerStartScan(scan_setting)
1911 event = ad.ed.pop_event("WifiScannerScan%sonSuccess" % idx, SHORT_TIMEOUT)
Ang Li31b00782016-06-21 13:04:23 -07001912 ad.log.debug("Got event %s", event)
Ang Li73697b32015-12-03 00:41:53 +00001913 return event['data']
1914
Ang Li82522812016-06-02 13:57:21 -07001915
Ang Li73697b32015-12-03 00:41:53 +00001916def track_connection(ad, network_ssid, check_connection_count):
1917 """Track wifi connection to network changes for given number of counts
1918
1919 Args:
1920 ad: android_device object for forget network.
1921 network_ssid: network ssid to which connection would be tracked
1922 check_connection_count: Integer for maximum number network connection
Ang Li82522812016-06-02 13:57:21 -07001923 check.
Ang Li73697b32015-12-03 00:41:53 +00001924 Returns:
Ang Li73697b32015-12-03 00:41:53 +00001925 True if connection to given network happen, else return False.
1926 """
Girish Moturu40d7dc22016-11-02 12:14:56 -07001927 ad.droid.wifiStartTrackingStateChange()
Ang Li73697b32015-12-03 00:41:53 +00001928 while check_connection_count > 0:
Girish Moturu40d7dc22016-11-02 12:14:56 -07001929 connect_network = ad.ed.pop_event("WifiNetworkConnected", 120)
Ang Li31b00782016-06-21 13:04:23 -07001930 ad.log.info("Connected to network %s", connect_network)
Ang Li82522812016-06-02 13:57:21 -07001931 if (WifiEnums.SSID_KEY in connect_network['data'] and
1932 connect_network['data'][WifiEnums.SSID_KEY] == network_ssid):
1933 return True
Ang Li8e767182015-12-09 17:29:24 -08001934 check_connection_count -= 1
Girish Moturu40d7dc22016-11-02 12:14:56 -07001935 ad.droid.wifiStopTrackingStateChange()
Ang Li73697b32015-12-03 00:41:53 +00001936 return False
1937
Ang Li82522812016-06-02 13:57:21 -07001938
Ang Li73697b32015-12-03 00:41:53 +00001939def get_scan_time_and_channels(wifi_chs, scan_setting, stime_channel):
1940 """Calculate the scan time required based on the band or channels in scan
1941 setting
1942
1943 Args:
1944 wifi_chs: Object of channels supported
1945 scan_setting: scan setting used for start scan
1946 stime_channel: scan time per channel
1947
1948 Returns:
1949 scan_time: time required for completing a scan
1950 scan_channels: channel used for scanning
1951 """
1952 scan_time = 0
1953 scan_channels = []
1954 if "band" in scan_setting and "channels" not in scan_setting:
Ang Li8e767182015-12-09 17:29:24 -08001955 scan_channels = wifi_chs.band_to_freq(scan_setting["band"])
Ang Li73697b32015-12-03 00:41:53 +00001956 elif "channels" in scan_setting and "band" not in scan_setting:
Ang Li8e767182015-12-09 17:29:24 -08001957 scan_channels = scan_setting["channels"]
Ang Li73697b32015-12-03 00:41:53 +00001958 scan_time = len(scan_channels) * stime_channel
1959 for channel in scan_channels:
Ang Li8e767182015-12-09 17:29:24 -08001960 if channel in WifiEnums.DFS_5G_FREQUENCIES:
Ang Li82522812016-06-02 13:57:21 -07001961 scan_time += 132 #passive scan time on DFS
Ang Li73697b32015-12-03 00:41:53 +00001962 return scan_time, scan_channels
1963
Ang Li82522812016-06-02 13:57:21 -07001964
Ang Li73697b32015-12-03 00:41:53 +00001965def start_wifi_track_bssid(ad, track_setting):
1966 """Start tracking Bssid for the given settings.
1967
1968 Args:
1969 ad: android_device object.
1970 track_setting: Setting for which the bssid tracking should be started
1971
1972 Returns:
1973 If tracking started successfully, event data of success event is returned.
1974 """
Girish Moturu40d7dc22016-11-02 12:14:56 -07001975 idx = ad.droid.wifiScannerStartTrackingBssids(
Ang Li82522812016-06-02 13:57:21 -07001976 track_setting["bssidInfos"], track_setting["apLostThreshold"])
Girish Moturu40d7dc22016-11-02 12:14:56 -07001977 event = ad.ed.pop_event("WifiScannerBssid{}onSuccess".format(idx),
Betty Zhou3caa0982017-02-22 19:26:20 -08001978 SHORT_TIMEOUT)
Ang Li73697b32015-12-03 00:41:53 +00001979 return event['data']
1980
Ang Li82522812016-06-02 13:57:21 -07001981
Ang Li73697b32015-12-03 00:41:53 +00001982def convert_pem_key_to_pkcs8(in_file, out_file):
1983 """Converts the key file generated by us to the format required by
1984 Android using openssl.
1985
1986 The input file must have the extension "pem". The output file must
1987 have the extension "der".
1988
1989 Args:
1990 in_file: The original key file.
1991 out_file: The full path to the converted key file, including
1992 filename.
1993 """
Ang Li82522812016-06-02 13:57:21 -07001994 asserts.assert_true(in_file.endswith(".pem"), "Input file has to be .pem.")
Omar El Ayach8c017902020-10-18 10:26:57 -07001995 asserts.assert_true(out_file.endswith(".der"),
1996 "Output file has to be .der.")
Ang Li73697b32015-12-03 00:41:53 +00001997 cmd = ("openssl pkcs8 -inform PEM -in {} -outform DER -out {} -nocrypt"
1998 " -topk8").format(in_file, out_file)
Ang Lifee28402016-07-13 13:43:29 -07001999 utils.exe_cmd(cmd)
Ang Li73697b32015-12-03 00:41:53 +00002000
Ang Li82522812016-06-02 13:57:21 -07002001
Omar El Ayach8c017902020-10-18 10:26:57 -07002002def validate_connection(ad,
2003 ping_addr=DEFAULT_PING_ADDR,
2004 wait_time=15,
Girish Moturu804a3492020-02-17 14:32:02 -08002005 ping_gateway=True):
Ang Li73697b32015-12-03 00:41:53 +00002006 """Validate internet connection by pinging the address provided.
2007
2008 Args:
2009 ad: android_device object.
2010 ping_addr: address on internet for pinging.
Girish Moturua2a5bf22019-08-16 09:52:29 -07002011 wait_time: wait for some time before validating connection
Ang Li73697b32015-12-03 00:41:53 +00002012
2013 Returns:
Bindu Mahadev50374df2017-01-04 11:03:32 -08002014 ping output if successful, NULL otherwise.
Ang Li73697b32015-12-03 00:41:53 +00002015 """
Girish Moturua2a5bf22019-08-16 09:52:29 -07002016 # wait_time to allow for DHCP to complete.
Hsiu-Chang Chend7b3c572020-06-12 12:19:30 +08002017 for i in range(wait_time):
Girish Moturuacf35002020-11-09 23:37:35 -08002018 if ad.droid.connectivityNetworkIsConnected(
Omar El Ayach8c017902020-10-18 10:26:57 -07002019 ) and ad.droid.connectivityGetIPv4DefaultGateway():
Hsiu-Chang Chend7b3c572020-06-12 12:19:30 +08002020 break
2021 time.sleep(1)
Girish Moturu804a3492020-02-17 14:32:02 -08002022 ping = False
2023 try:
2024 ping = ad.droid.httpPing(ping_addr)
2025 ad.log.info("Http ping result: %s.", ping)
2026 except:
2027 pass
2028 if not ping and ping_gateway:
2029 ad.log.info("Http ping failed. Pinging default gateway")
2030 gw = ad.droid.connectivityGetIPv4DefaultGateway()
2031 result = ad.adb.shell("ping -c 6 {}".format(gw))
2032 ad.log.info("Default gateway ping result: %s" % result)
2033 ping = False if "100% packet loss" in result else True
Ang Li73697b32015-12-03 00:41:53 +00002034 return ping
2035
Ang Li82522812016-06-02 13:57:21 -07002036
Ang Li73697b32015-12-03 00:41:53 +00002037#TODO(angli): This can only verify if an actual value is exactly the same.
2038# Would be nice to be able to verify an actual value is one of serveral.
2039def verify_wifi_connection_info(ad, expected_con):
2040 """Verifies that the information of the currently connected wifi network is
2041 as expected.
2042
2043 Args:
2044 expected_con: A dict representing expected key-value pairs for wifi
2045 connection. e.g. {"SSID": "test_wifi"}
2046 """
2047 current_con = ad.droid.wifiGetConnectionInfo()
Ang Li374d7602016-02-08 17:27:27 -08002048 case_insensitive = ["BSSID", "supplicant_state"]
Ang Li31b00782016-06-21 13:04:23 -07002049 ad.log.debug("Current connection: %s", current_con)
Ang Li73697b32015-12-03 00:41:53 +00002050 for k, expected_v in expected_con.items():
Ang Li9a66de72016-02-08 15:26:38 -08002051 # Do not verify authentication related fields.
2052 if k == "password":
2053 continue
Ang Li82522812016-06-02 13:57:21 -07002054 msg = "Field %s does not exist in wifi connection info %s." % (
2055 k, current_con)
Ang Li374d7602016-02-08 17:27:27 -08002056 if k not in current_con:
2057 raise signals.TestFailure(msg)
2058 actual_v = current_con[k]
2059 if k in case_insensitive:
2060 actual_v = actual_v.lower()
2061 expected_v = expected_v.lower()
Ang Li73697b32015-12-03 00:41:53 +00002062 msg = "Expected %s to be %s, actual %s is %s." % (k, expected_v, k,
Ang Li82522812016-06-02 13:57:21 -07002063 actual_v)
Ang Li374d7602016-02-08 17:27:27 -08002064 if actual_v != expected_v:
2065 raise signals.TestFailure(msg)
Ang Li73697b32015-12-03 00:41:53 +00002066
Ang Li82522812016-06-02 13:57:21 -07002067
Omar El Ayach8c017902020-10-18 10:26:57 -07002068def check_autoconnect_to_open_network(
2069 ad, conn_timeout=WIFI_CONNECTION_TIMEOUT_DEFAULT):
Preetesh Barrettoe8c428b2019-02-14 09:15:44 -08002070 """Connects to any open WiFI AP
2071 Args:
2072 timeout value in sec to wait for UE to connect to a WiFi AP
2073 Returns:
2074 True if UE connects to WiFi AP (supplicant_state = completed)
2075 False if UE fails to complete connection within WIFI_CONNECTION_TIMEOUT time.
2076 """
2077 if ad.droid.wifiCheckState():
2078 return True
2079 ad.droid.wifiToggleState()
2080 wifi_connection_state = None
2081 timeout = time.time() + conn_timeout
2082 while wifi_connection_state != "completed":
Omar El Ayach8c017902020-10-18 10:26:57 -07002083 wifi_connection_state = ad.droid.wifiGetConnectionInfo(
2084 )['supplicant_state']
Preetesh Barrettoe8c428b2019-02-14 09:15:44 -08002085 if time.time() > timeout:
2086 ad.log.warning("Failed to connect to WiFi AP")
2087 return False
2088 return True
2089
2090
Ang Li73697b32015-12-03 00:41:53 +00002091def expand_enterprise_config_by_phase2(config):
2092 """Take an enterprise config and generate a list of configs, each with
2093 a different phase2 auth type.
2094
2095 Args:
2096 config: A dict representing enterprise config.
2097
2098 Returns
2099 A list of enterprise configs.
2100 """
2101 results = []
Ang Li0e7e58f2016-02-22 12:15:02 -08002102 phase2_types = WifiEnums.EapPhase2
2103 if config[WifiEnums.Enterprise.EAP] == WifiEnums.Eap.PEAP:
2104 # Skip unsupported phase2 types for PEAP.
2105 phase2_types = [WifiEnums.EapPhase2.GTC, WifiEnums.EapPhase2.MSCHAPV2]
2106 for phase2_type in phase2_types:
Ang Li73697b32015-12-03 00:41:53 +00002107 # Skip a special case for passpoint TTLS.
Omar El Ayach8c017902020-10-18 10:26:57 -07002108 if (WifiEnums.Enterprise.FQDN in config
2109 and phase2_type == WifiEnums.EapPhase2.GTC):
Ang Li73697b32015-12-03 00:41:53 +00002110 continue
2111 c = dict(config)
Girish Moturu150d32f2017-02-14 12:27:07 -08002112 c[WifiEnums.Enterprise.PHASE2] = phase2_type.value
Ang Li73697b32015-12-03 00:41:53 +00002113 results.append(c)
2114 return results
Ang Li2d3fe982016-06-08 10:00:43 -07002115
2116
Girish Moturub48a13c2017-02-27 11:36:42 -08002117def generate_eap_test_name(config, ad=None):
Girish Moturu150d32f2017-02-14 12:27:07 -08002118 """ Generates a test case name based on an EAP configuration.
2119
2120 Args:
2121 config: A dict representing an EAP credential.
Girish Moturub48a13c2017-02-27 11:36:42 -08002122 ad object: Redundant but required as the same param is passed
2123 to test_func in run_generated_tests
Girish Moturu150d32f2017-02-14 12:27:07 -08002124
2125 Returns:
2126 A string representing the name of a generated EAP test case.
2127 """
2128 eap = WifiEnums.Eap
2129 eap_phase2 = WifiEnums.EapPhase2
Girish Moturub48a13c2017-02-27 11:36:42 -08002130 Ent = WifiEnums.Enterprise
Girish Moturu150d32f2017-02-14 12:27:07 -08002131 name = "test_connect-"
2132 eap_name = ""
2133 for e in eap:
2134 if e.value == config[Ent.EAP]:
2135 eap_name = e.name
2136 break
2137 if "peap0" in config[WifiEnums.SSID_KEY].lower():
2138 eap_name = "PEAP0"
2139 if "peap1" in config[WifiEnums.SSID_KEY].lower():
2140 eap_name = "PEAP1"
2141 name += eap_name
2142 if Ent.PHASE2 in config:
2143 for e in eap_phase2:
2144 if e.value == config[Ent.PHASE2]:
2145 name += "-{}".format(e.name)
2146 break
2147 return name
2148
2149
Ang Li2d3fe982016-06-08 10:00:43 -07002150def group_attenuators(attenuators):
2151 """Groups a list of attenuators into attenuator groups for backward
2152 compatibility reasons.
2153
2154 Most legacy Wi-Fi setups have two attenuators each connected to a separate
2155 AP. The new Wi-Fi setup has four attenuators, each connected to one channel
2156 on an AP, so two of them are connected to one AP.
2157
2158 To make the existing scripts work in the new setup, when the script needs
2159 to attenuate one AP, it needs to set attenuation on both attenuators
2160 connected to the same AP.
2161
2162 This function groups attenuators properly so the scripts work in both
2163 legacy and new Wi-Fi setups.
2164
2165 Args:
2166 attenuators: A list of attenuator objects, either two or four in length.
2167
2168 Raises:
2169 signals.TestFailure is raised if the attenuator list does not have two
2170 or four objects.
2171 """
2172 attn0 = attenuator.AttenuatorGroup("AP0")
2173 attn1 = attenuator.AttenuatorGroup("AP1")
2174 # Legacy testbed setup has two attenuation channels.
2175 num_of_attns = len(attenuators)
2176 if num_of_attns == 2:
2177 attn0.add(attenuators[0])
2178 attn1.add(attenuators[1])
2179 elif num_of_attns == 4:
2180 attn0.add(attenuators[0])
2181 attn0.add(attenuators[1])
2182 attn1.add(attenuators[2])
2183 attn1.add(attenuators[3])
2184 else:
2185 asserts.fail(("Either two or four attenuators are required for this "
2186 "test, but found %s") % num_of_attns)
2187 return [attn0, attn1]
Jong Wook Kim92356922018-02-06 18:32:49 -08002188
Bindu Mahadevff295782019-02-08 16:17:48 -08002189
Girish Moturu36348a32019-12-10 08:41:54 -08002190def set_attns(attenuator, attn_val_name, roaming_attn=ROAMING_ATTN):
Bindu Mahadev7060a9f2018-05-04 13:48:12 -07002191 """Sets attenuation values on attenuators used in this test.
2192
2193 Args:
2194 attenuator: The attenuator object.
2195 attn_val_name: Name of the attenuation value pair to use.
Girish Moturu36348a32019-12-10 08:41:54 -08002196 roaming_attn: Dictionary specifying the attenuation params.
Bindu Mahadev7060a9f2018-05-04 13:48:12 -07002197 """
2198 logging.info("Set attenuation values to %s", roaming_attn[attn_val_name])
2199 try:
2200 attenuator[0].set_atten(roaming_attn[attn_val_name][0])
2201 attenuator[1].set_atten(roaming_attn[attn_val_name][1])
2202 attenuator[2].set_atten(roaming_attn[attn_val_name][2])
2203 attenuator[3].set_atten(roaming_attn[attn_val_name][3])
2204 except:
2205 logging.exception("Failed to set attenuation values %s.",
Omar El Ayach8c017902020-10-18 10:26:57 -07002206 attn_val_name)
Bindu Mahadev7060a9f2018-05-04 13:48:12 -07002207 raise
2208
Omar El Ayach8c017902020-10-18 10:26:57 -07002209
Girish Moturu36348a32019-12-10 08:41:54 -08002210def set_attns_steps(attenuators,
2211 atten_val_name,
2212 roaming_attn=ROAMING_ATTN,
2213 steps=10,
2214 wait_time=12):
Hsiu-Chang Chen73ea3342019-05-22 11:20:08 +08002215 """Set attenuation values on attenuators used in this test. It will change
2216 the attenuation values linearly from current value to target value step by
2217 step.
2218
2219 Args:
2220 attenuators: The list of attenuator objects that you want to change
2221 their attenuation value.
2222 atten_val_name: Name of the attenuation value pair to use.
Girish Moturu36348a32019-12-10 08:41:54 -08002223 roaming_attn: Dictionary specifying the attenuation params.
Hsiu-Chang Chen73ea3342019-05-22 11:20:08 +08002224 steps: Number of attenuator changes to reach the target value.
2225 wait_time: Sleep time for each change of attenuator.
2226 """
2227 logging.info("Set attenuation values to %s in %d step(s)",
Omar El Ayach8c017902020-10-18 10:26:57 -07002228 roaming_attn[atten_val_name], steps)
Hsiu-Chang Chen73ea3342019-05-22 11:20:08 +08002229 start_atten = [attenuator.get_atten() for attenuator in attenuators]
2230 target_atten = roaming_attn[atten_val_name]
2231 for current_step in range(steps):
2232 progress = (current_step + 1) / steps
2233 for i, attenuator in enumerate(attenuators):
2234 amount_since_start = (target_atten[i] - start_atten[i]) * progress
2235 attenuator.set_atten(round(start_atten[i] + amount_since_start))
2236 time.sleep(wait_time)
2237
Bindu Mahadev7060a9f2018-05-04 13:48:12 -07002238
Girish Moturu36348a32019-12-10 08:41:54 -08002239def trigger_roaming_and_validate(dut,
2240 attenuator,
2241 attn_val_name,
2242 expected_con,
2243 roaming_attn=ROAMING_ATTN):
Bindu Mahadev7060a9f2018-05-04 13:48:12 -07002244 """Sets attenuators to trigger roaming and validate the DUT connected
2245 to the BSSID expected.
2246
2247 Args:
2248 attenuator: The attenuator object.
2249 attn_val_name: Name of the attenuation value pair to use.
2250 expected_con: The network information of the expected network.
Girish Moturu36348a32019-12-10 08:41:54 -08002251 roaming_attn: Dictionary specifying the attenaution params.
Bindu Mahadev7060a9f2018-05-04 13:48:12 -07002252 """
2253 expected_con = {
2254 WifiEnums.SSID_KEY: expected_con[WifiEnums.SSID_KEY],
2255 WifiEnums.BSSID_KEY: expected_con["bssid"],
2256 }
Girish Moturu36348a32019-12-10 08:41:54 -08002257 set_attns_steps(attenuator, attn_val_name, roaming_attn)
Bindu Mahadev7060a9f2018-05-04 13:48:12 -07002258
Hsiu-Chang Chenef856402018-09-18 12:32:49 +08002259 verify_wifi_connection_info(dut, expected_con)
2260 expected_bssid = expected_con[WifiEnums.BSSID_KEY]
2261 logging.info("Roamed to %s successfully", expected_bssid)
2262 if not validate_connection(dut):
2263 raise signals.TestFailure("Fail to connect to internet on %s" %
Omar El Ayach8c017902020-10-18 10:26:57 -07002264 expected_bssid)
2265
Jong Wook Kim92356922018-02-06 18:32:49 -08002266
2267def create_softap_config():
2268 """Create a softap config with random ssid and password."""
2269 ap_ssid = "softap_" + utils.rand_ascii_str(8)
2270 ap_password = utils.rand_ascii_str(8)
2271 logging.info("softap setup: %s %s", ap_ssid, ap_password)
2272 config = {
2273 WifiEnums.SSID_KEY: ap_ssid,
2274 WifiEnums.PWD_KEY: ap_password,
2275 }
2276 return config
Girish Moturucf4dccd2018-08-27 12:22:00 -07002277
Omar El Ayach8c017902020-10-18 10:26:57 -07002278
Bindu Mahadevff295782019-02-08 16:17:48 -08002279def start_softap_and_verify(ad, band):
2280 """Bring-up softap and verify AP mode and in scan results.
2281
2282 Args:
2283 band: The band to use for softAP.
2284
2285 Returns: dict, the softAP config.
2286
2287 """
lesl2f0fb232019-11-05 16:35:28 +08002288 # Register before start the test.
2289 callbackId = ad.dut.droid.registerSoftApCallback()
2290 # Check softap info value is default
2291 frequency, bandwdith = get_current_softap_info(ad.dut, callbackId, True)
2292 asserts.assert_true(frequency == 0, "Softap frequency is not reset")
2293 asserts.assert_true(bandwdith == 0, "Softap bandwdith is not reset")
2294
Bindu Mahadevff295782019-02-08 16:17:48 -08002295 config = create_softap_config()
2296 start_wifi_tethering(ad.dut,
2297 config[WifiEnums.SSID_KEY],
Omar El Ayach8c017902020-10-18 10:26:57 -07002298 config[WifiEnums.PWD_KEY],
2299 band=band)
Bindu Mahadevff295782019-02-08 16:17:48 -08002300 asserts.assert_true(ad.dut.droid.wifiIsApEnabled(),
Omar El Ayach8c017902020-10-18 10:26:57 -07002301 "SoftAp is not reported as running")
2302 start_wifi_connection_scan_and_ensure_network_found(
2303 ad.dut_client, config[WifiEnums.SSID_KEY])
lesl2f0fb232019-11-05 16:35:28 +08002304
2305 # Check softap info can get from callback succeed and assert value should be
2306 # valid.
2307 frequency, bandwdith = get_current_softap_info(ad.dut, callbackId, True)
2308 asserts.assert_true(frequency > 0, "Softap frequency is not valid")
2309 asserts.assert_true(bandwdith > 0, "Softap bandwdith is not valid")
2310 # Unregister callback
2311 ad.dut.droid.unregisterSoftApCallback(callbackId)
2312
Bindu Mahadevff295782019-02-08 16:17:48 -08002313 return config
2314
Omar El Ayach8c017902020-10-18 10:26:57 -07002315
lesle8e3c0a2019-02-22 17:06:04 +08002316def wait_for_expected_number_of_softap_clients(ad, callbackId,
Omar El Ayach8c017902020-10-18 10:26:57 -07002317 expected_num_of_softap_clients):
lesle8e3c0a2019-02-22 17:06:04 +08002318 """Wait for the number of softap clients to be updated as expected.
2319 Args:
2320 callbackId: Id of the callback associated with registering.
2321 expected_num_of_softap_clients: expected number of softap clients.
2322 """
2323 eventStr = wifi_constants.SOFTAP_CALLBACK_EVENT + str(
Omar El Ayach8c017902020-10-18 10:26:57 -07002324 callbackId) + wifi_constants.SOFTAP_NUMBER_CLIENTS_CHANGED
James Mattis5a5dd492020-05-14 13:09:43 -07002325 clientData = ad.ed.pop_event(eventStr, SHORT_TIMEOUT)['data']
2326 clientCount = clientData[wifi_constants.SOFTAP_NUMBER_CLIENTS_CALLBACK_KEY]
Omar El Ayach8c017902020-10-18 10:26:57 -07002327 clientMacAddresses = clientData[
2328 wifi_constants.SOFTAP_CLIENTS_MACS_CALLBACK_KEY]
2329 asserts.assert_equal(
2330 clientCount, expected_num_of_softap_clients,
2331 "The number of softap clients doesn't match the expected number")
2332 asserts.assert_equal(
2333 len(clientMacAddresses), expected_num_of_softap_clients,
2334 "The number of mac addresses doesn't match the expected number")
James Mattis5a5dd492020-05-14 13:09:43 -07002335 for macAddress in clientMacAddresses:
Omar El Ayach8c017902020-10-18 10:26:57 -07002336 asserts.assert_true(checkMacAddress(macAddress),
2337 "An invalid mac address was returned")
2338
James Mattis5a5dd492020-05-14 13:09:43 -07002339
2340def checkMacAddress(input):
2341 """Validate whether a string is a valid mac address or not.
2342
2343 Args:
2344 input: The string to validate.
2345
2346 Returns: True/False, returns true for a valid mac address and false otherwise.
2347 """
2348 macValidationRegex = "[0-9a-f]{2}([-:]?)[0-9a-f]{2}(\\1[0-9a-f]{2}){4}$"
2349 if re.match(macValidationRegex, input.lower()):
2350 return True
2351 return False
lesle8e3c0a2019-02-22 17:06:04 +08002352
Omar El Ayach8c017902020-10-18 10:26:57 -07002353
lesle8e3c0a2019-02-22 17:06:04 +08002354def wait_for_expected_softap_state(ad, callbackId, expected_softap_state):
2355 """Wait for the expected softap state change.
2356 Args:
2357 callbackId: Id of the callback associated with registering.
2358 expected_softap_state: The expected softap state.
2359 """
2360 eventStr = wifi_constants.SOFTAP_CALLBACK_EVENT + str(
Omar El Ayach8c017902020-10-18 10:26:57 -07002361 callbackId) + wifi_constants.SOFTAP_STATE_CHANGED
2362 asserts.assert_equal(
2363 ad.ed.pop_event(eventStr, SHORT_TIMEOUT)['data'][
2364 wifi_constants.SOFTAP_STATE_CHANGE_CALLBACK_KEY],
2365 expected_softap_state,
2366 "Softap state doesn't match with expected state")
2367
lesle8e3c0a2019-02-22 17:06:04 +08002368
2369def get_current_number_of_softap_clients(ad, callbackId):
2370 """pop up all of softap client updated event from queue.
2371 Args:
2372 callbackId: Id of the callback associated with registering.
2373
2374 Returns:
2375 If exist aleast callback, returns last updated number_of_softap_clients.
2376 Returns None when no any match callback event in queue.
2377 """
2378 eventStr = wifi_constants.SOFTAP_CALLBACK_EVENT + str(
Omar El Ayach8c017902020-10-18 10:26:57 -07002379 callbackId) + wifi_constants.SOFTAP_NUMBER_CLIENTS_CHANGED
lesle8e3c0a2019-02-22 17:06:04 +08002380 events = ad.ed.pop_all(eventStr)
2381 for event in events:
Omar El Ayach8c017902020-10-18 10:26:57 -07002382 num_of_clients = event['data'][
2383 wifi_constants.SOFTAP_NUMBER_CLIENTS_CALLBACK_KEY]
lesle8e3c0a2019-02-22 17:06:04 +08002384 if len(events) == 0:
2385 return None
2386 return num_of_clients
Bindu Mahadevff295782019-02-08 16:17:48 -08002387
Omar El Ayach8c017902020-10-18 10:26:57 -07002388
lesl67124362021-05-04 19:33:14 +08002389def get_current_softap_info(ad, callbackId, need_to_wait):
lesl2f0fb232019-11-05 16:35:28 +08002390 """pop up all of softap info changed event from queue.
2391 Args:
2392 callbackId: Id of the callback associated with registering.
lesl67124362021-05-04 19:33:14 +08002393 need_to_wait: Wait for the info callback event before pop all.
lesl2f0fb232019-11-05 16:35:28 +08002394 Returns:
2395 Returns last updated information of softap.
2396 """
2397 eventStr = wifi_constants.SOFTAP_CALLBACK_EVENT + str(
Omar El Ayach8c017902020-10-18 10:26:57 -07002398 callbackId) + wifi_constants.SOFTAP_INFO_CHANGED
lesl67124362021-05-04 19:33:14 +08002399 ad.log.debug("softap info dump from eventStr %s", eventStr)
lesl2f0fb232019-11-05 16:35:28 +08002400 frequency = 0
2401 bandwidth = 0
lesl67124362021-05-04 19:33:14 +08002402 if (need_to_wait):
lesl2f0fb232019-11-05 16:35:28 +08002403 event = ad.ed.pop_event(eventStr, SHORT_TIMEOUT)
Omar El Ayach8c017902020-10-18 10:26:57 -07002404 frequency = event['data'][
2405 wifi_constants.SOFTAP_INFO_FREQUENCY_CALLBACK_KEY]
2406 bandwidth = event['data'][
2407 wifi_constants.SOFTAP_INFO_BANDWIDTH_CALLBACK_KEY]
lesl2f0fb232019-11-05 16:35:28 +08002408 ad.log.info("softap info updated, frequency is %s, bandwidth is %s",
Omar El Ayach8c017902020-10-18 10:26:57 -07002409 frequency, bandwidth)
lesl2f0fb232019-11-05 16:35:28 +08002410
2411 events = ad.ed.pop_all(eventStr)
2412 for event in events:
Omar El Ayach8c017902020-10-18 10:26:57 -07002413 frequency = event['data'][
2414 wifi_constants.SOFTAP_INFO_FREQUENCY_CALLBACK_KEY]
2415 bandwidth = event['data'][
2416 wifi_constants.SOFTAP_INFO_BANDWIDTH_CALLBACK_KEY]
2417 ad.log.info("softap info, frequency is %s, bandwidth is %s", frequency,
2418 bandwidth)
lesl2f0fb232019-11-05 16:35:28 +08002419 return frequency, bandwidth
2420
lesl67124362021-05-04 19:33:14 +08002421def get_current_softap_infos(ad, callbackId, need_to_wait):
2422 """pop up all of softap info list changed event from queue.
2423 Args:
2424 callbackId: Id of the callback associated with registering.
2425 need_to_wait: Wait for the info callback event before pop all.
2426 Returns:
2427 Returns last updated informations of softap.
2428 """
2429 eventStr = wifi_constants.SOFTAP_CALLBACK_EVENT + str(
2430 callbackId) + wifi_constants.SOFTAP_INFOLIST_CHANGED
2431 ad.log.debug("softap info dump from eventStr %s", eventStr)
2432
2433 if (need_to_wait):
2434 event = ad.ed.pop_event(eventStr, SHORT_TIMEOUT)
2435 infos = event['data']
2436
2437 events = ad.ed.pop_all(eventStr)
2438 for event in events:
2439 infos = event['data']
2440
2441 for info in infos:
2442 frequency = info[
2443 wifi_constants.SOFTAP_INFO_FREQUENCY_CALLBACK_KEY]
2444 bandwidth = info[
2445 wifi_constants.SOFTAP_INFO_BANDWIDTH_CALLBACK_KEY]
2446 wifistandard = info[
2447 wifi_constants.SOFTAP_INFO_WIFISTANDARD_CALLBACK_KEY]
2448 bssid = info[
2449 wifi_constants.SOFTAP_INFO_BSSID_CALLBACK_KEY]
2450 ad.log.info(
2451 "softap info, freq:%s, bw:%s, wifistandard:%s, bssid:%s",
2452 frequency, bandwidth, wifistandard, bssid)
2453
2454 return infos
2455
2456def get_current_softap_capability(ad, callbackId, need_to_wait):
2457 """pop up all of softap info list changed event from queue.
2458 Args:
2459 callbackId: Id of the callback associated with registering.
2460 need_to_wait: Wait for the info callback event before pop all.
2461 Returns:
2462 Returns last updated capability of softap.
2463 """
2464 eventStr = wifi_constants.SOFTAP_CALLBACK_EVENT + str(
2465 callbackId) + wifi_constants.SOFTAP_CAPABILITY_CHANGED
2466 ad.log.debug("softap capability dump from eventStr %s", eventStr)
2467 if (need_to_wait):
2468 event = ad.ed.pop_event(eventStr, SHORT_TIMEOUT)
2469 capability = event['data']
2470
2471 events = ad.ed.pop_all(eventStr)
2472 for event in events:
2473 capability = event['data']
2474
2475 return capability
lesl2f0fb232019-11-05 16:35:28 +08002476
Hsiu-Chang Chenebb239d2020-09-16 15:12:34 +08002477def get_ssrdumps(ad):
Hsiu-Chang Chen6aac0d32019-05-15 14:21:08 +08002478 """Pulls dumps in the ssrdump dir
2479 Args:
2480 ad: android device object.
Hsiu-Chang Chen6aac0d32019-05-15 14:21:08 +08002481 """
2482 logs = ad.get_file_names("/data/vendor/ssrdump/")
2483 if logs:
2484 ad.log.info("Pulling ssrdumps %s", logs)
Hsiu-Chang Chenebb239d2020-09-16 15:12:34 +08002485 log_path = os.path.join(ad.device_log_path, "SSRDUMPS_%s" % ad.serial)
Mark De Ruyter72f8df92020-02-12 13:44:49 -08002486 os.makedirs(log_path, exist_ok=True)
Hsiu-Chang Chen6aac0d32019-05-15 14:21:08 +08002487 ad.pull_files(logs, log_path)
Hsiu-Chang Chen769bef12020-10-10 06:07:52 +00002488 ad.adb.shell("find /data/vendor/ssrdump/ -type f -delete",
Omar El Ayach8c017902020-10-18 10:26:57 -07002489 ignore_status=True)
2490
Hsiu-Chang Chen6aac0d32019-05-15 14:21:08 +08002491
Xianyuan Jia0e39e552019-01-24 17:17:47 -08002492def start_pcap(pcap, wifi_band, test_name):
Girish Moturucf4dccd2018-08-27 12:22:00 -07002493 """Start packet capture in monitor mode.
2494
2495 Args:
2496 pcap: packet capture object
2497 wifi_band: '2g' or '5g' or 'dual'
Bindu Mahadev76551c12018-12-13 19:42:14 +00002498 test_name: test name to be used for pcap file name
2499
2500 Returns:
xianyuanjia0431ba32018-12-14 09:56:42 -08002501 Dictionary with wifi band as key and the tuple
2502 (pcap Process object, log directory) as the value
Girish Moturucf4dccd2018-08-27 12:22:00 -07002503 """
Xianyuan Jia0e39e552019-01-24 17:17:47 -08002504 log_dir = os.path.join(
Xianyuan Jia5cd06bb2019-06-10 16:29:57 -07002505 context.get_current_context().get_full_output_path(), 'PacketCapture')
Mark De Ruyter72f8df92020-02-12 13:44:49 -08002506 os.makedirs(log_dir, exist_ok=True)
Girish Moturucf4dccd2018-08-27 12:22:00 -07002507 if wifi_band == 'dual':
2508 bands = [BAND_2G, BAND_5G]
2509 else:
2510 bands = [wifi_band]
xianyuanjia0431ba32018-12-14 09:56:42 -08002511 procs = {}
Girish Moturucf4dccd2018-08-27 12:22:00 -07002512 for band in bands:
xianyuanjia0431ba32018-12-14 09:56:42 -08002513 proc = pcap.start_packet_capture(band, log_dir, test_name)
2514 procs[band] = (proc, os.path.join(log_dir, test_name))
2515 return procs
Girish Moturucf4dccd2018-08-27 12:22:00 -07002516
Bindu Mahadevff295782019-02-08 16:17:48 -08002517
xianyuanjia0431ba32018-12-14 09:56:42 -08002518def stop_pcap(pcap, procs, test_status=None):
Bindu Mahadev76551c12018-12-13 19:42:14 +00002519 """Stop packet capture in monitor mode.
2520
2521 Since, the pcap logs in monitor mode can be very large, we will
2522 delete them if they are not required. 'test_status' if True, will delete
2523 the pcap files. If False, we will keep them.
Girish Moturucf4dccd2018-08-27 12:22:00 -07002524
2525 Args:
2526 pcap: packet capture object
xianyuanjia0431ba32018-12-14 09:56:42 -08002527 procs: dictionary returned by start_pcap
Bindu Mahadev76551c12018-12-13 19:42:14 +00002528 test_status: status of the test case
Girish Moturucf4dccd2018-08-27 12:22:00 -07002529 """
xianyuanjia0431ba32018-12-14 09:56:42 -08002530 for proc, fname in procs.values():
2531 pcap.stop_packet_capture(proc)
Bindu Mahadev76551c12018-12-13 19:42:14 +00002532
2533 if test_status:
xianyuanjia0431ba32018-12-14 09:56:42 -08002534 shutil.rmtree(os.path.dirname(fname))
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002535
Omar El Ayach8c017902020-10-18 10:26:57 -07002536
Jaineel95887fd2019-10-16 16:19:01 -07002537def verify_mac_not_found_in_pcap(ad, mac, packets):
xshuf7267682019-06-03 14:41:56 -07002538 """Verify that a mac address is not found in the captured packets.
2539
2540 Args:
Jaineel95887fd2019-10-16 16:19:01 -07002541 ad: android device object
xshuf7267682019-06-03 14:41:56 -07002542 mac: string representation of the mac address
2543 packets: packets obtained by rdpcap(pcap_fname)
2544 """
2545 for pkt in packets:
2546 logging.debug("Packet Summary = %s", pkt.summary())
2547 if mac in pkt.summary():
Jaineel95887fd2019-10-16 16:19:01 -07002548 asserts.fail("Device %s caught Factory MAC: %s in packet sniffer."
2549 "Packet = %s" % (ad.serial, mac, pkt.show()))
Bindu Mahadevff295782019-02-08 16:17:48 -08002550
Omar El Ayach8c017902020-10-18 10:26:57 -07002551
Jaineel95887fd2019-10-16 16:19:01 -07002552def verify_mac_is_found_in_pcap(ad, mac, packets):
Nate Jiangc2c09c62019-06-05 17:26:08 -07002553 """Verify that a mac address is found in the captured packets.
2554
2555 Args:
Jaineel95887fd2019-10-16 16:19:01 -07002556 ad: android device object
Nate Jiangc2c09c62019-06-05 17:26:08 -07002557 mac: string representation of the mac address
2558 packets: packets obtained by rdpcap(pcap_fname)
2559 """
2560 for pkt in packets:
2561 if mac in pkt.summary():
2562 return
Jaineel95887fd2019-10-16 16:19:01 -07002563 asserts.fail("Did not find MAC = %s in packet sniffer."
2564 "for device %s" % (mac, ad.serial))
Nate Jiangc2c09c62019-06-05 17:26:08 -07002565
Omar El Ayach8c017902020-10-18 10:26:57 -07002566
Girish Moturuddc0d382020-08-24 12:08:41 -07002567def start_cnss_diags(ads, cnss_diag_file, pixel_models):
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002568 for ad in ads:
Girish Moturuddc0d382020-08-24 12:08:41 -07002569 start_cnss_diag(ad, cnss_diag_file, pixel_models)
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002570
Bindu Mahadevff295782019-02-08 16:17:48 -08002571
Girish Moturuddc0d382020-08-24 12:08:41 -07002572def start_cnss_diag(ad, cnss_diag_file, pixel_models):
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002573 """Start cnss_diag to record extra wifi logs
2574
2575 Args:
2576 ad: android device object.
Girish Moturuddc0d382020-08-24 12:08:41 -07002577 cnss_diag_file: cnss diag config file to push to device.
2578 pixel_models: pixel devices.
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002579 """
Girish Moturuddc0d382020-08-24 12:08:41 -07002580 if ad.model not in pixel_models:
2581 ad.log.info("Device not supported to collect pixel logger")
2582 return
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002583 if ad.model in wifi_constants.DEVICES_USING_LEGACY_PROP:
2584 prop = wifi_constants.LEGACY_CNSS_DIAG_PROP
2585 else:
2586 prop = wifi_constants.CNSS_DIAG_PROP
2587 if ad.adb.getprop(prop) != 'true':
Omar El Ayach8c017902020-10-18 10:26:57 -07002588 if not int(
2589 ad.adb.shell("ls -l %s%s | wc -l" %
2590 (CNSS_DIAG_CONFIG_PATH, CNSS_DIAG_CONFIG_FILE))):
Girish Moturuddc0d382020-08-24 12:08:41 -07002591 ad.adb.push("%s %s" % (cnss_diag_file, CNSS_DIAG_CONFIG_PATH))
Omar El Ayach8c017902020-10-18 10:26:57 -07002592 ad.adb.shell(
2593 "find /data/vendor/wifi/cnss_diag/wlan_logs/ -type f -delete",
2594 ignore_status=True)
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002595 ad.adb.shell("setprop %s true" % prop, ignore_status=True)
2596
Bindu Mahadevff295782019-02-08 16:17:48 -08002597
Girish Moturuddc0d382020-08-24 12:08:41 -07002598def stop_cnss_diags(ads, pixel_models):
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002599 for ad in ads:
Girish Moturuddc0d382020-08-24 12:08:41 -07002600 stop_cnss_diag(ad, pixel_models)
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002601
Bindu Mahadevff295782019-02-08 16:17:48 -08002602
Girish Moturuddc0d382020-08-24 12:08:41 -07002603def stop_cnss_diag(ad, pixel_models):
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002604 """Stops cnss_diag
2605
2606 Args:
2607 ad: android device object.
Girish Moturuddc0d382020-08-24 12:08:41 -07002608 pixel_models: pixel devices.
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002609 """
Girish Moturuddc0d382020-08-24 12:08:41 -07002610 if ad.model not in pixel_models:
2611 ad.log.info("Device not supported to collect pixel logger")
2612 return
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002613 if ad.model in wifi_constants.DEVICES_USING_LEGACY_PROP:
2614 prop = wifi_constants.LEGACY_CNSS_DIAG_PROP
2615 else:
2616 prop = wifi_constants.CNSS_DIAG_PROP
2617 ad.adb.shell("setprop %s false" % prop, ignore_status=True)
2618
Bindu Mahadevff295782019-02-08 16:17:48 -08002619
Hsiu-Chang Chenebb239d2020-09-16 15:12:34 +08002620def get_cnss_diag_log(ad):
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002621 """Pulls the cnss_diag logs in the wlan_logs dir
2622 Args:
2623 ad: android device object.
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002624 """
2625 logs = ad.get_file_names("/data/vendor/wifi/cnss_diag/wlan_logs/")
2626 if logs:
2627 ad.log.info("Pulling cnss_diag logs %s", logs)
Xianyuan Jia0e39e552019-01-24 17:17:47 -08002628 log_path = os.path.join(ad.device_log_path, "CNSS_DIAG_%s" % ad.serial)
Mark De Ruyter72f8df92020-02-12 13:44:49 -08002629 os.makedirs(log_path, exist_ok=True)
Hsiu-Chang Chenf8578472018-09-18 12:23:42 +08002630 ad.pull_files(logs, log_path)
Bindu Mahadev7e5dc682019-02-01 16:53:34 -08002631
Bindu Mahadevff295782019-02-08 16:17:48 -08002632
Omar El Ayach8c017902020-10-18 10:26:57 -07002633LinkProbeResult = namedtuple(
2634 'LinkProbeResult',
2635 ('is_success', 'stdout', 'elapsed_time', 'failure_reason'))
David Sue4cd9c22019-03-26 18:07:26 -07002636
2637
2638def send_link_probe(ad):
2639 """Sends a link probe to the currently connected AP, and returns whether the
2640 probe succeeded or not.
2641
2642 Args:
2643 ad: android device object
2644 Returns:
2645 LinkProbeResult namedtuple
2646 """
2647 stdout = ad.adb.shell('cmd wifi send-link-probe')
2648 asserts.assert_false('Error' in stdout or 'Exception' in stdout,
2649 'Exception while sending link probe: ' + stdout)
2650
2651 is_success = False
2652 elapsed_time = None
2653 failure_reason = None
2654 if 'succeeded' in stdout:
2655 is_success = True
2656 elapsed_time = next(
2657 (int(token) for token in stdout.split() if token.isdigit()), None)
2658 elif 'failed with reason' in stdout:
2659 failure_reason = next(
2660 (int(token) for token in stdout.split() if token.isdigit()), None)
2661 else:
2662 asserts.fail('Unexpected link probe result: ' + stdout)
2663
Omar El Ayach8c017902020-10-18 10:26:57 -07002664 return LinkProbeResult(is_success=is_success,
2665 stdout=stdout,
2666 elapsed_time=elapsed_time,
2667 failure_reason=failure_reason)
David Sue4cd9c22019-03-26 18:07:26 -07002668
2669
2670def send_link_probes(ad, num_probes, delay_sec):
2671 """Sends a sequence of link probes to the currently connected AP, and
2672 returns whether the probes succeeded or not.
2673
2674 Args:
2675 ad: android device object
2676 num_probes: number of probes to perform
2677 delay_sec: delay time between probes, in seconds
2678 Returns:
2679 List[LinkProbeResult] one LinkProbeResults for each probe
2680 """
2681 logging.info('Sending link probes')
2682 results = []
2683 for _ in range(num_probes):
2684 # send_link_probe() will also fail the test if it sees an exception
2685 # in the stdout of the adb shell command
2686 result = send_link_probe(ad)
2687 logging.info('link probe results: ' + str(result))
2688 results.append(result)
2689 time.sleep(delay_sec)
2690
2691 return results
2692
2693
Bindu Mahadev7e5dc682019-02-01 16:53:34 -08002694def ap_setup(test, index, ap, network, bandwidth=80, channel=6):
Omar El Ayach8c017902020-10-18 10:26:57 -07002695 """Set up the AP with provided network info.
Bindu Mahadev7e5dc682019-02-01 16:53:34 -08002696
2697 Args:
2698 test: the calling test class object.
2699 index: int, index of the AP.
2700 ap: access_point object of the AP.
2701 network: dict with information of the network, including ssid,
2702 password and bssid.
2703 bandwidth: the operation bandwidth for the AP, default 80MHz.
2704 channel: the channel number for the AP.
2705 Returns:
2706 brconfigs: the bridge interface configs
2707 """
Omar El Ayach8c017902020-10-18 10:26:57 -07002708 bss_settings = []
2709 ssid = network[WifiEnums.SSID_KEY]
2710 test.access_points[index].close()
2711 time.sleep(5)
Bindu Mahadev7e5dc682019-02-01 16:53:34 -08002712
Omar El Ayach8c017902020-10-18 10:26:57 -07002713 # Configure AP as required.
2714 if "password" in network.keys():
2715 password = network["password"]
2716 security = hostapd_security.Security(security_mode="wpa",
2717 password=password)
2718 else:
2719 security = hostapd_security.Security(security_mode=None, password=None)
2720 config = hostapd_ap_preset.create_ap_preset(channel=channel,
2721 ssid=ssid,
2722 security=security,
2723 bss_settings=bss_settings,
2724 vht_bandwidth=bandwidth,
2725 profile_name='whirlwind',
2726 iface_wlan_2g=ap.wlan_2g,
2727 iface_wlan_5g=ap.wlan_5g)
2728 ap.start_ap(config)
2729 logging.info("AP started on channel {} with SSID {}".format(channel, ssid))
Bindu Mahadevff295782019-02-08 16:17:48 -08002730
2731
2732def turn_ap_off(test, AP):
2733 """Bring down hostapd on the Access Point.
2734 Args:
2735 test: The test class object.
2736 AP: int, indicating which AP to turn OFF.
2737 """
Omar El Ayach8c017902020-10-18 10:26:57 -07002738 hostapd_2g = test.access_points[AP - 1]._aps['wlan0'].hostapd
Bindu Mahadevff295782019-02-08 16:17:48 -08002739 if hostapd_2g.is_alive():
2740 hostapd_2g.stop()
2741 logging.debug('Turned WLAN0 AP%d off' % AP)
Omar El Ayach8c017902020-10-18 10:26:57 -07002742 hostapd_5g = test.access_points[AP - 1]._aps['wlan1'].hostapd
Bindu Mahadevff295782019-02-08 16:17:48 -08002743 if hostapd_5g.is_alive():
2744 hostapd_5g.stop()
2745 logging.debug('Turned WLAN1 AP%d off' % AP)
2746
2747
2748def turn_ap_on(test, AP):
2749 """Bring up hostapd on the Access Point.
2750 Args:
2751 test: The test class object.
2752 AP: int, indicating which AP to turn ON.
2753 """
Omar El Ayach8c017902020-10-18 10:26:57 -07002754 hostapd_2g = test.access_points[AP - 1]._aps['wlan0'].hostapd
Bindu Mahadevff295782019-02-08 16:17:48 -08002755 if not hostapd_2g.is_alive():
2756 hostapd_2g.start(hostapd_2g.config)
2757 logging.debug('Turned WLAN0 AP%d on' % AP)
Omar El Ayach8c017902020-10-18 10:26:57 -07002758 hostapd_5g = test.access_points[AP - 1]._aps['wlan1'].hostapd
Bindu Mahadevff295782019-02-08 16:17:48 -08002759 if not hostapd_5g.is_alive():
2760 hostapd_5g.start(hostapd_5g.config)
2761 logging.debug('Turned WLAN1 AP%d on' % AP)
Joe Brennan48c3f692019-04-11 08:30:16 -07002762
2763
2764def turn_location_off_and_scan_toggle_off(ad):
2765 """Turns off wifi location scans."""
2766 utils.set_location_service(ad, False)
2767 ad.droid.wifiScannerToggleAlwaysAvailable(False)
2768 msg = "Failed to turn off location service's scan."
2769 asserts.assert_true(not ad.droid.wifiScannerIsAlwaysAvailable(), msg)
Alfie Chen675be872020-06-04 10:48:14 +08002770
2771
2772def set_softap_channel(dut, ap_iface='wlan1', cs_count=10, channel=2462):
2773 """ Set SoftAP mode channel
2774
2775 Args:
2776 dut: android device object
2777 ap_iface: interface of SoftAP mode.
2778 cs_count: how many beacon frames before switch channel, default = 10
2779 channel: a wifi channel.
2780 """
2781 chan_switch_cmd = 'hostapd_cli -i {} chan_switch {} {}'
Omar El Ayach8c017902020-10-18 10:26:57 -07002782 chan_switch_cmd_show = chan_switch_cmd.format(ap_iface, cs_count, channel)
Alfie Chen675be872020-06-04 10:48:14 +08002783 dut.log.info('adb shell {}'.format(chan_switch_cmd_show))
Omar El Ayach8c017902020-10-18 10:26:57 -07002784 chan_switch_result = dut.adb.shell(
2785 chan_switch_cmd.format(ap_iface, cs_count, channel))
Alfie Chen675be872020-06-04 10:48:14 +08002786 if chan_switch_result == 'OK':
2787 dut.log.info('switch hotspot channel to {}'.format(channel))
2788 return chan_switch_result
2789
2790 asserts.fail("Failed to switch hotspot channel")
Alfie Chen310f7ff2021-01-26 20:36:09 +08002791
2792def get_wlan0_link(dut):
2793 """ get wlan0 interface status"""
2794 get_wlan0 = 'wpa_cli -iwlan0 -g@android:wpa_wlan0 IFNAME=wlan0 status'
2795 out = dut.adb.shell(get_wlan0)
2796 out = dict(re.findall(r'(\S+)=(".*?"|\S+)', out))
2797 asserts.assert_true("ssid" in out,
2798 "Client doesn't connect to any network")
Alfie Chenb3263dd2021-02-04 18:54:34 +08002799 return out
Girish Moturubea6c7e2021-05-07 16:24:27 -07002800
2801def verify_11ax_wifi_connection(ad, wifi6_supported_models, wifi6_ap):
2802 """Verify 11ax for wifi connection.
2803
2804 Args:
2805 ad: adndroid device object
2806 wifi6_supported_models: device supporting 11ax.
2807 wifi6_ap: if the AP supports 11ax.
2808 """
2809 if wifi6_ap and ad.model in wifi6_supported_models:
2810 logging.info("Verifying 11ax. Model: %s" % ad.model)
2811 asserts.assert_true(
2812 ad.droid.wifiGetConnectionStandard() ==
2813 wifi_constants.WIFI_STANDARD_11AX, "DUT did not connect to 11ax.")
2814
2815def verify_11ax_softap(dut, dut_client, wifi6_supported_models):
2816 """Verify 11ax SoftAp if devices support it.
2817
2818 Check if both DUT and DUT client supports 11ax, then SoftAp turns on
2819 with 11ax mode and DUT client can connect to it.
2820
2821 Args:
2822 dut: Softap device.
2823 dut_client: Client connecting to softap.
2824 wifi6_supported_models: List of device models supporting 11ax.
2825 """
2826 if dut.model in wifi6_supported_models and dut_client.model in wifi6_supported_models:
2827 logging.info(
2828 "Verifying 11ax softap. DUT model: %s, DUT Client model: %s",
2829 dut.model, dut_client.model)
2830 asserts.assert_true(
2831 dut_client.droid.wifiGetConnectionStandard() ==
2832 wifi_constants.WIFI_STANDARD_11AX,
2833 "DUT failed to start SoftAp in 11ax.")
“Alfie90ee7cb2021-04-20 23:16:12 +08002834
2835def check_available_channels_in_bands_2_5(dut, country_code):
2836 """Check if DUT is capable of enable BridgedAp.
2837 #TODO: Find a way to make this function flexible by taking an argument.
2838
2839 Args:
2840 country_code: country code, e.g., 'US', 'JP'.
2841 Returns:
2842 True: If DUT is capable of enable BridgedAp.
2843 False: If DUT is not capable of enable BridgedAp.
2844 """
2845 set_wifi_country_code(dut, country_code)
2846 country = dut.droid.wifiGetCountryCode()
2847 dut.log.info("DUT current country code : {}".format(country))
2848 # Wi-Fi ON and OFF to make sure country code take effet.
2849 wifi_toggle_state(dut, True)
2850 wifi_toggle_state(dut, False)
2851
2852 # Register SoftAp Callback and get SoftAp capability.
2853 callbackId = dut.droid.registerSoftApCallback()
2854 capability = get_current_softap_capability(dut, callbackId, True)
2855 dut.droid.unregisterSoftApCallback(callbackId)
2856
2857 if capability[wifi_constants.
2858 SOFTAP_CAPABILITY_24GHZ_SUPPORTED_CHANNEL_LIST] and \
2859 capability[wifi_constants.
2860 SOFTAP_CAPABILITY_5GHZ_SUPPORTED_CHANNEL_LIST]:
2861 return True
2862 return False
2863
2864
2865@retry(tries=5, delay=2)
2866def validate_ping_between_two_clients(dut1, dut2):
2867 """Make 2 DUT ping each other.
2868
2869 Args:
2870 dut1: An AndroidDevice object.
2871 dut2: An AndroidDevice object.
2872 """
2873 # Get DUTs' IPv4 addresses.
2874 dut1_ip = ""
2875 dut2_ip = ""
2876 try:
2877 dut1_ip = dut1.droid.connectivityGetIPv4Addresses('wlan0')[0]
2878 except IndexError as e:
2879 dut1.log.info(
2880 "{} has no Wi-Fi connection, cannot get IPv4 address."
2881 .format(dut1.serial))
2882 try:
2883 dut2_ip = dut2.droid.connectivityGetIPv4Addresses('wlan0')[0]
2884 except IndexError as e:
2885 dut2.log.info(
2886 "{} has no Wi-Fi connection, cannot get IPv4 address."
2887 .format(dut2.serial))
2888 # Test fail if not able to obtain two DUT's IPv4 addresses.
2889 asserts.assert_true(dut1_ip and dut2_ip,
2890 "Ping failed because no DUT's IPv4 address")
2891
2892 dut1.log.info("{} IPv4 addresses : {}".format(dut1.serial, dut1_ip))
2893 dut2.log.info("{} IPv4 addresses : {}".format(dut2.serial, dut2_ip))
2894
2895 # Two clients ping each other
2896 dut1.log.info("{} ping {}".format(dut1_ip, dut2_ip))
2897 asserts.assert_true(
2898 utils.adb_shell_ping(dut1, count=10, dest_ip=dut2_ip,
2899 timeout=20),
2900 "%s ping %s failed" % (dut1.serial, dut2_ip))
2901
2902 dut2.log.info("{} ping {}".format(dut2_ip, dut1_ip))
2903 asserts.assert_true(
2904 utils.adb_shell_ping(dut2, count=10, dest_ip=dut1_ip,
2905 timeout=20),
2906 "%s ping %s failed" % (dut2.serial, dut1_ip))
2907