mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-02 18:19:23 +01:00
2acbe26684
The CI was sometimes taking ~10-15 minutes to run just this test. This is likely due to the test having 7 radios and which is a lot of beacons/probes to process. Disabling the unused hostapd instances drops the runtime down to about 1 minute.
47 lines
1.3 KiB
Python
47 lines
1.3 KiB
Python
#!/usr/bin/python3
|
|
|
|
import unittest
|
|
import sys
|
|
|
|
sys.path.append('../util')
|
|
import iwd
|
|
import validation
|
|
from validation import TestHiddenNetworks
|
|
from iwd import IWD
|
|
from hostapd import HostapdCLI
|
|
|
|
class TestOpenNetwork(unittest.TestCase):
|
|
'''
|
|
The bellow test cases excesise the following connection scenarios:
|
|
|
|
Network config is
|
|
present at start time: Connect: AutoConnect: Result:
|
|
--------------------------------------------------------------------------
|
|
False True Connection succeeds
|
|
True True Connection succeeds
|
|
'''
|
|
def test_open(self):
|
|
tca = TestHiddenNetworks()
|
|
tca.validate('ssidHiddenOpen', False)
|
|
tca.validate('ssidHiddenOpen', True)
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
cls.disabled = [HostapdCLI('ssidHiddenWPA.conf'),
|
|
HostapdCLI('ssidOpen.conf'),
|
|
HostapdCLI('ssidOverlap1.conf'),
|
|
HostapdCLI('ssidOverlap2.conf'),
|
|
HostapdCLI('ssidSomeHidden.conf')]
|
|
for hapd in cls.disabled:
|
|
hapd.disable()
|
|
|
|
@classmethod
|
|
def tearDownClass(cls):
|
|
IWD.clear_storage()
|
|
|
|
for hapd in cls.disabled:
|
|
hapd.reload()
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main(exit=True)
|