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
|
2021-07-14 17:42:03 +02:00
|
|
|
from hostapd import HostapdCLI
|
2018-08-14 01:25:49 +02:00
|
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
|
2024-02-27 19:34:03 +01:00
|
|
|
def validate_connection(self, wd, ssid):
|
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-08-12 22:38:12 +02:00
|
|
|
device.autoconnect = True
|
2018-08-14 01:25:49 +02:00
|
|
|
|
2020-09-11 01:12:30 +02:00
|
|
|
condition = 'obj.state == DeviceState.connected'
|
2020-09-11 01:12:37 +02:00
|
|
|
wd.wait_for_object_condition(device, condition)
|
2018-08-14 01:25:49 +02:00
|
|
|
|
2020-09-11 01:12:30 +02:00
|
|
|
condition = 'obj.connected_network is not None'
|
2018-08-14 01:25:49 +02:00
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
|
2024-02-27 19:34:03 +01:00
|
|
|
ordered_network = device.get_ordered_network(ssid)
|
2018-08-14 01:25:49 +02:00
|
|
|
|
2020-09-11 01:12:30 +02:00
|
|
|
self.assertTrue(ordered_network.network_object.connected)
|
2018-08-14 01:25:49 +02:00
|
|
|
|
|
|
|
device.disconnect()
|
|
|
|
|
|
|
|
condition = 'not obj.connected'
|
2018-12-14 20:15:28 +01:00
|
|
|
wd.wait_for_object_condition(ordered_network.network_object, condition)
|
2018-08-14 01:25:49 +02:00
|
|
|
|
2021-07-14 17:42:03 +02:00
|
|
|
def test_SAE(self):
|
2024-02-27 19:34:03 +01:00
|
|
|
IWD.copy_to_storage("profiles/ssidSAE.psk.default", name="ssidSAE.psk")
|
2021-07-14 17:42:03 +02:00
|
|
|
self.hostapd.wait_for_event("AP-ENABLED")
|
|
|
|
|
2019-03-15 23:02:47 +01:00
|
|
|
wd = IWD(True)
|
2024-02-27 19:34:03 +01:00
|
|
|
self.validate_connection(wd, "ssidSAE")
|
2019-03-15 23:02:47 +01:00
|
|
|
|
2021-07-14 17:42:03 +02:00
|
|
|
def test_SAE_H2E(self):
|
2024-02-27 19:34:03 +01:00
|
|
|
IWD.copy_to_storage("profiles/ssidSAE.psk.default", name="ssidSAE-H2E.psk")
|
|
|
|
self.hostapd_h2e.set_value('sae_groups', '20')
|
|
|
|
self.hostapd_h2e.reload()
|
|
|
|
self.hostapd_h2e.wait_for_event("AP-ENABLED")
|
2023-12-14 13:33:59 +01:00
|
|
|
wd = IWD(True)
|
2024-02-27 19:34:03 +01:00
|
|
|
self.validate_connection(wd, "ssidSAE-H2E")
|
2023-12-14 13:33:59 +01:00
|
|
|
|
|
|
|
def test_SAE_H2E_password_identifier(self):
|
2024-02-27 19:34:03 +01:00
|
|
|
IWD.copy_to_storage("profiles/ssidSAE.psk.identifier", name="ssidSAE-H2E.psk")
|
|
|
|
self.hostapd_h2e.set_value('sae_groups', '20')
|
|
|
|
self.hostapd_h2e.reload()
|
|
|
|
self.hostapd_h2e.wait_for_event("AP-ENABLED")
|
2021-07-14 17:42:03 +02:00
|
|
|
wd = IWD(True)
|
2024-02-27 19:34:03 +01:00
|
|
|
self.validate_connection(wd, "ssidSAE-H2E")
|
2018-08-14 01:25:49 +02:00
|
|
|
|
2023-08-29 16:39:55 +02:00
|
|
|
def setUp(self):
|
|
|
|
self.hostapd.default()
|
|
|
|
|
2023-12-14 13:33:59 +01:00
|
|
|
def tearDown(self):
|
|
|
|
IWD.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')
|
2024-02-27 19:34:03 +01:00
|
|
|
cls.hostapd_h2e = HostapdCLI(config='ssidSAE-H2E.conf')
|
2018-08-14 01:25:49 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(exit=True)
|