2017-04-29 03:53:29 +02:00
|
|
|
#! /usr/bin/python3
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
import sys, os
|
|
|
|
|
|
|
|
sys.path.append('../util')
|
|
|
|
from iwd import IWD
|
|
|
|
from iwd import NetworkType
|
2020-09-11 01:12:22 +02:00
|
|
|
from hostapd import HostapdCLI
|
2017-05-22 10:49:47 +02:00
|
|
|
import testutil
|
2017-04-29 03:53:29 +02:00
|
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
def test_preauth_success(self):
|
2019-06-11 18:25:54 +02:00
|
|
|
bss_hostapd = [ HostapdCLI(config='eaptls-preauth-1.conf'),
|
|
|
|
HostapdCLI(config='eaptls-preauth-2.conf') ]
|
2017-04-29 03:53:29 +02:00
|
|
|
|
2021-08-12 22:22:06 +02:00
|
|
|
bss0_addr = bss_hostapd[0].bssid
|
|
|
|
bss1_addr = bss_hostapd[1].bssid
|
2017-04-29 03:53:29 +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.
|
|
|
|
# Roaming still works without the neighbor AP table but neighbor
|
|
|
|
# reports have to be disabled in the .conf files
|
2021-08-12 22:22:06 +02:00
|
|
|
bss0_nr = ''.join(bss0_addr.split(':')) + \
|
2017-04-29 03:53:29 +02:00
|
|
|
'8f0000005101060603000000'
|
2021-08-12 22:22:06 +02:00
|
|
|
bss1_nr = ''.join(bss1_addr.split(':')) + \
|
2017-04-29 03:53:29 +02:00
|
|
|
'8f0000005102060603000000'
|
|
|
|
|
2021-08-12 22:22:06 +02:00
|
|
|
bss_hostapd[0].set_neighbor(bss1_addr, 'TestPreauth', bss1_nr)
|
|
|
|
bss_hostapd[1].set_neighbor(bss0_addr, 'TestPreauth', bss0_nr)
|
2017-04-29 03:53:29 +02:00
|
|
|
|
2021-05-21 19:36:10 +02:00
|
|
|
wd = IWD(True)
|
2020-09-11 01:12:46 +02:00
|
|
|
|
|
|
|
device = wd.list_devices(1)[0]
|
|
|
|
|
2021-08-12 22:38:11 +02:00
|
|
|
ordered_network = device.get_ordered_network('TestPreauth')
|
2017-04-29 03:53:29 +02:00
|
|
|
|
|
|
|
self.assertEqual(ordered_network.type, NetworkType.eap)
|
|
|
|
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(ordered_network.network_object, condition)
|
|
|
|
|
|
|
|
self.assertFalse(bss_hostapd[0].list_sta())
|
|
|
|
self.assertFalse(bss_hostapd[1].list_sta())
|
|
|
|
|
2021-08-12 22:22:06 +02:00
|
|
|
device.connect_bssid(bss0_addr)
|
2017-04-29 03:53:29 +02:00
|
|
|
|
2020-09-11 01:12:46 +02:00
|
|
|
condition = 'obj.state == DeviceState.connected'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
2017-04-29 03:53:29 +02:00
|
|
|
|
|
|
|
self.assertTrue(bss_hostapd[0].list_sta())
|
|
|
|
self.assertFalse(bss_hostapd[1].list_sta())
|
|
|
|
|
2017-05-30 14:26:20 +02:00
|
|
|
testutil.test_iface_operstate(device.name)
|
2017-05-22 10:49:47 +02:00
|
|
|
testutil.test_ifaces_connected(bss_hostapd[0].ifname, device.name)
|
|
|
|
self.assertRaises(Exception, testutil.test_ifaces_connected,
|
2021-08-12 22:22:06 +02:00
|
|
|
bss_hostapd[1].ifname, device.name, True, True)
|
2017-05-22 10:49:47 +02:00
|
|
|
|
2021-08-12 22:22:06 +02:00
|
|
|
device.roam(bss1_addr)
|
2017-04-29 03:53:29 +02:00
|
|
|
|
|
|
|
condition = 'obj.state == DeviceState.roaming'
|
2020-09-11 01:12:37 +02:00
|
|
|
wd.wait_for_object_condition(device, condition)
|
2017-04-29 03:53:29 +02:00
|
|
|
|
|
|
|
# TODO: verify that the PMK from preauthentication was used
|
|
|
|
|
|
|
|
# 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)
|
2017-04-29 03:53:29 +02:00
|
|
|
|
|
|
|
self.assertTrue(bss_hostapd[1].list_sta())
|
|
|
|
|
2017-05-30 14:26:20 +02:00
|
|
|
testutil.test_iface_operstate(device.name)
|
2017-05-22 10:49:47 +02:00
|
|
|
testutil.test_ifaces_connected(bss_hostapd[1].ifname, device.name)
|
|
|
|
self.assertRaises(Exception, testutil.test_ifaces_connected,
|
2021-08-12 22:22:06 +02:00
|
|
|
(bss_hostapd[0].ifname, device.name, True, True))
|
2017-05-22 10:49:47 +02:00
|
|
|
|
2017-04-29 03:53:29 +02:00
|
|
|
device.disconnect()
|
|
|
|
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(ordered_network.network_object, condition)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
IWD.copy_to_storage('TestPreauth.8021x')
|
|
|
|
|
2021-11-11 03:12:02 +01:00
|
|
|
os.system('ip link set lo up')
|
2017-04-29 03:53:29 +02:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
IWD.clear_storage()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(exit=True)
|