2018-08-14 01:25:49 +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
|
2020-09-11 01:12:22 +02:00
|
|
|
from hostapd import HostapdCLI
|
2018-08-14 01:25:49 +02:00
|
|
|
import testutil
|
|
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
|
2019-03-15 23:02:47 +01:00
|
|
|
def validate_connection(self, wd):
|
2020-09-11 01:12:22 +02:00
|
|
|
hostapd = HostapdCLI(config='ssidSAE.conf')
|
2018-08-14 01:25:49 +02:00
|
|
|
|
|
|
|
psk_agent = PSKAgent("secret123")
|
|
|
|
wd.register_psk_agent(psk_agent)
|
|
|
|
|
2019-02-01 19:54:08 +01:00
|
|
|
devices = wd.list_devices(4)
|
2018-08-14 01:25:49 +02:00
|
|
|
self.assertIsNotNone(devices)
|
|
|
|
device = devices[0]
|
|
|
|
|
2019-02-01 19:54:08 +01:00
|
|
|
# These devices aren't used in this test, this makes logs a bit nicer
|
|
|
|
# since these devices would presumably start autoconnecting.
|
|
|
|
devices[1].disconnect()
|
|
|
|
devices[2].disconnect()
|
|
|
|
devices[3].disconnect()
|
|
|
|
|
2018-08-14 01:25:49 +02:00
|
|
|
condition = 'not obj.scanning'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
|
|
|
|
device.scan()
|
|
|
|
|
|
|
|
condition = 'not obj.scanning'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
|
2018-12-14 20:15:28 +01:00
|
|
|
network = device.get_ordered_network('ssidSAE')
|
2018-08-14 01:25:49 +02:00
|
|
|
|
|
|
|
self.assertEqual(network.type, NetworkType.psk)
|
|
|
|
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(network.network_object, condition)
|
|
|
|
|
|
|
|
network.network_object.connect()
|
|
|
|
|
2020-09-14 23:02:33 +02:00
|
|
|
condition = 'obj.state == DeviceState.connected'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
2018-08-14 01:25:49 +02:00
|
|
|
|
|
|
|
wd.wait(2)
|
|
|
|
|
|
|
|
testutil.test_iface_operstate(intf=device.name)
|
2020-09-11 01:12:22 +02:00
|
|
|
testutil.test_ifaces_connected(if0=device.name, if1=hostapd.ifname)
|
2018-08-14 01:25:49 +02:00
|
|
|
|
|
|
|
device.disconnect()
|
|
|
|
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(network.network_object, condition)
|
|
|
|
|
|
|
|
wd.unregister_psk_agent(psk_agent)
|
|
|
|
|
2019-03-15 23:02:47 +01:00
|
|
|
def test_connection_success(self):
|
|
|
|
wd = IWD(True)
|
|
|
|
|
2019-04-20 22:29:05 +02:00
|
|
|
self.validate_connection(wd)
|
2018-08-14 01:25:49 +02:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
pass
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
IWD.clear_storage()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(exit=True)
|