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
|
|
|
networks = []
|
|
|
|
|
|
|
|
psk_agent = PSKAgent(["secret123"] * 4)
|
|
|
|
wd.register_psk_agent(psk_agent)
|
|
|
|
|
|
|
|
devices = wd.list_devices(4)
|
|
|
|
self.assertIsNotNone(devices)
|
|
|
|
|
|
|
|
for d in devices:
|
2021-07-14 17:42:03 +02:00
|
|
|
d.disconnect()
|
2018-08-14 01:25:49 +02:00
|
|
|
d.scan()
|
2021-07-14 17:42:03 +02:00
|
|
|
wd.wait_for_object_condition(d, 'obj.scanning')
|
2018-08-14 01:25:49 +02:00
|
|
|
|
|
|
|
for d in devices:
|
2021-07-14 17:42:03 +02:00
|
|
|
wd.wait_for_object_condition(d, 'not obj.scanning')
|
2018-08-14 01:25:49 +02:00
|
|
|
|
|
|
|
for i in range(len(devices)):
|
2018-12-14 20:15:28 +01:00
|
|
|
network = devices[i].get_ordered_network('ssidSAE-Clogging')
|
2018-08-14 01:25:49 +02:00
|
|
|
self.assertEqual(network.type, NetworkType.psk)
|
|
|
|
networks.append(network)
|
|
|
|
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(network.network_object, condition)
|
|
|
|
|
|
|
|
for n in networks:
|
|
|
|
n.network_object.connect(wait=False)
|
|
|
|
|
2020-09-14 23:02:33 +02:00
|
|
|
for d in devices:
|
|
|
|
condition = 'obj.state == DeviceState.connected'
|
|
|
|
wd.wait_for_object_condition(d, condition)
|
2018-08-14 01:25:49 +02:00
|
|
|
|
|
|
|
for d in devices:
|
|
|
|
d.disconnect()
|
|
|
|
|
|
|
|
for n in networks:
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(n.network_object, condition)
|
|
|
|
|
|
|
|
wd.unregister_psk_agent(psk_agent)
|
|
|
|
|
2021-07-14 17:42:03 +02:00
|
|
|
def test_SAE_H2E_Group20(self):
|
|
|
|
self.hostapd.set_value('sae_pwe', '1');
|
|
|
|
self.hostapd.set_value('sae_groups', '20');
|
|
|
|
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(self):
|
|
|
|
self.hostapd.set_value('sae_pwe', '0');
|
|
|
|
self.hostapd.set_value('sae_groups', '19');
|
|
|
|
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()
|
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-Clogging.conf')
|
2018-08-14 01:25:49 +02:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
IWD.clear_storage()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(exit=True)
|