3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-04 18:38:48 +02:00
iwd/autotests/testHiddenNetworks/connect_after_hidden_connect_test.py
James Prestwood a15b781feb auto-t: update all tests to remove bad scanning logic
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).
2021-08-12 16:59:03 -05:00

78 lines
1.9 KiB
Python

#!/usr/bin/python3
import unittest
import sys
sys.path.append('../util')
import iwd
from iwd import IWD
from iwd import PSKAgent
import testutil
import time
class TestConnectionAfterHiddenNetwork(unittest.TestCase):
'''
Tries to reproduce a memory leak caused by the consecutive calls to
ConnectHiddenNetwork and Connect one after another.
'''
_ex = None
_done = False
def _success(self):
self._done = True
def _failure(self, ex):
self._done = True
self._ex = ex
def test_connection(self):
wd = IWD(True)
psk_agent = PSKAgent("secret123")
wd.register_psk_agent(psk_agent)
device = wd.list_devices(1)[0]
ordered_network = device.get_ordered_network('ssidOpen')
device.connect_hidden_network_async(name='ssidSomeHidden',
reply_handler = self._success,
error_handler = self._failure)
ordered_network.network_object.connect()
condition = 'obj.state == DeviceState.connected'
wd.wait_for_object_condition(device, condition)
condition = 'obj.connected_network is not None'
wd.wait_for_object_condition(device, condition)
testutil.test_iface_operstate(device.name)
device.disconnect()
condition = 'obj.state == DeviceState.disconnected'
wd.wait_for_object_condition(device, condition)
wd.unregister_psk_agent(psk_agent)
IWD.clear_storage()
while not self._done:
time.sleep(.300)
if self._ex is not None:
if self._ex.get_dbus_name() != 'net.connman.iwd.Failed':
raise self._ex
@classmethod
def setUpClass(cls):
pass
@classmethod
def tearDownClass(cls):
IWD.clear_storage()
if __name__ == '__main__':
unittest.main(exit=True)