2018-02-24 01:04:11 +01:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
|
|
|
|
sys.path.append('../util')
|
|
|
|
import iwd
|
|
|
|
from iwd import IWD
|
|
|
|
from iwd import NetworkType
|
|
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
|
2018-05-21 22:35:06 +02:00
|
|
|
def validate_connection(self, wd):
|
2018-02-24 01:04:11 +01:00
|
|
|
ssid_to_connect = 'ssidEAP-PEAPv1'
|
|
|
|
|
2018-07-02 19:02:08 +02:00
|
|
|
devices = wd.list_devices(1);
|
2018-02-24 01:04:11 +01:00
|
|
|
self.assertIsNotNone(devices)
|
|
|
|
device = devices[0]
|
|
|
|
|
|
|
|
condition = 'not obj.scanning'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
|
|
|
|
device.scan()
|
|
|
|
|
|
|
|
condition = 'not obj.scanning'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
|
|
|
|
|
|
|
ordered_networks = device.get_ordered_networks()
|
|
|
|
ordered_network = None
|
|
|
|
|
|
|
|
for o_n in ordered_networks:
|
|
|
|
if o_n.name == ssid_to_connect:
|
|
|
|
ordered_network = o_n
|
|
|
|
break
|
|
|
|
|
|
|
|
self.assertEqual(ordered_network.name, ssid_to_connect)
|
|
|
|
|
|
|
|
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()
|
|
|
|
|
|
|
|
condition = 'obj.connected'
|
|
|
|
wd.wait_for_object_condition(ordered_network.network_object, condition)
|
|
|
|
|
|
|
|
device.disconnect()
|
|
|
|
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(ordered_network.network_object, condition)
|
|
|
|
|
2018-05-21 22:35:06 +02:00
|
|
|
def test_connection_success(self):
|
|
|
|
wd = IWD(True)
|
|
|
|
|
|
|
|
try:
|
|
|
|
self.validate_connection(wd)
|
|
|
|
except:
|
|
|
|
del wd
|
|
|
|
raise
|
|
|
|
|
2018-02-24 01:04:11 +01:00
|
|
|
del wd
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
IWD.copy_to_storage('ssidEAP-PEAPv1.8021x')
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
IWD.clear_storage()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(exit=True)
|