2018-09-19 20:30:37 +02:00
|
|
|
#! /usr/bin/python3
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
import sys, os
|
|
|
|
|
|
|
|
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-09-19 20:30:37 +02:00
|
|
|
import testutil
|
2020-09-11 01:12:38 +02:00
|
|
|
from config import ctx
|
2018-09-19 20:30:37 +02:00
|
|
|
|
|
|
|
class Test(unittest.TestCase):
|
2021-08-12 22:21:57 +02:00
|
|
|
def validate_connection(self, wd, ft=True):
|
2018-09-19 20:30:37 +02:00
|
|
|
device = wd.list_devices(1)[0]
|
|
|
|
|
|
|
|
condition = 'not obj.scanning'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
|
|
|
|
device.scan()
|
|
|
|
|
|
|
|
condition = 'obj.scanning'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
|
|
|
|
condition = 'not obj.scanning'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
|
|
|
|
self.assertFalse(self.bss_hostapd[0].list_sta())
|
|
|
|
self.assertFalse(self.bss_hostapd[1].list_sta())
|
|
|
|
|
2021-08-12 22:21:57 +02:00
|
|
|
device.connect_bssid(self.bss_hostapd[0].bssid)
|
2018-09-19 20:30:37 +02:00
|
|
|
|
2020-09-14 23:02:33 +02:00
|
|
|
condition = 'obj.state == DeviceState.connected'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
2018-09-19 20:30:37 +02:00
|
|
|
|
|
|
|
self.assertTrue(self.bss_hostapd[0].list_sta())
|
|
|
|
self.assertFalse(self.bss_hostapd[1].list_sta())
|
|
|
|
|
|
|
|
testutil.test_iface_operstate(device.name)
|
|
|
|
testutil.test_ifaces_connected(self.bss_hostapd[0].ifname, device.name)
|
|
|
|
self.assertRaises(Exception, testutil.test_ifaces_connected,
|
2021-08-12 22:21:57 +02:00
|
|
|
(self.bss_hostapd[1].ifname, device.name, True, True))
|
2018-09-19 20:30:37 +02:00
|
|
|
|
2021-08-12 22:21:57 +02:00
|
|
|
device.roam(self.bss_hostapd[1].bssid)
|
2018-09-19 20:30:37 +02:00
|
|
|
|
|
|
|
condition = 'obj.state == DeviceState.roaming'
|
2020-09-11 01:12:37 +02:00
|
|
|
wd.wait_for_object_condition(device, condition)
|
2018-09-19 20:30:37 +02:00
|
|
|
|
|
|
|
# Check that iwd is on BSS 1 once out of roaming state and doesn't
|
|
|
|
# go through 'disconnected', 'autoconnect', 'connecting' in between
|
2021-02-05 20:06:37 +01:00
|
|
|
from_condition = 'obj.state == DeviceState.roaming'
|
|
|
|
to_condition = 'obj.state == DeviceState.connected'
|
|
|
|
wd.wait_for_object_change(device, from_condition, to_condition)
|
2018-09-19 20:30:37 +02:00
|
|
|
|
|
|
|
self.assertTrue(self.bss_hostapd[1].list_sta())
|
|
|
|
|
|
|
|
testutil.test_iface_operstate(device.name)
|
|
|
|
testutil.test_ifaces_connected(self.bss_hostapd[1].ifname, device.name)
|
|
|
|
self.assertRaises(Exception, testutil.test_ifaces_connected,
|
2021-08-12 22:21:57 +02:00
|
|
|
(self.bss_hostapd[0].ifname, device.name, True, True))
|
2018-09-19 20:30:37 +02:00
|
|
|
|
2021-08-12 22:21:57 +02:00
|
|
|
if not ft:
|
|
|
|
return
|
|
|
|
|
|
|
|
device.roam(self.bss_hostapd[2].bssid)
|
2018-09-19 20:30:37 +02:00
|
|
|
|
|
|
|
condition = 'obj.state == DeviceState.roaming'
|
2020-09-11 01:12:37 +02:00
|
|
|
wd.wait_for_object_condition(device, condition)
|
2018-09-19 20:30:37 +02:00
|
|
|
|
|
|
|
condition = 'obj.state != DeviceState.roaming'
|
2020-09-11 01:12:37 +02:00
|
|
|
wd.wait_for_object_condition(device, condition)
|
2018-09-19 20:30:37 +02:00
|
|
|
|
|
|
|
self.assertEqual(device.state, iwd.DeviceState.connected)
|
|
|
|
self.assertTrue(self.bss_hostapd[2].list_sta())
|
|
|
|
|
|
|
|
testutil.test_iface_operstate(device.name)
|
|
|
|
testutil.test_ifaces_connected(self.bss_hostapd[2].ifname, device.name)
|
|
|
|
self.assertRaises(Exception, testutil.test_ifaces_connected,
|
2021-08-12 22:21:57 +02:00
|
|
|
(self.bss_hostapd[1].ifname, device.name, True, True))
|
|
|
|
|
|
|
|
def test_ft_roam_success(self):
|
|
|
|
wd = IWD(True)
|
|
|
|
|
|
|
|
self.bss_hostapd[0].set_value('wpa_key_mgmt', 'FT-SAE SAE')
|
|
|
|
self.bss_hostapd[0].reload()
|
|
|
|
self.bss_hostapd[0].wait_for_event("AP-ENABLED")
|
|
|
|
self.bss_hostapd[1].set_value('wpa_key_mgmt', 'FT-SAE SAE')
|
|
|
|
self.bss_hostapd[1].reload()
|
|
|
|
self.bss_hostapd[1].wait_for_event("AP-ENABLED")
|
|
|
|
self.bss_hostapd[2].set_value('wpa_key_mgmt', 'FT-PSK')
|
|
|
|
self.bss_hostapd[2].reload()
|
|
|
|
self.bss_hostapd[2].wait_for_event("AP-ENABLED")
|
|
|
|
|
|
|
|
self.validate_connection(wd, True)
|
|
|
|
|
|
|
|
def test_reassociate_roam_success(self):
|
|
|
|
wd = IWD(True)
|
|
|
|
|
|
|
|
self.bss_hostapd[0].set_value('wpa_key_mgmt', 'SAE')
|
|
|
|
self.bss_hostapd[0].reload()
|
|
|
|
self.bss_hostapd[0].wait_for_event("AP-ENABLED")
|
|
|
|
self.bss_hostapd[1].set_value('wpa_key_mgmt', 'SAE')
|
|
|
|
self.bss_hostapd[1].reload()
|
|
|
|
self.bss_hostapd[1].wait_for_event("AP-ENABLED")
|
|
|
|
self.bss_hostapd[2].set_value('wpa_key_mgmt', 'WPA-PSK')
|
|
|
|
self.bss_hostapd[2].reload()
|
|
|
|
self.bss_hostapd[2].wait_for_event("AP-ENABLED")
|
|
|
|
|
|
|
|
self.validate_connection(wd, False)
|
2018-09-19 20:30:37 +02:00
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
os.system('ifconfig "' + self.bss_hostapd[0].ifname + '" down')
|
|
|
|
os.system('ifconfig "' + self.bss_hostapd[1].ifname + '" down')
|
|
|
|
os.system('ifconfig "' + self.bss_hostapd[2].ifname + '" down')
|
|
|
|
os.system('ifconfig "' + self.bss_hostapd[0].ifname + '" up')
|
|
|
|
os.system('ifconfig "' + self.bss_hostapd[1].ifname + '" up')
|
|
|
|
os.system('ifconfig "' + self.bss_hostapd[2].ifname + '" up')
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
2019-06-11 18:25:54 +02:00
|
|
|
cls.bss_hostapd = [ HostapdCLI(config='ft-sae-1.conf'),
|
|
|
|
HostapdCLI(config='ft-sae-2.conf'),
|
|
|
|
HostapdCLI(config='ft-psk-3.conf') ]
|
2018-09-19 20:30:37 +02:00
|
|
|
|
2020-09-11 01:12:38 +02:00
|
|
|
ctx.start_process(['ifconfig', cls.bss_hostapd[0].ifname, 'down', 'hw', \
|
2021-08-26 00:17:26 +02:00
|
|
|
'ether', '12:00:00:00:00:01', 'up']).wait()
|
2020-09-11 01:12:38 +02:00
|
|
|
ctx.start_process(['ifconfig', cls.bss_hostapd[1].ifname, 'down', 'hw', \
|
2021-08-26 00:17:26 +02:00
|
|
|
'ether', '12:00:00:00:00:02', 'up']).wait()
|
2020-09-11 01:12:38 +02:00
|
|
|
ctx.start_process(['ifconfig', cls.bss_hostapd[2].ifname, 'down', 'hw', \
|
2021-08-26 00:17:26 +02:00
|
|
|
'ether', '12:00:00:00:00:03', 'up']).wait()
|
2018-09-19 20:30:37 +02:00
|
|
|
|
2020-09-11 01:12:38 +02:00
|
|
|
# Set interface addresses to those expected by hostapd config files
|
2018-09-19 20:30:37 +02:00
|
|
|
cls.bss_hostapd[0].reload()
|
2020-09-11 01:12:38 +02:00
|
|
|
cls.bss_hostapd[0].wait_for_event("AP-ENABLED")
|
2018-09-19 20:30:37 +02:00
|
|
|
cls.bss_hostapd[1].reload()
|
2020-09-11 01:12:38 +02:00
|
|
|
cls.bss_hostapd[1].wait_for_event("AP-ENABLED")
|
2018-09-19 20:30:37 +02:00
|
|
|
cls.bss_hostapd[2].reload()
|
2020-09-11 01:12:38 +02:00
|
|
|
cls.bss_hostapd[2].wait_for_event("AP-ENABLED")
|
2018-09-19 20:30:37 +02:00
|
|
|
|
|
|
|
# Fill in the neighbor AP tables in both BSSes. By default each
|
|
|
|
# instance knows only about current BSS, even inside one hostapd
|
|
|
|
# process.
|
|
|
|
# FT still works without the neighbor AP table but neighbor reports
|
|
|
|
# have to be disabled in the .conf files
|
|
|
|
cls.bss_hostapd[0].set_neighbor('12:00:00:00:00:02', 'TestFT',
|
|
|
|
'1200000000028f0000005102060603000000')
|
|
|
|
cls.bss_hostapd[0].set_neighbor('12:00:00:00:00:03', 'TestFT',
|
|
|
|
'1200000000038f0000005102060603000000')
|
|
|
|
|
|
|
|
cls.bss_hostapd[1].set_neighbor('12:00:00:00:00:01', 'TestFT',
|
|
|
|
'1200000000018f0000005101060603000000')
|
|
|
|
cls.bss_hostapd[1].set_neighbor('12:00:00:00:00:03', 'TestFT',
|
|
|
|
'1200000000038f0000005101060603000000')
|
|
|
|
|
|
|
|
cls.bss_hostapd[2].set_neighbor('12:00:00:00:00:01', 'TestFT',
|
|
|
|
'1200000000018f0000005101060603000000')
|
|
|
|
cls.bss_hostapd[2].set_neighbor('12:00:00:00:00:02', 'TestFT',
|
|
|
|
'1200000000028f0000005101060603000000')
|
|
|
|
|
2021-08-12 22:21:57 +02:00
|
|
|
IWD.copy_to_storage('TestFT.psk')
|
|
|
|
|
2018-09-19 20:30:37 +02:00
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
IWD.clear_storage()
|
2021-08-12 22:21:57 +02:00
|
|
|
|
2021-02-25 23:00:54 +01:00
|
|
|
cls.bss_hostapd = None
|
2018-09-19 20:30:37 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(exit=True)
|