2018-07-11 00:47:03 +02:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
import sys
|
|
|
|
|
|
|
|
sys.path.append('../util')
|
|
|
|
import iwd
|
|
|
|
import validation
|
2019-10-24 19:53:23 +02:00
|
|
|
from validation import TestConnectAutoConnect
|
2018-07-11 00:47:03 +02:00
|
|
|
from iwd import IWD
|
|
|
|
|
|
|
|
class TestOpenNetwork(unittest.TestCase):
|
|
|
|
'''
|
|
|
|
The bellow test cases excesise the following connection scenarios:
|
|
|
|
|
|
|
|
Network config is
|
2019-10-24 19:53:23 +02:00
|
|
|
present at start time: Connect: AutoConnect: Result:
|
2018-07-11 00:47:03 +02:00
|
|
|
--------------------------------------------------------------------------
|
|
|
|
False True Connection succeeds
|
|
|
|
True True Connection succeeds
|
|
|
|
'''
|
|
|
|
def test_open(self):
|
2019-10-24 19:53:23 +02:00
|
|
|
tca = TestConnectAutoConnect()
|
2018-07-11 00:47:03 +02:00
|
|
|
tca.validate('ssidHiddenOpen', False)
|
|
|
|
tca.validate('ssidHiddenOpen', True)
|
|
|
|
|
|
|
|
IWD.clear_storage()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main(exit=True)
|