mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-02 18:19:23 +01:00
a15b781feb
This changes all tests to use the default get_ordered_network behavior rather than some custom or incorrect logic. Any use of scan_if_needed=True has been removed since this is now the default. Also any explicit scanning has been removed for tests which do not require it (where the default behavior is good enough).
113 lines
3.3 KiB
Python
113 lines
3.3 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 = 'obj.scanning'
|
|
cls.wd.wait_for_object_condition(device, condition)
|
|
|
|
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)
|