Home
last modified time | relevance | path

Searched refs:security_type (Results 1 – 7 of 7) sorted by relevance

/tools/test/connectivity/acts_tests/tests/google/fuchsia/wlan_policy/
DStartStopClientConnectionsTest.py46 self.security_type = WPA2
47 security = hostapd_security.Security(security_mode=self.security_type,
73 def connect_and_validate(self, fd, ssid, security_type, expected_response): argument
78 result_connect = fd.wlan_policy_lib.wlanConnect(ssid, security_type)
147 self.ssid, self.security_type, password=self.password):
150 self.connect_and_validate(fd, self.ssid, self.security_type,
159 self.ssid, self.security_type, password=self.password):
165 self.connect_and_validate(fd, self.ssid, self.security_type,
169 self.ssid, self.security_type):
177 self.ssid, self.security_type, DISCONNECTED,
DSavedNetworksTest.py79 def save_bad_network(self, fd, ssid, security_type, password=""): argument
90 ssid, security_type, password=password):
96 def check_get_saved_network(self, fd, ssid, security_type, credential_type, argument
112 "security_type": security_type,
159 def save_and_check_network(self, ssid, security_type, password=""): argument
171 ssid, security_type, password=password):
173 self.check_get_saved_network(fd, ssid, security_type,
177 def start_ap(self, ssid, security_type, password=None, hidden=False): argument
188 if security_type == None or security_type.upper() == SECURITY_NONE:
191 security = hostapd_security.Security(security_mode=security_type,
[all …]
/tools/test/connectivity/acts/framework/acts/controllers/fuchsia_lib/lib_controllers/
Dwlan_policy_controller.py195 security_type, argument
218 if not self.remove_network(ssid, security_type, password=password):
221 security_type,
240 def save_network(self, ssid, security_type, password=None): argument
252 ssid, security_type, target_pwd=password)
259 def remove_network(self, ssid, security_type, password=None): argument
271 ssid, security_type, target_pwd=password)
309 def send_connect_command(self, ssid, security_type): argument
323 ssid, security_type)
331 def wait_for_connect(self, ssid, security_type, timeout=30): argument
[all …]
/tools/test/connectivity/acts/framework/acts/controllers/fuchsia_lib/
Dwlan_policy_lib.py83 def wlanSaveNetwork(self, target_ssid, security_type, target_pwd=None): argument
101 "security_type": str(security_type).lower(),
107 def wlanRemoveNetwork(self, target_ssid, security_type, target_pwd=None): argument
122 "security_type": str(security_type).lower(),
153 def wlanConnect(self, target_ssid, security_type): argument
169 "security_type": str(security_type).lower()
Dwlan_ap_policy_lib.py26 def wlanStartAccessPoint(self, target_ssid, security_type, target_pwd, argument
50 "security_type": security_type.lower(),
58 def wlanStopAccessPoint(self, target_ssid, security_type, target_pwd=""): argument
76 "security_type": security_type.lower(),
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/abstract_devices/
Dwlan_device.py500 def save_network(self, target_ssid, security_type=None, target_pwd=None): argument
505 if security_type and security_type not in FUCHSIA_VALID_SECURITY_TYPES:
506 raise TypeError('Invalid security type: %s' % security_type)
508 target_ssid, security_type, password=target_pwd):
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/wifi/wifi_retail_ap/
D__init__.py385 def set_security(self, network, security_type, *password): argument
396 'security_type': str(security_type),
403 'security_type': str(security_type)