mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 14:49:24 +01:00
autotest: Added autotest for EAP-AKA with ofono
This commit is contained in:
parent
6942e9c7b1
commit
9d4532fe68
66
autotests/testEAP-AKA-ofono/connection_test.py
Normal file
66
autotests/testEAP-AKA-ofono/connection_test.py
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
#!/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
|
||||||
|
from hlrauc import AuthCenter
|
||||||
|
from ofono import Ofono
|
||||||
|
|
||||||
|
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()
|
||||||
|
|
||||||
|
devices = wd.list_devices();
|
||||||
|
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 = ordered_networks[0]
|
||||||
|
|
||||||
|
self.assertEqual(ordered_network.name, "ssidEAP-AKA")
|
||||||
|
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)
|
||||||
|
|
||||||
|
auth.stop()
|
||||||
|
@classmethod
|
||||||
|
def setUpClass(cls):
|
||||||
|
IWD.copy_to_storage('ssidEAP-AKA.8021x')
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def tearDownClass(cls):
|
||||||
|
IWD.clear_storage()
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
unittest.main(exit=True)
|
8
autotests/testEAP-AKA-ofono/hw.conf
Normal file
8
autotests/testEAP-AKA-ofono/hw.conf
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
[SETUP]
|
||||||
|
num_radios=2
|
||||||
|
max_test_exec_interval_sec=40
|
||||||
|
tmpfs_extra_stuff=sim.eap_user:sim.db:../misc/phonesim/phonesim.conf
|
||||||
|
sim_keys=ofono
|
||||||
|
|
||||||
|
[HOSTAPD]
|
||||||
|
rad0=ssidEAP-AKA.conf
|
3
autotests/testEAP-AKA-ofono/sim.db
Normal file
3
autotests/testEAP-AKA-ofono/sim.db
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# IMSI K OPC AMF SQN
|
||||||
|
|
||||||
|
12345678:90dca4eda45b53cf0f12d7c9c3bc6a89:cb9cccc4b9258e6dca4760379fb82581:61df:000000000021
|
1
autotests/testEAP-AKA-ofono/sim.eap_user
Normal file
1
autotests/testEAP-AKA-ofono/sim.eap_user
Normal file
@ -0,0 +1 @@
|
|||||||
|
"012345678@phonesim.org" AKA
|
2
autotests/testEAP-AKA-ofono/ssidEAP-AKA.8021x
Normal file
2
autotests/testEAP-AKA-ofono/ssidEAP-AKA.8021x
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
[Security]
|
||||||
|
EAP-Method=AKA
|
16
autotests/testEAP-AKA-ofono/ssidEAP-AKA.conf
Normal file
16
autotests/testEAP-AKA-ofono/ssidEAP-AKA.conf
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
hw_mode=g
|
||||||
|
channel=1
|
||||||
|
|
||||||
|
driver=nl80211
|
||||||
|
ieee8021x=1
|
||||||
|
eap_server=1
|
||||||
|
ssid=ssidEAP-AKA
|
||||||
|
eap_user_file=/tmp/sim.eap_user
|
||||||
|
eap_sim_db=unix:/tmp/hlrauc.sock
|
||||||
|
wpa=2
|
||||||
|
wpa_key_mgmt=WPA-EAP
|
||||||
|
wpa_pairwise=TKIP CCMP
|
||||||
|
rsn_pairwise=CCMP TKIP
|
||||||
|
wpa_passphrase=secret123
|
||||||
|
channel=1
|
||||||
|
eap_sim_aka_result_ind=1
|
Loading…
Reference in New Issue
Block a user