2018-01-18 22:36:40 +01:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
import sys
|
|
|
|
|
|
|
|
sys.path.append('../util')
|
|
|
|
import iwd
|
|
|
|
from iwd import IWD
|
|
|
|
from iwd import NetworkType
|
|
|
|
|
|
|
|
from hostapd import HostapdCLI
|
|
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
|
2022-09-28 18:36:37 +02:00
|
|
|
def validate(self, expect_roam=True):
|
2018-01-18 22:36:40 +01:00
|
|
|
wd = IWD()
|
|
|
|
|
2018-12-14 20:15:26 +01:00
|
|
|
devices = wd.list_devices(1)
|
2018-01-18 22:36:40 +01:00
|
|
|
device = devices[0]
|
|
|
|
|
2018-12-14 20:15:28 +01:00
|
|
|
ordered_network = device.get_ordered_network('TestAPRoam')
|
2018-01-18 22:36:40 +01:00
|
|
|
|
|
|
|
self.assertEqual(ordered_network.type, NetworkType.psk)
|
|
|
|
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(ordered_network.network_object, condition)
|
|
|
|
|
2022-09-28 18:36:37 +02:00
|
|
|
device.connect_bssid(self.bss_hostapd[0].bssid)
|
2018-01-18 22:36:40 +01:00
|
|
|
|
2020-09-11 01:12:43 +02:00
|
|
|
condition = 'obj.state == DeviceState.connected'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
|
2022-09-28 18:36:37 +02:00
|
|
|
self.bss_hostapd[0].wait_for_event('AP-STA-CONNECTED')
|
2018-01-18 22:36:40 +01:00
|
|
|
|
2022-09-28 18:36:37 +02:00
|
|
|
self.assertFalse(self.bss_hostapd[1].list_sta())
|
2018-01-18 22:36:40 +01:00
|
|
|
|
2022-09-28 18:36:37 +02:00
|
|
|
self.bss_hostapd[0].send_bss_transition(device.address,
|
|
|
|
[(self.bss_hostapd[1].bssid, '8f0000005102060603000000')],
|
|
|
|
disassoc_imminent=expect_roam)
|
2018-01-18 22:36:40 +01:00
|
|
|
|
2022-09-28 18:36:37 +02:00
|
|
|
if expect_roam:
|
|
|
|
from_condition = 'obj.state == DeviceState.roaming'
|
|
|
|
to_condition = 'obj.state == DeviceState.connected'
|
|
|
|
wd.wait_for_object_change(device, from_condition, to_condition)
|
2020-09-11 01:12:43 +02:00
|
|
|
|
2022-09-28 18:36:37 +02:00
|
|
|
self.bss_hostapd[1].wait_for_event('AP-STA-CONNECTED %s' % device.address)
|
|
|
|
else:
|
|
|
|
device.wait_for_event("no-roam-candidates")
|
2022-03-30 22:23:15 +02:00
|
|
|
|
2018-01-18 22:36:40 +01:00
|
|
|
device.disconnect()
|
|
|
|
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(ordered_network.network_object, condition)
|
|
|
|
|
2022-09-28 18:36:37 +02:00
|
|
|
def test_disassoc_imminent(self):
|
|
|
|
self.validate(expect_roam=True)
|
|
|
|
|
|
|
|
def test_no_candidates(self):
|
|
|
|
self.validate(expect_roam=False)
|
|
|
|
|
2018-01-18 22:36:40 +01:00
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
2021-08-12 22:22:07 +02:00
|
|
|
IWD.copy_to_storage('TestAPRoam.psk')
|
2018-01-18 22:36:40 +01:00
|
|
|
|
2022-09-28 18:36:37 +02:00
|
|
|
cls.bss_hostapd = [ HostapdCLI(config='ssid1.conf'),
|
|
|
|
HostapdCLI(config='ssid2.conf'),
|
|
|
|
HostapdCLI(config='ssid3.conf') ]
|
|
|
|
|
2018-01-18 22:36:40 +01:00
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
IWD.clear_storage()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(exit=True)
|