3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-02 17:38:45 +02:00
iwd/autotests/testConnectAutoconnect/wpa_network_test.py
2018-08-13 11:09:27 -05:00

32 lines
856 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 TestWpaNetwork(unittest.TestCase):
'''
The bellow test cases exercise the following connection scenarios:
Network config is
present at start time: Connect: Autoconnect: Result:
--------------------------------------------------------------------------
False True Connection succeeds
True True Connection succeeds
'''
def test_wpa(self):
tca = TestConnectAutoconnect()
tca.validate('ssidWPA', False, None, True)
tca.validate('ssidWPA', True, None, True)
IWD.clear_storage()
if __name__ == '__main__':
unittest.main(exit=True)