2018-01-31 18:56:00 +01: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-01-31 18:56:00 +01:00
|
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
|
|
|
|
def test_connection_success(self):
|
2020-07-14 20:49:08 +02:00
|
|
|
hostapd = HostapdCLI(config='ssidCCMP.conf')
|
2018-01-31 18:56:00 +01:00
|
|
|
|
|
|
|
wd = IWD()
|
|
|
|
|
|
|
|
psk_agent = PSKAgent("secret123")
|
|
|
|
wd.register_psk_agent(psk_agent)
|
|
|
|
|
2018-12-14 20:15:26 +01:00
|
|
|
devices = wd.list_devices(1)
|
2018-01-31 18:56:00 +01:00
|
|
|
device = devices[0]
|
|
|
|
|
2018-12-14 20:15:28 +01:00
|
|
|
ordered_network = device.get_ordered_network('ssidCCMP')
|
2018-01-31 18:56:00 +01:00
|
|
|
|
|
|
|
self.assertEqual(ordered_network.type, NetworkType.psk)
|
|
|
|
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(ordered_network.network_object, condition)
|
|
|
|
|
|
|
|
ordered_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-01-31 18:56:00 +01:00
|
|
|
|
|
|
|
# Make AP go down ungracefully, when hostapd comes back up it should
|
|
|
|
# send an unprotected disassociate frame so the client will re-auth.
|
|
|
|
# This will kick off the SA Query procedure
|
2021-08-23 20:32:20 +02:00
|
|
|
hostapd.interface.set_interface_state('down')
|
|
|
|
hostapd.interface.set_interface_state('up')
|
|
|
|
|
|
|
|
hostapd.wait_for_event('INTERFACE-ENABLED')
|
2018-01-31 18:56:00 +01:00
|
|
|
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(ordered_network.network_object, condition)
|
|
|
|
|
|
|
|
# IWD should now try and re-connect to the AP
|
|
|
|
|
2020-07-14 20:49:08 +02:00
|
|
|
condition = 'obj.state == DeviceState.connected'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
|
|
|
|
hostapd.wait_for_event('AP-STA-CONNECTED')
|
2018-01-31 18:56:00 +01:00
|
|
|
|
|
|
|
device.disconnect()
|
|
|
|
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(ordered_network.network_object, condition)
|
|
|
|
|
|
|
|
wd.unregister_psk_agent(psk_agent)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
pass
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
IWD.clear_storage()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(exit=True)
|