mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 06:29:23 +01:00
auto-t: add DPP autotests
This commit is contained in:
parent
0fd7cdcb78
commit
7d9b198df6
73
autotests/testDPP/connection_test.py
Normal file
73
autotests/testDPP/connection_test.py
Normal file
@ -0,0 +1,73 @@
|
||||
#!/usr/bin/python3
|
||||
|
||||
import unittest
|
||||
import sys
|
||||
|
||||
sys.path.append('../util')
|
||||
from iwd import IWD
|
||||
from wpas import Wpas
|
||||
from hostapd import HostapdCLI
|
||||
|
||||
class Test(unittest.TestCase):
|
||||
|
||||
def test_iwd_as_enrollee(self):
|
||||
wpas = Wpas('wpas.conf')
|
||||
|
||||
wd = IWD(True)
|
||||
|
||||
devices = wd.list_devices(1)
|
||||
device = devices[0]
|
||||
device.autoconnect = True
|
||||
|
||||
uri = device.dpp_start_enrollee()
|
||||
|
||||
wpas.dpp_configurator_create(uri)
|
||||
wpas.dpp_configurator_start('ssidCCMP', 'secret123')
|
||||
|
||||
condition = 'obj.state == DeviceState.connected'
|
||||
wd.wait_for_object_condition(device, condition)
|
||||
|
||||
device.disconnect()
|
||||
device.dpp_stop()
|
||||
|
||||
del wpas
|
||||
|
||||
def test_iwd_as_configurator(self):
|
||||
IWD.copy_to_storage('ssidCCMP.psk')
|
||||
|
||||
wpas = Wpas('wpas.conf')
|
||||
hapd = HostapdCLI('hostapd.conf')
|
||||
|
||||
wd = IWD(True)
|
||||
|
||||
devices = wd.list_devices(1)
|
||||
device = devices[0]
|
||||
device.autoconnect = True
|
||||
|
||||
condition = 'obj.state == DeviceState.connected'
|
||||
wd.wait_for_object_condition(device, condition)
|
||||
|
||||
uri = device.dpp_start_configurator()
|
||||
|
||||
wpas.dpp_enrollee_start(uri)
|
||||
|
||||
hapd.wait_for_event('AP-STA-CONNECTED 42:00:00:00:00:00')
|
||||
|
||||
device.disconnect()
|
||||
device.dpp_stop()
|
||||
|
||||
del wpas
|
||||
|
||||
def tearDown(self):
|
||||
IWD.clear_storage()
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
pass
|
||||
|
||||
@classmethod
|
||||
def tearDownClass(cls):
|
||||
pass
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main(exit=True)
|
7
autotests/testDPP/hostapd.conf
Normal file
7
autotests/testDPP/hostapd.conf
Normal file
@ -0,0 +1,7 @@
|
||||
hw_mode=g
|
||||
channel=1
|
||||
ssid=ssidCCMP
|
||||
|
||||
wpa=2
|
||||
wpa_pairwise=CCMP
|
||||
wpa_passphrase=secret123
|
9
autotests/testDPP/hw.conf
Normal file
9
autotests/testDPP/hw.conf
Normal file
@ -0,0 +1,9 @@
|
||||
[SETUP]
|
||||
num_radios=3
|
||||
start_iwd=0
|
||||
|
||||
[WPA_SUPPLICANT]
|
||||
rad0=wpas.conf
|
||||
|
||||
[HOSTAPD]
|
||||
rad1=hostapd.conf
|
2
autotests/testDPP/ssidCCMP.psk
Normal file
2
autotests/testDPP/ssidCCMP.psk
Normal file
@ -0,0 +1,2 @@
|
||||
[Security]
|
||||
Passphrase=secret123
|
5
autotests/testDPP/wpas.conf
Normal file
5
autotests/testDPP/wpas.conf
Normal file
@ -0,0 +1,5 @@
|
||||
ctrl_interface=/tmp/rad1-p2p-wpas
|
||||
|
||||
update_config=1
|
||||
pmf=2
|
||||
dpp_config_processing=2
|
Loading…
Reference in New Issue
Block a user