mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 06:29:23 +01:00
auto-t: add HESSID hotspot autotest
This tests the use of ONLY the HESSID configuration option. In this test we also explicitly disable ANQP.
This commit is contained in:
parent
e8d91f15a1
commit
e5dedc3378
10
autotests/testHotspot/hessid.conf
Normal file
10
autotests/testHotspot/hessid.conf
Normal file
@ -0,0 +1,10 @@
|
||||
[Security]
|
||||
EAP-Method=TTLS
|
||||
EAP-Identity=anonymous@example.com
|
||||
EAP-TTLS-Phase2-Method=Tunneled-MSCHAPv2
|
||||
|
||||
[Hotspot]
|
||||
HESSID=02:00:00:00:04:00
|
||||
|
||||
[Settings]
|
||||
Autoconnect=False
|
69
autotests/testHotspot/hessid_test.py
Normal file
69
autotests/testHotspot/hessid_test.py
Normal file
@ -0,0 +1,69 @@
|
||||
#!/usr/bin/python3
|
||||
|
||||
import unittest
|
||||
import sys
|
||||
import os
|
||||
|
||||
sys.path.append('../util')
|
||||
import iwd
|
||||
from iwd import IWD
|
||||
from iwd import PSKAgent
|
||||
from iwd import NetworkType
|
||||
from hostapd import HostapdCLI
|
||||
import testutil
|
||||
|
||||
class Test(unittest.TestCase):
|
||||
|
||||
def test_connection_success(self):
|
||||
wd = IWD(True, '/tmp')
|
||||
|
||||
hapd = HostapdCLI(config='ssidHotspot.conf')
|
||||
|
||||
psk_agent = PSKAgent('abc', ('domain\\user', 'testpasswd'))
|
||||
wd.register_psk_agent(psk_agent)
|
||||
|
||||
devices = wd.list_devices(1)
|
||||
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_network = device.get_ordered_network('Hotspot')
|
||||
|
||||
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)
|
||||
|
||||
testutil.test_iface_operstate()
|
||||
testutil.test_ifaces_connected(device.name, hapd.ifname)
|
||||
|
||||
device.disconnect()
|
||||
|
||||
condition = 'not obj.connected'
|
||||
wd.wait_for_object_condition(ordered_network.network_object, condition)
|
||||
|
||||
wd.unregister_psk_agent(psk_agent)
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
IWD.copy_to_hotspot('hessid.conf')
|
||||
conf = '[General]\ndisable_anqp=1\n'
|
||||
os.system('echo "%s" > /tmp/main.conf' % conf)
|
||||
|
||||
@classmethod
|
||||
def tearDownClass(cls):
|
||||
IWD.clear_storage()
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main(exit=True)
|
@ -2,6 +2,7 @@
|
||||
|
||||
import unittest
|
||||
import sys
|
||||
import os
|
||||
|
||||
sys.path.append('../util')
|
||||
import iwd
|
||||
@ -14,7 +15,7 @@ import testutil
|
||||
class Test(unittest.TestCase):
|
||||
|
||||
def test_connection_success(self):
|
||||
wd = IWD()
|
||||
wd = IWD(True, '/tmp')
|
||||
|
||||
hapd = HostapdCLI(config='ssidHotspot.conf')
|
||||
|
||||
@ -57,6 +58,8 @@ class Test(unittest.TestCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
IWD.copy_to_hotspot('example.conf')
|
||||
conf = '[General]\ndisable_anqp=0\n'
|
||||
os.system('echo "%s" > /tmp/main.conf' % conf)
|
||||
|
||||
@classmethod
|
||||
def tearDownClass(cls):
|
||||
|
@ -1,8 +1,8 @@
|
||||
[SETUP]
|
||||
num_radios=2
|
||||
tmpfs_extra_stuff=../misc/certs:eap_users.text:main.conf:example.conf:hessid.conf
|
||||
tmpfs_extra_stuff=../misc/certs:eap_users.text:example.conf:hessid.conf
|
||||
max_test_exec_interval_sec=60
|
||||
iwd_config_dir=/tmp
|
||||
start_iwd=0
|
||||
|
||||
[HOSTAPD]
|
||||
rad0=ssidHotspot.conf
|
||||
|
@ -1,2 +0,0 @@
|
||||
[General]
|
||||
disable_anqp=0
|
@ -6,7 +6,7 @@ rsn_pairwise=CCMP
|
||||
wpa_key_mgmt=WPA-EAP
|
||||
ieee80211w=1
|
||||
ieee8021x=1
|
||||
hessid=02:00:00:00:01:00
|
||||
hessid=02:00:00:00:04:00
|
||||
interworking=1
|
||||
access_network_type=14
|
||||
internet=1
|
||||
|
Loading…
Reference in New Issue
Block a user