mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-05 11:39:24 +01:00
72fac7f1b8
This was copy pasted from the autoconnect test, and depending on how the python module cache is ordered can incorrectly use the wrong test class. This should nothappen because we insert the paths to the head of the list but for consistency the class should be named something that reflects what the test is doing.
33 lines
884 B
Python
33 lines
884 B
Python
#!/usr/bin/python3
|
|
|
|
import unittest
|
|
import sys
|
|
|
|
sys.path.append('../util')
|
|
import iwd
|
|
import validation
|
|
from validation import TestHiddenNetworks
|
|
from iwd import IWD
|
|
|
|
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 tearDownClass(cls):
|
|
IWD.clear_storage()
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main(exit=True)
|