mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 06:29:23 +01:00
autotest: added test for EAP-SIM with ofono
This commit is contained in:
parent
9d4532fe68
commit
6d07cac299
67
autotests/testEAP-SIM-ofono/connection_test.py
Normal file
67
autotests/testEAP-SIM-ofono/connection_test.py
Normal file
@ -0,0 +1,67 @@
|
||||
#!/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-SIM")
|
||||
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-SIM.8021x')
|
||||
|
||||
@classmethod
|
||||
def tearDownClass(cls):
|
||||
IWD.clear_storage()
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main(exit=True)
|
8
autotests/testEAP-SIM-ofono/hw.conf
Normal file
8
autotests/testEAP-SIM-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-SIM.conf
|
1
autotests/testEAP-SIM-ofono/sim.db
Normal file
1
autotests/testEAP-SIM-ofono/sim.db
Normal file
@ -0,0 +1 @@
|
||||
12345678:673fb8cd35f98800:1fb1e3b5:DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD
|
1
autotests/testEAP-SIM-ofono/sim.eap_user
Normal file
1
autotests/testEAP-SIM-ofono/sim.eap_user
Normal file
@ -0,0 +1 @@
|
||||
"112345678@phonesim.org" SIM
|
2
autotests/testEAP-SIM-ofono/ssidEAP-SIM.8021x
Normal file
2
autotests/testEAP-SIM-ofono/ssidEAP-SIM.8021x
Normal file
@ -0,0 +1,2 @@
|
||||
[Security]
|
||||
EAP-Method=SIM
|
16
autotests/testEAP-SIM-ofono/ssidEAP-SIM.conf
Normal file
16
autotests/testEAP-SIM-ofono/ssidEAP-SIM.conf
Normal file
@ -0,0 +1,16 @@
|
||||
hw_mode=g
|
||||
channel=1
|
||||
|
||||
driver=nl80211
|
||||
ieee8021x=1
|
||||
eap_server=1
|
||||
ssid=ssidEAP-SIM
|
||||
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