2018-08-14 01:25:49 +02: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-08-14 01:25:49 +02:00
|
|
|
import testutil
|
|
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
|
2019-03-15 23:02:47 +01:00
|
|
|
def validate_connection(self, wd):
|
2018-08-14 01:25:49 +02:00
|
|
|
psk_agent = PSKAgent("secret123")
|
|
|
|
wd.register_psk_agent(psk_agent)
|
|
|
|
|
2021-07-14 17:42:03 +02:00
|
|
|
devices = wd.list_devices(1)
|
2018-08-14 01:25:49 +02:00
|
|
|
self.assertIsNotNone(devices)
|
|
|
|
device = devices[0]
|
|
|
|
|
2021-07-14 17:42:03 +02:00
|
|
|
device.disconnect()
|
2019-02-01 19:54:08 +01:00
|
|
|
|
2021-07-14 17:42:03 +02:00
|
|
|
wd.wait_for_object_condition(device, 'not obj.scanning')
|
2018-08-14 01:25:49 +02:00
|
|
|
|
2021-08-25 19:12:58 +02:00
|
|
|
device.debug_scan([2412])
|
2018-08-14 01:25:49 +02:00
|
|
|
|
2021-07-14 17:42:03 +02:00
|
|
|
wd.wait_for_object_condition(device, 'obj.scanning')
|
|
|
|
wd.wait_for_object_condition(device, 'not obj.scanning')
|
2018-08-14 01:25:49 +02:00
|
|
|
|
2021-08-12 22:38:11 +02:00
|
|
|
#
|
|
|
|
# An explicit scan was done prior due to hostapd options changing.
|
|
|
|
# Because of this scan_if_needed is set to False to avoid a redundant
|
|
|
|
# scan
|
|
|
|
#
|
|
|
|
network = device.get_ordered_network('ssidSAE', scan_if_needed=False)
|
2018-08-14 01:25:49 +02:00
|
|
|
|
|
|
|
self.assertEqual(network.type, NetworkType.psk)
|
|
|
|
|
|
|
|
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-08-14 01:25:49 +02:00
|
|
|
|
|
|
|
wd.wait(2)
|
|
|
|
|
|
|
|
testutil.test_iface_operstate(intf=device.name)
|
2021-07-14 17:42:03 +02:00
|
|
|
testutil.test_ifaces_connected(if0=device.name, if1=self.hostapd.ifname)
|
2018-08-14 01:25:49 +02:00
|
|
|
|
|
|
|
device.disconnect()
|
|
|
|
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(network.network_object, condition)
|
|
|
|
|
|
|
|
wd.unregister_psk_agent(psk_agent)
|
|
|
|
|
2021-07-14 17:42:03 +02:00
|
|
|
def test_SAE(self):
|
2021-08-25 19:12:58 +02:00
|
|
|
self.hostapd.set_value('sae_pwe', '0')
|
|
|
|
self.hostapd.set_value('sae_groups', '19')
|
|
|
|
self.hostapd.set_value('vendor_elements', '')
|
|
|
|
self.hostapd.reload()
|
|
|
|
self.hostapd.wait_for_event("AP-ENABLED")
|
|
|
|
wd = IWD(True)
|
|
|
|
self.validate_connection(wd)
|
|
|
|
wd.clear_storage()
|
|
|
|
|
|
|
|
def test_SAE_force_group_19(self):
|
|
|
|
self.hostapd.set_value('sae_pwe', '0')
|
|
|
|
self.hostapd.set_value('sae_groups', '19')
|
|
|
|
# Vendor data from APs which require group 19 be used first
|
|
|
|
# TODO: (for all tests) verify the expected group was used
|
|
|
|
self.hostapd.set_value('vendor_elements', 'dd0cf4f5e8050500000000000000')
|
2021-07-14 17:42:03 +02:00
|
|
|
self.hostapd.reload()
|
|
|
|
self.hostapd.wait_for_event("AP-ENABLED")
|
2019-03-15 23:02:47 +01:00
|
|
|
wd = IWD(True)
|
2021-07-14 17:42:03 +02:00
|
|
|
self.validate_connection(wd)
|
|
|
|
wd.clear_storage()
|
2019-03-15 23:02:47 +01:00
|
|
|
|
2021-07-14 17:42:03 +02:00
|
|
|
def test_SAE_Group20(self):
|
2021-08-25 19:12:58 +02:00
|
|
|
self.hostapd.set_value('sae_pwe', '0')
|
|
|
|
self.hostapd.set_value('sae_groups', '20')
|
|
|
|
self.hostapd.set_value('vendor_elements', '')
|
2021-07-14 17:42:03 +02:00
|
|
|
self.hostapd.reload()
|
|
|
|
self.hostapd.wait_for_event("AP-ENABLED")
|
|
|
|
wd = IWD(True)
|
2019-04-20 22:29:05 +02:00
|
|
|
self.validate_connection(wd)
|
2021-07-14 17:42:03 +02:00
|
|
|
wd.clear_storage()
|
|
|
|
|
|
|
|
def test_SAE_H2E(self):
|
2021-08-25 19:12:58 +02:00
|
|
|
self.hostapd.set_value('sae_pwe', '1')
|
|
|
|
self.hostapd.set_value('sae_groups', '19')
|
|
|
|
self.hostapd.set_value('vendor_elements', '')
|
2021-07-14 17:42:03 +02:00
|
|
|
self.hostapd.reload()
|
|
|
|
self.hostapd.wait_for_event("AP-ENABLED")
|
|
|
|
wd = IWD(True)
|
|
|
|
self.validate_connection(wd)
|
|
|
|
wd.clear_storage()
|
|
|
|
|
|
|
|
def test_SAE_H2E_Group20(self):
|
2021-08-25 19:12:58 +02:00
|
|
|
self.hostapd.set_value('sae_pwe', '1')
|
|
|
|
self.hostapd.set_value('sae_groups', '20')
|
|
|
|
self.hostapd.set_value('vendor_elements', '')
|
2021-07-14 17:42:03 +02:00
|
|
|
self.hostapd.reload()
|
|
|
|
self.hostapd.wait_for_event("AP-ENABLED")
|
|
|
|
wd = IWD(True)
|
|
|
|
self.validate_connection(wd)
|
|
|
|
wd.clear_storage()
|
2018-08-14 01:25:49 +02:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
2021-07-14 17:42:03 +02:00
|
|
|
cls.hostapd = HostapdCLI(config='ssidSAE.conf')
|
2018-08-14 01:25:49 +02:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
2021-07-14 17:42:03 +02:00
|
|
|
pass
|
2018-08-14 01:25:49 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(exit=True)
|