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):
|
|
|
|
|
2019-03-15 23:02:47 +01:00
|
|
|
def validate_connection(self, wd):
|
2018-08-14 01:25:49 +02:00
|
|
|
|
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)
|
|
|
|
|
2018-12-14 20:15:28 +01:00
|
|
|
ordered_network = device.get_ordered_network('ssidSAE')
|
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):
|
2021-09-10 00:08:48 +02:00
|
|
|
self.hostapd.set_value('sae_pwe', '0')
|
|
|
|
self.hostapd.set_value('sae_groups', '19')
|
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)
|
2019-03-15 23:02:47 +01:00
|
|
|
|
2021-07-14 17:42:03 +02:00
|
|
|
def test_SAE_H2E(self):
|
2021-09-10 00:08:48 +02:00
|
|
|
self.hostapd.set_value('sae_pwe', '1')
|
|
|
|
self.hostapd.set_value('sae_groups', '20')
|
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)
|
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
|
|
|
IWD.copy_to_storage('ssidSAE.psk')
|
|
|
|
pass
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
IWD.clear_storage()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(exit=True)
|