mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-02 10:09:23 +01:00
d232edde72
Many tests waited on the network object 'connected' property after issuing a Connect command. This is not correct as 'connected' is set quite early in the connection process. The correct way of doing this is waiting for the device state to change to connected. This common code was replaced, hopefully putting to rest any random failures that happen occasionally.
110 lines
3.2 KiB
Python
110 lines
3.2 KiB
Python
#!/usr/bin/python3
|
|
|
|
import unittest
|
|
import sys
|
|
|
|
sys.path.append('../util')
|
|
import iwd
|
|
from iwd import IWD
|
|
import testutil
|
|
import subprocess
|
|
from config import ctx
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
def check_connection_success(self, ssid):
|
|
device = self.wd.list_devices(1)[0]
|
|
|
|
condition = 'not obj.scanning'
|
|
self.wd.wait_for_object_condition(device, condition)
|
|
|
|
ordered_network = device.get_ordered_network(ssid)
|
|
|
|
condition = 'obj.state == DeviceState.connected'
|
|
self.wd.wait_for_object_condition(device, condition)
|
|
|
|
device.disconnect()
|
|
|
|
condition = 'not obj.connected'
|
|
self.wd.wait_for_object_condition(ordered_network.network_object, condition)
|
|
|
|
def test_connection_with_passphrase(self):
|
|
ssid = 'ssidPassphrase'
|
|
|
|
device = self.wd.list_devices(1)[0]
|
|
|
|
# Use --dontaks cmd-line option
|
|
with self.assertRaises(subprocess.CalledProcessError):
|
|
ctx.start_process(['iwctl', 'd', 'station', device.name, 'connect', ssid], check=True)
|
|
|
|
ctx.start_process(['iwctl', '-P', 'passphrase', 'station', device.name, 'connect', ssid],
|
|
check=True)
|
|
|
|
self.check_connection_success(ssid)
|
|
|
|
def test_connection_with_username_and_password(self):
|
|
ssid = 'ssidUNameAndPWord'
|
|
|
|
device = self.wd.list_devices(1)[0]
|
|
|
|
ctx.start_process(['iwctl', '-u', 'user', '-p', 'password', 'station', \
|
|
device.name, 'connect', ssid], check=True)
|
|
self.check_connection_success(ssid)
|
|
|
|
def test_connection_with_password(self):
|
|
ssid = 'ssidPWord'
|
|
|
|
device = self.wd.list_devices(1)[0]
|
|
|
|
ctx.start_process(['iwctl', '-p', 'password', 'station', device.name, 'connect', ssid],
|
|
check=True)
|
|
|
|
self.check_connection_success(ssid)
|
|
|
|
def test_connection_failure(self):
|
|
ssid = 'ssidPassphrase'
|
|
|
|
device = self.wd.list_devices(1)[0]
|
|
|
|
with self.assertRaises(subprocess.CalledProcessError):
|
|
ctx.start_process(['iwctl', '-P', 'incorrect_passphrase', 'station', device.name, \
|
|
'connect', ssid], check=True)
|
|
|
|
def test_invalid_command_line_option(self):
|
|
ssid = 'ssidPassphrase'
|
|
|
|
device = self.wd.list_devices(1)[0]
|
|
|
|
with self.assertRaises(subprocess.CalledProcessError):
|
|
ctx.start_process(['iwctl', '-z', 'station', device.name, 'connect', ssid], check=True)
|
|
|
|
def test_invalid_command(self):
|
|
device = self.wd.list_devices(1)[0]
|
|
|
|
with self.assertRaises(subprocess.CalledProcessError):
|
|
ctx.start_process(['iwctl', 'inexistent', 'command'], check=True)
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
IWD.copy_to_storage('ssidUNameAndPWord.8021x')
|
|
IWD.copy_to_storage('ssidPWord.8021x')
|
|
|
|
cls.wd = IWD()
|
|
|
|
device = cls.wd.list_devices(1)[0]
|
|
|
|
condition = 'not obj.scanning'
|
|
cls.wd.wait_for_object_condition(device, condition)
|
|
|
|
device.scan()
|
|
|
|
condition = 'not obj.scanning'
|
|
cls.wd.wait_for_object_condition(device, condition)
|
|
|
|
@classmethod
|
|
def tearDownClass(cls):
|
|
IWD.clear_storage()
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main(exit=True)
|