mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-02 10:09:23 +01:00
31 lines
835 B
Python
31 lines
835 B
Python
|
#!/usr/bin/python3
|
||
|
|
||
|
import unittest
|
||
|
import sys
|
||
|
|
||
|
sys.path.append('../util')
|
||
|
import iwd
|
||
|
import validation
|
||
|
from validation import TestConnectAutoconnect
|
||
|
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 = TestConnectAutoconnect()
|
||
|
tca.validate('ssidOpen', False)
|
||
|
tca.validate('ssidOpen', True)
|
||
|
|
||
|
IWD.clear_storage()
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main(exit=True)
|