2016-10-11 20:27:49 +02:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
import sys
|
|
|
|
|
|
|
|
sys.path.append('../util')
|
|
|
|
import iwd
|
|
|
|
from iwd import IWD
|
2018-04-26 11:29:27 +02:00
|
|
|
from iwd import PSKAgent
|
2016-10-11 20:27:49 +02:00
|
|
|
from iwd import NetworkType
|
2017-05-22 10:49:47 +02:00
|
|
|
import testutil
|
2019-10-28 20:52:01 +01:00
|
|
|
from hostapd import HostapdCLI
|
2016-10-11 20:27:49 +02:00
|
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
|
2018-04-26 11:29:27 +02:00
|
|
|
def do_test_connection_success(self, ssid, passphrase=None):
|
2019-10-28 20:52:01 +01:00
|
|
|
hapd = HostapdCLI(config=ssid + '.conf')
|
2016-10-11 20:27:49 +02:00
|
|
|
wd = IWD()
|
|
|
|
|
2018-04-26 11:29:27 +02:00
|
|
|
if passphrase:
|
|
|
|
psk_agent = PSKAgent(passphrase)
|
|
|
|
wd.register_psk_agent(psk_agent)
|
|
|
|
|
2018-12-14 20:15:26 +01:00
|
|
|
devices = wd.list_devices(1)
|
2016-10-11 20:27:49 +02:00
|
|
|
device = devices[0]
|
|
|
|
|
2018-12-14 20:15:28 +01:00
|
|
|
ordered_network = device.get_ordered_network(ssid)
|
2016-10-11 20:27:49 +02:00
|
|
|
|
|
|
|
self.assertEqual(ordered_network.type, NetworkType.eap)
|
|
|
|
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(ordered_network.network_object, condition)
|
|
|
|
|
|
|
|
ordered_network.network_object.connect()
|
|
|
|
|
2020-09-14 23:02:33 +02:00
|
|
|
condition = 'obj.state == DeviceState.connected'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
2016-10-11 20:27:49 +02:00
|
|
|
|
2017-05-30 14:26:20 +02:00
|
|
|
testutil.test_iface_operstate()
|
2019-10-28 20:52:01 +01:00
|
|
|
testutil.test_ifaces_connected(hapd.ifname, device.name)
|
2017-05-22 10:49:47 +02:00
|
|
|
|
2016-10-11 20:27:49 +02:00
|
|
|
device.disconnect()
|
|
|
|
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(ordered_network.network_object, condition)
|
|
|
|
|
2018-04-26 11:29:27 +02:00
|
|
|
if passphrase:
|
|
|
|
wd.unregister_psk_agent(psk_agent)
|
|
|
|
|
|
|
|
def test_eap_tls(self):
|
|
|
|
self.do_test_connection_success('ssidEAP-TLS')
|
|
|
|
|
|
|
|
def test_eap_tls2(self):
|
|
|
|
self.do_test_connection_success('ssidEAP-TLS2')
|
|
|
|
|
|
|
|
def test_eap_tls3(self):
|
|
|
|
self.do_test_connection_success('ssidEAP-TLS3', 'abc')
|
|
|
|
|
2021-01-25 18:56:13 +01:00
|
|
|
def test_eap_tls4(self):
|
|
|
|
self.do_test_connection_success('ssidEAP-TLS4')
|
|
|
|
|
2016-10-11 20:27:49 +02:00
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
IWD.copy_to_storage('ssidEAP-TLS.8021x')
|
2018-04-26 11:29:27 +02:00
|
|
|
IWD.copy_to_storage('ssidEAP-TLS2.8021x')
|
|
|
|
IWD.copy_to_storage('ssidEAP-TLS3.8021x')
|
2021-01-25 18:56:13 +01:00
|
|
|
IWD.copy_to_storage('ssidEAP-TLS4.8021x')
|
2016-10-11 20:27:49 +02:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
IWD.clear_storage()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(exit=True)
|