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):
|
|
|
|
|
|
|
|
def test_connection_success(self):
|
2019-06-11 18:25:54 +02:00
|
|
|
bss_hostapd = [ HostapdCLI(config='ssid1.conf'),
|
|
|
|
HostapdCLI(config='ssid2.conf'),
|
|
|
|
HostapdCLI(config='ssid3.conf') ]
|
2020-09-11 01:12:43 +02:00
|
|
|
|
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)
|
|
|
|
|
2021-08-12 22:22:07 +02:00
|
|
|
device.connect_bssid(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)
|
|
|
|
|
|
|
|
bss_hostapd[0].wait_for_event('AP-STA-CONNECTED')
|
2018-01-18 22:36:40 +01:00
|
|
|
|
|
|
|
self.assertTrue(bss_hostapd[0].list_sta())
|
|
|
|
self.assertFalse(bss_hostapd[1].list_sta())
|
|
|
|
|
|
|
|
bss_hostapd[0].send_bss_transition(device.address,
|
2021-08-12 22:22:07 +02:00
|
|
|
[(bss_hostapd[1].bssid, '8f0000005102060603000000')])
|
2018-01-18 22:36:40 +01:00
|
|
|
|
|
|
|
condition = 'obj.state == DeviceState.roaming'
|
2020-09-11 01:12:37 +02:00
|
|
|
wd.wait_for_object_condition(device, condition)
|
2018-01-18 22:36:40 +01:00
|
|
|
|
|
|
|
condition = 'obj.state != DeviceState.roaming'
|
2020-09-11 01:12:37 +02:00
|
|
|
wd.wait_for_object_condition(device, condition)
|
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)
|
|
|
|
|
2018-01-18 22:36:40 +01:00
|
|
|
self.assertEqual(device.state, iwd.DeviceState.connected)
|
|
|
|
self.assertTrue(bss_hostapd[1].list_sta())
|
|
|
|
device.disconnect()
|
|
|
|
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(ordered_network.network_object, condition)
|
|
|
|
|
|
|
|
@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
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
IWD.clear_storage()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(exit=True)
|