2017-12-15 00:02:46 +01:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
import sys
|
|
|
|
|
|
|
|
sys.path.append('../util')
|
|
|
|
import iwd
|
|
|
|
from iwd import IWD
|
|
|
|
from iwd import NetworkType
|
|
|
|
from hlrauc import AuthCenter
|
|
|
|
from ofono import Ofono
|
2020-09-11 01:12:31 +02:00
|
|
|
from config import ctx
|
2017-12-15 00:02:46 +01:00
|
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
|
|
|
|
def test_connection_success(self):
|
|
|
|
auth = AuthCenter('/tmp/hlrauc.sock', '/tmp/sim.db')
|
|
|
|
|
|
|
|
ofono = Ofono()
|
|
|
|
ofono.enable_modem('/phonesim')
|
|
|
|
ofono.wait_for_sim_auth()
|
|
|
|
|
|
|
|
wd = IWD()
|
|
|
|
|
2018-12-14 20:15:26 +01:00
|
|
|
devices = wd.list_devices(1)
|
2017-12-15 00:02:46 +01:00
|
|
|
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)
|
|
|
|
|
2018-12-14 20:15:28 +01:00
|
|
|
ordered_network = device.get_ordered_network('ssidEAP-AKA')
|
2017-12-15 00:02:46 +01:00
|
|
|
|
|
|
|
self.assertEqual(ordered_network.type, NetworkType.eap)
|
|
|
|
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(ordered_network.network_object, condition)
|
|
|
|
|
2018-01-04 01:08:45 +01:00
|
|
|
try:
|
|
|
|
ordered_network.network_object.connect()
|
|
|
|
except:
|
|
|
|
auth.stop()
|
|
|
|
raise
|
2017-12-15 00:02:46 +01:00
|
|
|
|
2020-09-14 23:02:33 +02:00
|
|
|
condition = 'obj.state == DeviceState.connected'
|
|
|
|
wd.wait_for_object_condition(device, condition)
|
2017-12-15 00:02:46 +01:00
|
|
|
|
|
|
|
device.disconnect()
|
|
|
|
|
|
|
|
condition = 'not obj.connected'
|
|
|
|
wd.wait_for_object_condition(ordered_network.network_object, condition)
|
|
|
|
|
|
|
|
auth.stop()
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
2020-09-11 01:12:31 +02:00
|
|
|
if not ctx.is_process_running('ofonod'):
|
|
|
|
cls.skipTest(cls, "ofono not running")
|
|
|
|
|
2017-12-15 00:02:46 +01:00
|
|
|
IWD.copy_to_storage('ssidEAP-AKA.8021x')
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
IWD.clear_storage()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(exit=True)
|