2018-07-11 00:47:03 +02:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
import sys
|
|
|
|
|
|
|
|
sys.path.append('../util')
|
|
|
|
import iwd
|
|
|
|
from iwd import IWD
|
|
|
|
from iwd import PSKAgent
|
|
|
|
from iwd import NetworkType
|
|
|
|
|
2019-10-24 19:53:23 +02:00
|
|
|
class TestConnectAutoConnect(unittest.TestCase):
|
2018-07-11 00:47:03 +02:00
|
|
|
|
|
|
|
def check_connect_hidden_network(self, wd, device, ssid, throws):
|
|
|
|
if not throws is None:
|
|
|
|
with self.assertRaises(throws):
|
|
|
|
device.connect_hidden_network(ssid)
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
device.connect_hidden_network(ssid)
|
|
|
|
|
|
|
|
condition = 'obj.state == DeviceState.connected'
|
|
|
|
wd.wait_for_object_condition(device, condition, 30)
|
|
|
|
|
|
|
|
def check_autoconnect_hidden_network(self, wd, device, ssid, throws):
|
|
|
|
if throws is None:
|
|
|
|
condition = 'obj.state == DeviceState.connected'
|
|
|
|
wd.wait_for_object_condition(device, condition, 30)
|
|
|
|
|
|
|
|
condition = 'obj.connected_network is not None'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
|
2018-12-14 20:15:28 +01:00
|
|
|
ordered_network = device.get_ordered_network(ssid)
|
2018-07-11 00:47:03 +02:00
|
|
|
|
|
|
|
self.assertTrue(ordered_network.network_object.connected)
|
|
|
|
|
|
|
|
device.disconnect()
|
|
|
|
|
|
|
|
condition = 'obj.state == DeviceState.disconnected'
|
|
|
|
wd.wait_for_object_condition(device, condition, 30)
|
|
|
|
|
|
|
|
def validate_connection(self, wd, ssid, autoconnect, throws, use_agent,
|
|
|
|
wait_periodic_scan):
|
|
|
|
if use_agent:
|
|
|
|
psk_agent = PSKAgent(["secret123"], ('domain\\User', 'Password'))
|
|
|
|
wd.register_psk_agent(psk_agent)
|
|
|
|
|
2018-12-14 20:15:26 +01:00
|
|
|
devices = wd.list_devices(1)
|
2018-07-11 00:47:03 +02:00
|
|
|
self.assertIsNotNone(devices)
|
|
|
|
device = devices[0]
|
|
|
|
|
|
|
|
if autoconnect:
|
|
|
|
condition = 'obj.scanning'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
condition = 'not obj.scanning'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
|
|
|
|
self.check_autoconnect_hidden_network(wd, device, ssid, throws)
|
|
|
|
else:
|
|
|
|
if wait_periodic_scan:
|
|
|
|
condition = 'obj.scanning'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
condition = 'not obj.scanning'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
|
|
|
|
self.check_connect_hidden_network(wd, device, ssid, throws)
|
|
|
|
|
|
|
|
if use_agent:
|
|
|
|
wd.unregister_psk_agent(psk_agent)
|
|
|
|
|
|
|
|
|
|
|
|
def validate(self, ssid, autoconnect, throws = None, use_agent = False,
|
|
|
|
wait_periodic_scan = False):
|
2019-01-16 04:14:58 +01:00
|
|
|
wd = IWD(True, '/tmp')
|
2018-07-11 00:47:03 +02:00
|
|
|
|
2019-04-20 22:29:05 +02:00
|
|
|
self.validate_connection(wd, ssid, autoconnect, throws, use_agent,
|
|
|
|
wait_periodic_scan)
|